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
|
#### Supported Languages
|
||||||
- 🇬🇧 **English**: `en` - _Default_
|
- 🇬🇧 **English**: `en` - _Default_
|
||||||
- 🇦🇪 **Arabic**: `ar` - _Auto-generated_
|
- 🇦🇪 **Arabic**: `ar` - _Auto-generated_
|
||||||
|
- 🇧🇩 **Bengali**: `bn` - Contributed by **[@soaibsafi](https://github.com/soaibsafi)**
|
||||||
- 🇧🇬 **Bulgarian**: `bg` - Contributed by **[@asenov](https://github.com/asenov)**
|
- 🇧🇬 **Bulgarian**: `bg` - Contributed by **[@asenov](https://github.com/asenov)**
|
||||||
- 🇨🇳 **Chinese**: `cn` - Contributed by **[@FormatToday](https://github.com/FormatToday)**
|
- 🇨🇳 **Chinese**: `cn` - Contributed by **[@FormatToday](https://github.com/FormatToday)**
|
||||||
- 🇨🇿 **Czech**: `cs` - Contributed by **[@Tuzi555](https://github.com/Tuzi555)**
|
- 🇨🇿 **Czech**: `cs` - Contributed by **[@Tuzi555](https://github.com/Tuzi555)**
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
import en from '@/assets/locales/en.json';
|
import en from '@/assets/locales/en.json';
|
||||||
import ar from '@/assets/locales/ar.json';
|
import ar from '@/assets/locales/ar.json';
|
||||||
import bg from '@/assets/locales/bg.json';
|
import bg from '@/assets/locales/bg.json';
|
||||||
|
import bn from '@/assets/locales/bn.json';
|
||||||
import cs from '@/assets/locales/cs.json';
|
import cs from '@/assets/locales/cs.json';
|
||||||
import da from '@/assets/locales/da.json';
|
import da from '@/assets/locales/da.json';
|
||||||
import de from '@/assets/locales/de.json';
|
import de from '@/assets/locales/de.json';
|
||||||
|
@ -44,6 +45,12 @@ export const languages = [
|
||||||
locale: bg,
|
locale: bg,
|
||||||
flag: '🇧🇬',
|
flag: '🇧🇬',
|
||||||
},
|
},
|
||||||
|
{ // Bengali
|
||||||
|
name: 'বাংলা',
|
||||||
|
code: 'bn',
|
||||||
|
locale: bn,
|
||||||
|
flag: '🇧🇩',
|
||||||
|
},
|
||||||
{ // Czech
|
{ // Czech
|
||||||
name: 'Čeština',
|
name: 'Čeština',
|
||||||
code: 'cs',
|
code: 'cs',
|
||||||
|
|
Loading…
Reference in New Issue