add translation keys (#246)
* Fix i18n tsc issue "t" can return null by default. This was already disabled in the config, but it had no effect on tsc. * Fix translation in "DefaultNavBar" key was missing and since this is a constant the translation wouldn't update in case the language got changed after first load. * Enable typing for i18n translation keys * Add translation keys
This commit is contained in:
@@ -1,19 +1,39 @@
|
||||
{
|
||||
"screens": {
|
||||
"Library": {
|
||||
"Library": "Bibliotek",
|
||||
"could-not-load-categories": "Kategorien konnten nicht geladen werden",
|
||||
"category-is-empty": "Kategorie ist leer",
|
||||
"could-not-load-manga": "Manga konnte nicht geladen werden",
|
||||
"your-library-is-empty": "Deine Bibliothek ist leer"
|
||||
},
|
||||
"Browse": {
|
||||
"sources": "Quellen",
|
||||
"extensions": "Erweiterungen"
|
||||
},
|
||||
"DownloadQueue": {
|
||||
"no-downloads": "Keine Downloads",
|
||||
"download-queue": "Herunterladen-Warteschlange"
|
||||
"category": {
|
||||
"error": {
|
||||
"label": {
|
||||
"empty": "Kategorie ist leer",
|
||||
"request_failure": "Kategorien konnten nicht geladen werden"
|
||||
}
|
||||
}
|
||||
},
|
||||
"download": {
|
||||
"queue": {
|
||||
"label": {
|
||||
"no_downloads": "Keine Downloads"
|
||||
},
|
||||
"title": "Herunterladen-Warteschlange"
|
||||
}
|
||||
},
|
||||
"extension": {
|
||||
"title": "Erweiterungen"
|
||||
},
|
||||
"library": {
|
||||
"error": {
|
||||
"label": {
|
||||
"empty": "Deine Bibliothek ist leer"
|
||||
}
|
||||
},
|
||||
"title": "Bibliotek"
|
||||
},
|
||||
"manga": {
|
||||
"error": {
|
||||
"label": {
|
||||
"request_failure": "Manga konnte nicht geladen werden"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"title": "Quellen"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user