diff --git a/src/app/i18n/en.ts b/src/app/i18n/en.ts index f35262d..a0f9481 100644 --- a/src/app/i18n/en.ts +++ b/src/app/i18n/en.ts @@ -1318,6 +1318,7 @@ export const en: Translations = { column_total: 'Total', column_created: 'Placed', status: { + all: 'All statuses', pending: 'Pending', processing: 'Packing', shipped: 'Shipping', @@ -1706,6 +1707,8 @@ export const en: Translations = { revoke: 'Revoke', passwordlessHint: 'Team members sign in with Telegram - no passwords to manage.', confirmSuspend: 'Suspend this team member? They will lose access immediately.', + suspend: 'Suspend', + reactivate: 'Reactivate', scopeValue: { marketplace: 'Storefront', office: 'Back office', diff --git a/src/app/i18n/hy.ts b/src/app/i18n/hy.ts index 710118b..3d4cc58 100644 --- a/src/app/i18n/hy.ts +++ b/src/app/i18n/hy.ts @@ -1313,6 +1313,7 @@ export const hy: Translations = { column_total: 'Գումար', column_created: 'Ստեղծված է', status: { + all: 'Բոլոր կարգավիճակները', pending: 'Սպասման մեջ', processing: 'Փաթեթավորում', shipped: 'Առաքվում է', @@ -1701,6 +1702,8 @@ export const hy: Translations = { revoke: 'Չեղարկել', passwordlessHint: 'Անդամները մուտք են գործում Telegram-ով — գաղտնաբառեր պետք չեն։', confirmSuspend: 'Արգելափակե՞լ այս անդամին։ Մուտքը կփակվի անմիջապես։', + suspend: 'Արգելափակել', + reactivate: 'Վերականգնել', scopeValue: { marketplace: 'Խանութ', office: 'Բեք-օֆիս', diff --git a/src/app/i18n/ru.ts b/src/app/i18n/ru.ts index 898e1e2..cfe1c7b 100644 --- a/src/app/i18n/ru.ts +++ b/src/app/i18n/ru.ts @@ -1313,6 +1313,7 @@ export const ru: Translations = { column_total: 'Сумма', column_created: 'Оформлен', status: { + all: 'Все статусы', pending: 'Ожидает', processing: 'Сборка', shipped: 'Доставляется', @@ -1701,6 +1702,8 @@ export const ru: Translations = { revoke: 'Отозвать', passwordlessHint: 'Участники входят через Telegram — пароли не нужны.', confirmSuspend: 'Заблокировать этого участника? Доступ будет закрыт немедленно.', + suspend: 'Заблокировать', + reactivate: 'Восстановить', scopeValue: { marketplace: 'Витрина', office: 'Бэк-офис', diff --git a/src/app/i18n/translations.ts b/src/app/i18n/translations.ts index b646c8e..c17a8db 100644 --- a/src/app/i18n/translations.ts +++ b/src/app/i18n/translations.ts @@ -1317,6 +1317,7 @@ export interface Translations { column_total: string; column_created: string; status: { + all: string; pending: string; processing: string; shipped: string; @@ -1714,6 +1715,8 @@ export interface Translations { revoke: string; passwordlessHint: string; confirmSuspend: string; + suspend: string; + reactivate: string; scopeValue: { marketplace: string; office: string;