mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
feat: i18n de-DE (#206)
This commit is contained in:
parent
c5afa9d579
commit
b118313b6f
3 changed files with 33 additions and 0 deletions
|
@ -10,6 +10,10 @@ const languageList = [
|
|||
value: 'en-US',
|
||||
label: 'English',
|
||||
},
|
||||
{
|
||||
value: 'de-DE',
|
||||
label: 'Deutsch',
|
||||
},
|
||||
{
|
||||
value: 'zh-CN',
|
||||
label: '简体中文',
|
||||
|
|
24
locales/de-DE.json
Normal file
24
locales/de-DE.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"selectLanguage": "Sprache auswählen",
|
||||
"nav_side": {
|
||||
"home": "Startseite",
|
||||
"notifications": "Mitteilungen",
|
||||
"explore": "Entdecken",
|
||||
"local": "Lokale Timeline",
|
||||
"federated": "Förderierte Timeline",
|
||||
"conversations": "Direktnachrichten",
|
||||
"favourites": "Favoriten",
|
||||
"bookmarks": "Lesezeichen",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"timeline": "Timeline",
|
||||
"title": {
|
||||
"local-timeline": "@:nav_side.local @:timeline",
|
||||
"federated-timeline": "@:nav_side.federated @:timeline"
|
||||
},
|
||||
"account": {
|
||||
"posts": "{0} Beiträge",
|
||||
"following": "{0} Folge ich",
|
||||
"followers": "{0} Follower"
|
||||
}
|
||||
}
|
|
@ -72,6 +72,11 @@ export default defineNuxtConfig({
|
|||
file: 'en-US.json',
|
||||
name: 'English',
|
||||
},
|
||||
{
|
||||
code: 'de-DE',
|
||||
file: 'de-DE.json',
|
||||
name: 'Deutsch',
|
||||
},
|
||||
{
|
||||
code: 'zh-CN',
|
||||
file: 'zh-CN.json',
|
||||
|
|
Loading…
Reference in a new issue