feat: Add new virtual categories 'bald' and 'neu', update category handling in renderApp, and enhance translations across multiple locales

This commit is contained in:
sebseb7
2026-03-25 07:04:50 +01:00
parent e5a3b7bcce
commit 0ce8ce3626
27 changed files with 144 additions and 8 deletions

View File

@@ -42,7 +42,10 @@ const fetchCategoryProducts = (socket, categoryId) => {
"getCategoryProducts",
{
full: true,
categoryId: categoryId === "neu" ? "neu" : parseInt(categoryId),
categoryId:
categoryId === "neu" || categoryId === "bald"
? categoryId
: parseInt(categoryId),
language: 'de',
requestTranslation: false
},