diff --git a/src/app/features/admin/categories/components/admin-categories-list.component.html b/src/app/features/admin/categories/components/admin-categories-list.component.html index b7f8e89..8056983 100644 --- a/src/app/features/admin/categories/components/admin-categories-list.component.html +++ b/src/app/features/admin/categories/components/admin-categories-list.component.html @@ -129,7 +129,7 @@ - + {{ 'adminCategories.title' | translate }} @if (visibleColumns.includes('slug')) { {{ 'adminCategories.slug' | translate }} } @if (visibleColumns.includes('items')) { {{ 'adminCategories.items' | translate }} } @@ -142,7 +142,7 @@ @for (category of flatCategories; track category.id) { - + {{ category.icon }} {{ category.title }} @if (visibleColumns.includes('slug')) { {{ category.slug }} } @if (visibleColumns.includes('items')) { {{ category.itemsCount }} } @@ -150,7 +150,7 @@ {{ ('adminCategories.status.' + category.status) | translate }} } @if (visibleColumns.includes('visibility')) { - + } diff --git a/src/app/i18n/en.ts b/src/app/i18n/en.ts index ea00c17..6c717ae 100644 --- a/src/app/i18n/en.ts +++ b/src/app/i18n/en.ts @@ -1448,6 +1448,9 @@ export const en: Translations = { replaceImage: 'Replace image', search: 'Search categories…', showDeleted: 'Show deleted', + selectAllRows: 'Select all categories', + selectRow: 'Select category', + toggleVisibility: 'Toggle visibility', create: 'Create category', edit: 'Edit category', title: 'Title', diff --git a/src/app/i18n/hy.ts b/src/app/i18n/hy.ts index 28ddec5..eaace23 100644 --- a/src/app/i18n/hy.ts +++ b/src/app/i18n/hy.ts @@ -1443,6 +1443,9 @@ export const hy: Translations = { replaceImage: 'Փոխարինել պատկերը', search: 'Փնտրել կատեգորիաներ…', showDeleted: 'Ցույց տալ ջնջվածները', + selectAllRows: 'Ընտրել բոլոր կատեգորիաները', + selectRow: 'Ընտրել կատեգորիան', + toggleVisibility: 'Փոխել տեսանելիությունը', create: 'Ստեղծել կատեգորիա', edit: 'Խմբագրել կատեգորիան', title: 'Անուն', diff --git a/src/app/i18n/ru.ts b/src/app/i18n/ru.ts index cde1b2f..e4d4f8a 100644 --- a/src/app/i18n/ru.ts +++ b/src/app/i18n/ru.ts @@ -1443,6 +1443,9 @@ export const ru: Translations = { replaceImage: 'Заменить изображение', search: 'Поиск категорий…', showDeleted: 'Показать удалённые', + selectAllRows: 'Выбрать все категории', + selectRow: 'Выбрать категорию', + toggleVisibility: 'Переключить видимость', create: 'Создать категорию', edit: 'Редактировать категорию', title: 'Название', diff --git a/src/app/i18n/translations.ts b/src/app/i18n/translations.ts index f36db51..bcbf915 100644 --- a/src/app/i18n/translations.ts +++ b/src/app/i18n/translations.ts @@ -1456,6 +1456,9 @@ export interface Translations { replaceImage: string; search: string; showDeleted: string; + selectAllRows: string; + selectRow: string; + toggleVisibility: string; create: string; edit: string; title: string;