Support nested marketplace categories

This commit is contained in:
sdarbinyan
2026-07-05 01:09:55 +04:00
parent b676cec4e9
commit 3974eefbfe
7 changed files with 109 additions and 5 deletions

View File

@@ -150,6 +150,9 @@ export const en: Translations = {
emptyDesc: 'There are no subcategories in this section yet, but they will appear soon',
goHome: 'Go home',
itemsInCategory: 'Items in this category',
childrenCount: '{{count}} categories',
productsCount: '{{count}} products',
includesProducts: 'Includes products',
},
itemDetail: {
loading: 'Loading...',

View File

@@ -150,6 +150,9 @@ export const hy: Translations = {
emptyDesc: 'Այս բաժնում դեռ ենթակատեգորիաներ չկան',
goHome: 'Գլխավոր',
itemsInCategory: 'Ապրանքներ այս կատեգորիայում',
childrenCount: '{{count}} կատեգորիա',
productsCount: '{{count}} ապրանք',
includesProducts: 'Կան ապրանքներ',
},
itemDetail: {
loading: 'Բեռնում...',

View File

@@ -150,6 +150,9 @@ export const ru: Translations = {
emptyDesc: 'В этом разделе ещё нет подкатегорий, но скоро они появятся',
goHome: 'На главную',
itemsInCategory: 'Товары в этой категории',
childrenCount: '{{count}} категорий',
productsCount: '{{count}} товаров',
includesProducts: 'Есть товары',
},
itemDetail: {
loading: 'Загрузка...',

View File

@@ -148,6 +148,9 @@ export interface Translations {
emptyDesc: string;
goHome: string;
itemsInCategory: string;
childrenCount: string;
productsCount: string;
includesProducts: string;
};
itemDetail: {
loading: string;