Skip to content

Commit 22adf4d

Browse files
committed
feat(i18n): add Bengali, Indonesian and Dutch
1 parent f236f35 commit 22adf4d

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/livecodes/i18n/app-languages.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ import type { AppLanguage } from '../models';
22

33
export const appLanguages: { [key in Exclude<AppLanguage, 'auto'>]: string } = {
44
ar: 'العربية',
5+
bn: 'বাংলা',
56
de: 'Deutsch',
67
en: 'English',
78
es: 'Español',
89
fa: 'فارسی',
910
fr: 'Français',
1011
hi: 'हिंदी',
12+
id: 'Bahasa Indonesia',
1113
it: 'Italiano',
1214
ja: '日本語',
15+
nl: 'Nederlands',
1316
pt: 'Português',
1417
ru: 'Ру́сский',
1518
tr: 'Türkçe',

src/sdk/models.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,14 +1786,17 @@ export interface BlocklyContent {
17861786
export type AppLanguage =
17871787
| 'auto'
17881788
| 'ar'
1789+
| 'bn'
17891790
| 'de'
17901791
| 'en'
17911792
| 'es'
17921793
| 'fa'
17931794
| 'fr'
17941795
| 'hi'
1796+
| 'id'
17951797
| 'it'
17961798
| 'ja'
1799+
| 'nl'
17971800
| 'pt'
17981801
| 'tr'
17991802
| 'ru'

0 commit comments

Comments
 (0)