Skip to content

Commit e79c768

Browse files
committed
fix: add lithuanian to language selector
1 parent 27212b1 commit e79c768

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

src/backend/main.ts

+1
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@ if (!gotTheLock) {
380380
'ko',
381381
'id',
382382
'it',
383+
'lt',
383384
'ml',
384385
'nb_NO',
385386
'nl',

src/frontend/components/UI/LanguageSelector/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const languageLabels: { [key: string]: string } = {
4242
ko: '한국어',
4343
id: 'Bahasa Indonesia',
4444
it: 'Italiano',
45+
lt: 'Lietuvių',
4546
ml: 'മലയാളം',
4647
nb_NO: 'bokmål',
4748
nl: 'Nederlands',
@@ -86,6 +87,7 @@ const languageFlags: { [key: string]: string } = {
8687
ko: '🇰🇷',
8788
id: '🇮🇩',
8889
it: '🇮🇹',
90+
lt: '🇱🇹',
8991
ml: '🇮🇳',
9092
nb_NO: '🇳🇴',
9193
nl: '🇳🇱',

src/frontend/index.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ i18next
8989
'hu',
9090
'ja',
9191
'ko',
92+
'lt',
9293
'id',
9394
'it',
9495
'ml',

0 commit comments

Comments
 (0)