This commit is contained in:
2024-04-13 13:03:25 +03:00
parent 17f94bf7bb
commit c8c5c45fe2
2 changed files with 16 additions and 1 deletions

View File

@ -14,7 +14,7 @@ const tr = (phrase: string): string => {
trMap[phrase as keyof object] &&
trMap[phrase as keyof object][
currentLanguage as keyof object
]) as string) || phrase
]) as string) || phrase + ` (${currentLanguage}?)`
);
};

View File

@ -73,5 +73,20 @@
},
"Log in first": {
"ru": "Сначала войдите в аккаунт"
},
"New queue": {
"ru": "Новая очередь"
},
"Create": {
"ru": "Создать"
},
"Name": {
"ru": "Название"
},
"Description": {
"ru": "Описание"
},
"(optional)": {
"ru": "(опционально)"
}
}