Feature: Add support for localization, introduce slang for translations, and integrate German and English locale support throughout the app

This commit is contained in:
2025-09-27 11:58:25 +02:00
parent 3e04b9cbe3
commit 0a0e421158
11 changed files with 627 additions and 44 deletions

View File

@@ -0,0 +1,26 @@
{
"hello": "Hallo $name",
"login": {
"success": "Login erfolgreich"
},
"settings": {
"title": "Einstellungen",
"sections": {
"account": "Konto & Daten",
"app": "App",
"help": "Hilfe & Rechtliches"
},
"items": {
"appSettings": "App-Einstellungen",
"personalData": "Persönliche Daten",
"accountManagement": "Kontoverwaltung",
"helpCenter": "Hilfe",
"feedback": "Feedback",
"legalPrivacy": "Rechtliches & Datenschutz",
"logout": "Abmelden"
},
"messages": {
"logoutNotImplemented": "Logout… (noch nicht implementiert)"
}
}
}

View File

@@ -0,0 +1,26 @@
{
"hello": "Hello $name",
"login": {
"success": "Logged in successfully"
},
"settings": {
"title": "Settings",
"sections": {
"account": "Account & Data",
"app": "App",
"help": "Help & Legal"
},
"items": {
"appSettings": "App settings",
"personalData": "Personal data",
"accountManagement": "Account management",
"helpCenter": "Help",
"feedback": "Feedback",
"legalPrivacy": "Legal & Privacy",
"logout": "Sign out"
},
"messages": {
"logoutNotImplemented": "Logout… (not implemented yet)"
}
}
}