mirror of https://github.com/Lissy93/dashy.git
🌐 Adds Bengali (thanks @Soaibuzzaman 🙌 #1107)
This commit is contained in:
parent
70a6cc6b64
commit
7200d87d6a
|
@ -405,6 +405,7 @@ Dashy supports multiple languages and locales. When available, your language sho
|
|||
#### Supported Languages
|
||||
- 🇬🇧 **English**: `en` - _Default_
|
||||
- 🇦🇪 **Arabic**: `ar` - _Auto-generated_
|
||||
- 🇧🇩 **Bengali**: `bn` - Contributed by **[@soaibsafi](https://github.com/soaibsafi)**
|
||||
- 🇧🇬 **Bulgarian**: `bg` - Contributed by **[@asenov](https://github.com/asenov)**
|
||||
- 🇨🇳 **Chinese**: `cn` - Contributed by **[@FormatToday](https://github.com/FormatToday)**
|
||||
- 🇨🇿 **Czech**: `cs` - Contributed by **[@Tuzi555](https://github.com/Tuzi555)**
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
import en from '@/assets/locales/en.json';
|
||||
import ar from '@/assets/locales/ar.json';
|
||||
import bg from '@/assets/locales/bg.json';
|
||||
import bn from '@/assets/locales/bn.json';
|
||||
import cs from '@/assets/locales/cs.json';
|
||||
import da from '@/assets/locales/da.json';
|
||||
import de from '@/assets/locales/de.json';
|
||||
|
@ -44,6 +45,12 @@ export const languages = [
|
|||
locale: bg,
|
||||
flag: '🇧🇬',
|
||||
},
|
||||
{ // Bengali
|
||||
name: 'বাংলা',
|
||||
code: 'bn',
|
||||
locale: bn,
|
||||
flag: '🇧🇩',
|
||||
},
|
||||
{ // Czech
|
||||
name: 'Čeština',
|
||||
code: 'cs',
|
||||
|
|
Loading…
Reference in New Issue