Skip to content

Commit

Permalink
Merge pull request #909 from r4f4dev/feat/locale-uzbek
Browse files Browse the repository at this point in the history
feat(language): add uzbek language support
  • Loading branch information
Fabio286 authored Dec 28, 2024
2 parents 8de99da + fb9c258 commit 2322118
Show file tree
Hide file tree
Showing 3 changed files with 580 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/renderer/i18n/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { nlNL } from './nl-NL';
import { ptBR } from './pt-BR';
import { ruRU } from './ru-RU';
import { ukUA } from './uk-UA';
import { uzUZ } from './uz-UZ';
import { viVN } from './vi-VN';
import { zhCN } from './zh-CN';
import { zhTW } from './zh-TW';
Expand All @@ -39,7 +40,8 @@ const messages = {
'cs-CZ': csCZ,
'uk-UA': ukUA,
'zh-TW': zhTW,
'he-IL': heIL
'he-IL': heIL,
'uz-UZ': uzUZ
};

type NestedPartial<T> = {
Expand Down
1 change: 1 addition & 0 deletions src/renderer/i18n/supported-locales.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@ export const localesNames: Record<string, string> = {
'ca-ES': 'Català',
'cs-CZ': 'Čeština',
'uk-UA': 'Українська',
'uz-UZ': 'O`zbek',
'he-IL': 'עברית'
};
Loading

0 comments on commit 2322118

Please sign in to comment.