mirror of https://github.com/Lissy93/dashy.git
🌐 Adds Turkish (thanks @imsakg 🙌 #1188)
This commit is contained in:
parent
7200d87d6a
commit
2e053064d3
|
@ -426,6 +426,7 @@ Dashy supports multiple languages and locales. When available, your language sho
|
||||||
- 🇪🇸 **Spanish**: `es` - Contributed by **[@lu4t](https://github.com/lu4t)**
|
- 🇪🇸 **Spanish**: `es` - Contributed by **[@lu4t](https://github.com/lu4t)**
|
||||||
- 🇸🇪 **Swedish**: `sv` - Contributed by **[@BOZG](https://github.com/BOZG)**
|
- 🇸🇪 **Swedish**: `sv` - Contributed by **[@BOZG](https://github.com/BOZG)**
|
||||||
- 🇹🇼 **Traditional Chinese**: `zh-TW` - Contributed by **[@stanly0726](https://github.com/stanly0726)**
|
- 🇹🇼 **Traditional Chinese**: `zh-TW` - Contributed by **[@stanly0726](https://github.com/stanly0726)**
|
||||||
|
- 🇹🇷 **Turkish**: `tr` - _Auto-generated_
|
||||||
- 🏴☠️ **Pirate**: `pirate` - Contributed by **[@Lissy93](https://github.com/lissy93)**
|
- 🏴☠️ **Pirate**: `pirate` - Contributed by **[@Lissy93](https://github.com/lissy93)**
|
||||||
|
|
||||||
#### Add your Language
|
#### Add your Language
|
||||||
|
|
|
@ -20,6 +20,7 @@ import ru from '@/assets/locales/ru.json';
|
||||||
import sk from '@/assets/locales/sk.json';
|
import sk from '@/assets/locales/sk.json';
|
||||||
import sl from '@/assets/locales/sl.json';
|
import sl from '@/assets/locales/sl.json';
|
||||||
import sv from '@/assets/locales/sv.json';
|
import sv from '@/assets/locales/sv.json';
|
||||||
|
import tr from '@/assets/locales/tr.json';
|
||||||
import zhCN from '@/assets/locales/zh-CN.json';
|
import zhCN from '@/assets/locales/zh-CN.json';
|
||||||
import zhTW from '@/assets/locales/zh-TW.json';
|
import zhTW from '@/assets/locales/zh-TW.json';
|
||||||
import pirate from '@/assets/locales/zz-pirate.json';
|
import pirate from '@/assets/locales/zz-pirate.json';
|
||||||
|
@ -153,6 +154,12 @@ export const languages = [
|
||||||
locale: sv,
|
locale: sv,
|
||||||
flag: '🇸🇪',
|
flag: '🇸🇪',
|
||||||
},
|
},
|
||||||
|
{ // Turkish
|
||||||
|
name: 'Türkçe',
|
||||||
|
code: 'tr',
|
||||||
|
locale: tr,
|
||||||
|
flag: '🇹🇷',
|
||||||
|
},
|
||||||
{ // Chinese
|
{ // Chinese
|
||||||
name: '简体中文',
|
name: '简体中文',
|
||||||
code: 'cn',
|
code: 'cn',
|
||||||
|
|
Loading…
Reference in New Issue