diff --git a/packages/client/src/pages/Home/Section/AccountsBody/EmptyScreenGroups.js b/packages/client/src/pages/Home/Section/AccountsBody/EmptyScreenGroups.js index f7e48c2804..c275941956 100644 --- a/packages/client/src/pages/Home/Section/AccountsBody/EmptyScreenGroups.js +++ b/packages/client/src/pages/Home/Section/AccountsBody/EmptyScreenGroups.js @@ -41,14 +41,14 @@ const EmptyScreenGroups = ({ imageSrc={imageSrc} imageAlt="Empty Screen Filter image" headerText={ - !groupsIsFiltered ? t("No groups here yet") : t("Nothing found") + !groupsIsFiltered + ? t("Common:EmptyGroupsHeader") + : t("Common:NotFoundGroups") } descriptionText={ !groupsIsFiltered - ? t("Please create the first group.") - : t( - "No groups match this filter. Try a different one or clear filter to view all files. ", - ) + ? t("Common:EmptyGroupsDescription") + : t("Common:NotFoundGroupsDescription") } buttons={ @@ -92,7 +92,7 @@ const EmptyScreenGroups = ({ fontWeight="600" onClick={onResetFilter} > - {t("Reset filter")} + {t("Common:ClearFilter")} diff --git a/public/locales/en/Common.json b/public/locales/en/Common.json index 8ad4cdb49c..07710a6791 100644 --- a/public/locales/en/Common.json +++ b/public/locales/en/Common.json @@ -133,6 +133,8 @@ "EmptyEmail": "No email address parsed", "EmptyFieldError": "Empty field", "EmptyFilterDescriptionText": "No files or folders match this filter. Try a different one or clear filter to view all files. ", + "EmptyGroupsHeader": "No groups here yet", + "EmptyGroupsDescription": "Please create the first group.", "EmptyHeader": "No other accounts here yet", "EmptyRoomsDescription": "Please create the first room in My rooms.", "EmptyRoomsHeader": "No rooms here yet", @@ -255,6 +257,8 @@ "NewSpreadsheet": "New spreadsheet", "NewVersionAvailable": "A new version of the website available", "Next": "Next", + "NotFoundGroups": "No groups found", + "NotFoundGroupsDescription": "No groups match your search. Please adjust your search parameters or clear the search field to view the full list of groups.", "NotFoundLanguage": "Can't find your language? Contact us at <1>{{supportEmail}} to take part in the translation program and get rewards.", "NotFoundTitle": "Nothing found", "NotFoundUsers": "No users found", diff --git a/public/locales/ru/Common.json b/public/locales/ru/Common.json index 989ee76345..8b8f324c88 100644 --- a/public/locales/ru/Common.json +++ b/public/locales/ru/Common.json @@ -120,6 +120,8 @@ "EmptyEmail": "Поле email пустое", "EmptyFieldError": "Пустое поле", "EmptyFilterDescriptionText": "В этом разделе нет файлов или папок, соответствующих фильтру. Пожалуйста, выберите другие параметры или очистите фильтр, чтобы показать все файлы в этом разделе.", + "EmptyGroupsHeader": "Здесь пока нет групп", + "EmptyGroupsDescription": "Пожалуйста, создайте первую группу", "EmptyHeader": "Других аккаунтов здесь пока нет", "EmptyRoomsDescription": "Пожалуйста, создайте первую комнату в Моих комнатах.", "EmptyRoomsHeader": "Здесь пока нет комнат", @@ -226,6 +228,8 @@ "NewSpreadsheet": "Новая таблица", "NewVersionAvailable": "Доступна новая версия веб-сайта", "Next": "Следующая", + "NotFoundGroups": "Группы не найдены", + "NotFoundGroupsDescription": "Ни одна группа не соответствует параметрам вашего поиска. Пожалуйста, измените параметры поиска или очистите поле поиска, чтобы просмотреть полный список групп.", "NotFoundLanguage": "Если Вы не можете найти свой язык в списке доступных, Вы всегда можете написать нам по адресу <1>{{supportEmail}}, чтобы принять участие в переводе и получить до 1 года бесплатного использования.", "NotFoundTitle": "Ничего не найдено", "NotFoundUsers": "Пользователи не найдены",