feat: update russian translate and new translate message (#1958)

* feat: add russian translate and new translate message

* fix

---------

Co-authored-by: Александр Тумайкин <AATumaykin@tsum.ru>
This commit is contained in:
Alexandr Tumaykin
2023-07-15 05:01:40 +03:00
committed by GitHub
parent 2a7104e564
commit 6b17a27a13
26 changed files with 269 additions and 75 deletions

View File

@ -178,7 +178,7 @@ const PreferencesSection = () => {
className="w-full text-left text-sm leading-6 py-1 px-3 cursor-pointer rounded hover:bg-gray-100 dark:hover:bg-zinc-600"
onClick={() => handleArchiveUserClick(user)}
>
{t("common.archive")}
{t("setting.member-section.archive-member")}
</button>
) : (
<>
@ -192,7 +192,7 @@ const PreferencesSection = () => {
className="w-full text-left text-sm leading-6 py-1 px-3 cursor-pointer rounded text-red-600 hover:bg-gray-100 dark:hover:bg-zinc-600"
onClick={() => handleDeleteUserClick(user)}
>
{t("common.delete")}
{t("setting.member-section.delete-member")}
</button>
</>
)}