translation - settings, menu

This commit is contained in:
Stela Augustinova
2025-11-14 17:03:54 +01:00
committed by SPRINX0\prochazka
parent 7bb9414be8
commit edf9f3a2be
11 changed files with 77 additions and 23 deletions

View File

@@ -719,7 +719,11 @@
const filteredSumenus = coreMenus.map(item => {
if (!item.submenu) {
return { ...item , label: _val(item.label)};
if (!item) return item;
return {...item,
label: _val(item.label)
};
}
return {
...item,