Skip to content

Commit

Permalink
Merge pull request 'fix/bug-69000' (#2) from fix/bug-69000 into relea…
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Radzhabova committed Sep 3, 2024
2 parents 3e87aca + ef85b09 commit 3f5cf04
Show file tree
Hide file tree
Showing 44 changed files with 82 additions and 3 deletions.
24 changes: 21 additions & 3 deletions apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ define([
this.api.asc_registerCallback('asc_onLockDefNameManager', _.bind(this.onLockDefNameManager, this));
this.api.asc_registerCallback('asc_onEntriesListMenu', _.bind(this.onEntriesListMenu, this, false)); // Alt + Down
this.api.asc_registerCallback('asc_onValidationListMenu', _.bind(this.onEntriesListMenu, this, true));
this.api.asc_registerCallback('asc_onFormulaCompleteMenu', _.bind(this.onFormulaCompleteMenu, this));
this.api.asc_registerCallback('asc_onFormulaCompleteMenu', _.bind(this.onApiFormulaCompleteMenu, this));
this.api.asc_registerCallback('asc_onShowSpecialPasteOptions', _.bind(this.onShowSpecialPasteOptions, this));
this.api.asc_registerCallback('asc_onHideSpecialPasteOptions', _.bind(this.onHideSpecialPasteOptions, this));
this.api.asc_registerCallback('asc_onToggleAutoCorrectOptions', _.bind(this.onToggleAutoCorrectOptions, this));
Expand Down Expand Up @@ -3337,6 +3337,13 @@ define([
Common.NotificationCenter.trigger('edit:complete', this.documentHolder);
},

onApiFormulaCompleteMenu: function(funcarr, offset) {
const me = this;
setTimeout(function() {
me.onFormulaCompleteMenu(funcarr, offset);
}, 0);
},

onFormulaCompleteMenu: function(funcarr, offset) {
if (!this.documentHolder.funcMenu || Common.Utils.ModalWindow.isVisible() || this.rangeSelectionMode) return;

Expand Down Expand Up @@ -3480,15 +3487,24 @@ define([
}

var infocus = me.cellEditor.is(":focus");
var isFunctipShow = this.tooltips.func_arg.isHidden === false;

if (infocus) {
menu.menuAlignEl = me.cellEditor;
menu.offset = [
0,
(offset ? offset[1] : 0) + (isFunctipShow ? this.tooltips.func_arg.ref.getBSTip().$tip.height() + 2 : 0)
];
me.focusInCellEditor = true;
} else {
menu.menuAlignEl = undefined;
menu.offset = [0 ,0];
me.focusInCellEditor = false;
var coord = me.api.asc_getActiveCellCoord(),
showPoint = [coord.asc_getX() + (offset ? offset[0] : 0), (coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + (offset ? offset[1] : 0)];
showPoint = [
coord.asc_getX() + (offset ? offset[0] : 0),
(coord.asc_getY() < 0 ? 0 : coord.asc_getY()) + coord.asc_getHeight() + (offset ? offset[1] : 0) + (isFunctipShow ? this.tooltips.func_arg.ref.getBSTip().$tip.height() + 2 : 0)
];
menuContainer.css({left: showPoint[0], top : showPoint[1]});
}
menu.alignPosition();
Expand Down Expand Up @@ -3522,6 +3538,8 @@ define([
},

onFormulaInfo: function(name) {
if(!Common.Utils.InternalSettings.get("sse-settings-function-tooltip")) return;

var functip = this.tooltips.func_arg;

if (name) {
Expand Down Expand Up @@ -3575,7 +3593,7 @@ define([
Common.Utils.getOffset(this.documentHolder.cmpEl).top - $(window).scrollTop()
],
coord = this.api.asc_getActiveCellCoord();
showPoint = [coord.asc_getX() + pos[0] - 3, coord.asc_getY() + pos[1] - functip.ref.getBSTip().$tip.height() - 5];
showPoint = [coord.asc_getX() + pos[0] - 3, coord.asc_getY() + pos[1] + coord.asc_getHeight() + 4];
}
var tipwidth = functip.ref.getBSTip().$tip.width();
if (showPoint[0] + tipwidth > this.tooltips.coauth.bodyWidth )
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 @@ -1075,6 +1075,10 @@ define([
Common.Utils.InternalSettings.set("sse-settings-paste-button", parseInt(value));
me.api.asc_setVisiblePasteButton(!!parseInt(value));

value = Common.localStorage.getItem("sse-settings-function-tooltip");
if (value===null) value = '1';
Common.Utils.InternalSettings.set("sse-settings-function-tooltip", parseInt(value));

me.loadAutoCorrectSettings();

if (me.needToUpdateVersion) {
Expand Down
16 changes: 16 additions & 0 deletions apps/spreadsheeteditor/main/app/view/FileMenuPanels.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,9 @@ define([], function () {
'<tr class="edit">',
'<td colspan = "2"><div id="fms-chb-paste-settings"></div></td>',
'</tr>',
'<tr class="edit">',
'<td colspan = "2"><div id="fms-chb-function-tooltip"></div></td>',
'</tr>',
'<tr class ="editsave divider-group"></tr>',
'<tr class="collaboration" >',
'<td class="group-name" colspan="2"><label><%= scope.txtCollaboration %></label></td>',
Expand Down Expand Up @@ -749,6 +752,14 @@ define([], function () {
dataHintOffset: 'small'
});

this.chTooltip = new Common.UI.CheckBox({
el: $markup.findById('#fms-chb-function-tooltip'),
labelText: this.strFunctionTooltip,
dataHint: '2',
dataHintDirection: 'left',
dataHintOffset: 'small'
});

this.btnCustomizeQuickAccess = new Common.UI.Button({
el: $markup.findById('#fms-btn-customize-quick-access')
});
Expand Down Expand Up @@ -1067,6 +1078,7 @@ define([], function () {
this.cmbMacros.setValue(item ? item.get('value') : 0);

this.chPaste.setValue(Common.Utils.InternalSettings.get("sse-settings-paste-button"));
this.chTooltip.setValue(Common.Utils.InternalSettings.get("sse-settings-function-tooltip"));
this.chRTL.setValue(Common.localStorage.getBool("ui-rtl", Common.Locale.isCurrentLanguageRtl()));
//this.chQuickPrint.setValue(Common.Utils.InternalSettings.get("sse-settings-quick-print-button"));

Expand Down Expand Up @@ -1197,6 +1209,10 @@ define([], function () {
Common.Utils.InternalSettings.set("sse-macros-mode", this.cmbMacros.getValue());

Common.localStorage.setItem("sse-settings-paste-button", this.chPaste.isChecked() ? 1 : 0);

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);

var isRtlChanged = this.chRTL.$el.is(':visible') && Common.localStorage.getBool("ui-rtl", Common.Locale.isCurrentLanguageRtl()) !== this.chRTL.isChecked();
Common.localStorage.setBool("ui-rtl", this.chRTL.isChecked());
//Common.localStorage.setBool("sse-settings-quick-print-button", this.chQuickPrint.isChecked());
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "فك حماية الورقة",
"SSE.Views.WBProtection.txtWBUnlockDescription": "أدخل كلمة سر لفك تشفير المصنف",
"SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/az.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/be.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняць абарону аркуша",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Каб зняць абарону кнігі, увядзіце пароль",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Άρση προστασίας φύλλου",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Εισάγετε συνθηματικό για άρση προστασίας βιβλίου εργασίας",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2657,6 +2657,7 @@
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxChange": "Maximum change",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strMaxIterations": "Maximum iterations",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Show the paste options button when the content is pasted",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "R1C1 reference style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional settings",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/eu.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/fi.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/gl.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/hy.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "Չպաշտպանել թերթիկը",
"SSE.Views.WBProtection.txtWBUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ աշխատանքային գրքույկը պաշտպանելու համար",
"SSE.Views.WBProtection.txtWBUnlockTitle": "Չպաշտպանել աշխատանքային գրքույկը",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/id.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"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.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "シートを保護を解除する",
"SSE.Views.WBProtection.txtWBUnlockDescription": "ブックを保護解除するようにパスワードを入力してください",
"SSE.Views.WBProtection.txtWBUnlockTitle": "ブックを保護を解除する",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "시트 보호해제",
"SSE.Views.WBProtection.txtWBUnlockDescription": "통합 문서 보호를 해제하려면 비밀번호를 입력하세요.",
"SSE.Views.WBProtection.txtWBUnlockTitle": "통합 문서 보호 잠금 해제",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
1 change: 1 addition & 0 deletions apps/spreadsheeteditor/main/locale/lo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4459,6 +4459,7 @@
"SSE.Views.WBProtection.txtSheetUnlockTitle": "ບໍ່ປ້ອງກັນແຜ່ນຊີດ",
"SSE.Views.WBProtection.txtWBUnlockDescription": "ປ້ອນລະຫັດຜ່ານເພື່ອບໍ່ປົກປ້ອງປື້ມບັນທືກ",
"SSE.Views.WBProtection.txtWBUnlockTitle": "ບໍ່ປ້ອງ ປື້ມບັນທືກ",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strFunctionTooltip": "Show function tooltip",
"SSE.Views.ViewTab.textFill": "Fill",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.strTabStyle": "Tab style",
"SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill",
Expand Down
Loading

0 comments on commit 3f5cf04

Please sign in to comment.