polishing a rock of shit

This commit is contained in:
2024-04-12 22:17:13 +03:00
parent f887d5ef07
commit 8df8f5a2e9
6 changed files with 66 additions and 6 deletions

View File

@ -19,11 +19,11 @@ const initialAuthDataState: AuthDataType = {
};
export type SettingsType = {
language: string | null;
language: string | undefined;
};
const initialSettingsState: SettingsType = {
language: null,
language: undefined,
};
export type StorePrototype = {

View File

@ -49,5 +49,20 @@
},
"Login failed!": {
"ru": "Вход не удался!"
},
"Language": {
"ru": "Язык"
},
"Create queue": {
"ru": "Создать очередь"
},
"My queues": {
"ru": "Мои очереди"
},
"Settings": {
"ru": "Настройки"
},
"Dashboard": {
"ru": "Панель управления"
}
}