Skip to content

Commit 7200d87

Browse files
committed
🌐 Adds Bengali (thanks @Soaibuzzaman 🙌 #1107)
1 parent 70a6cc6 commit 7200d87

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,7 @@ Dashy supports multiple languages and locales. When available, your language sho
405405
#### Supported Languages
406406
- 🇬🇧 **English**: `en` - _Default_
407407
- 🇦🇪 **Arabic**: `ar` - _Auto-generated_
408+
- 🇧🇩 **Bengali**: `bn` - Contributed by **[@soaibsafi](https://github.com/soaibsafi)**
408409
- 🇧🇬 **Bulgarian**: `bg` - Contributed by **[@asenov](https://github.com/asenov)**
409410
- 🇨🇳 **Chinese**: `cn` - Contributed by **[@FormatToday](https://github.com/FormatToday)**
410411
- 🇨🇿 **Czech**: `cs` - Contributed by **[@Tuzi555](https://github.com/Tuzi555)**

src/utils/languages.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import en from '@/assets/locales/en.json';
33
import ar from '@/assets/locales/ar.json';
44
import bg from '@/assets/locales/bg.json';
5+
import bn from '@/assets/locales/bn.json';
56
import cs from '@/assets/locales/cs.json';
67
import da from '@/assets/locales/da.json';
78
import de from '@/assets/locales/de.json';
@@ -44,6 +45,12 @@ export const languages = [
4445
locale: bg,
4546
flag: '🇧🇬',
4647
},
48+
{ // Bengali
49+
name: 'বাংলা',
50+
code: 'bn',
51+
locale: bn,
52+
flag: '🇧🇩',
53+
},
4754
{ // Czech
4855
name: 'Čeština',
4956
code: 'cs',

0 commit comments

Comments
 (0)