Skip to content

Commit

Permalink
fix: change 404 redirect to new dashboard route
Browse files Browse the repository at this point in the history
update german localizations, make it sound more human
  • Loading branch information
simonwep committed Dec 30, 2023
1 parent 55e85a4 commit 9fc2d85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions src/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"copyPaste": {
"copy": "Daten kopieren von {year}",
"paste": "Daten einfügen von {from} nach {to}",
"paste": "Daten von {from} nach {to} kopieren",
"confirm": "Sind Sie sicher, dass Sie die Daten von {from} nach {to} kopieren möchten?"
},
"demo": {
Expand All @@ -34,7 +34,7 @@
"import": {
"import": "Aus JSON-Datei importieren",
"what": {
"google": "Google Sheets Jahresbudgetdatei",
"google": "Google Sheets Jahresbudget",
"ocular": "Eine zuvor exportierte Datei",
"title": "Was möchten Sie importieren?"
},
Expand All @@ -51,26 +51,26 @@
},
"privacyMode": {
"disable": "In den öffentlichen Modus wechseln",
"enable": "In den Datenschutzmodus wechseln"
"enable": "In den privaten Modus wechseln"
}
},
"language": {
"switch": "Zu einer anderen Sprache wechseln"
"switch": "Sprache wechseln"
},
"info": {
"about": "Über Ocular",
"github": "Schauen Sie sich dieses Projekt auf {link} an!",
"madeWithLove": "Hergestellt mit ❤️ von Simon",
"madeWithLove": "Entwickelt mit ❤️von Simon",
"meta": "{version} / {date} / {sha}"
},
"currency": {
"change": "Ändern Sie die zu verwendende Währung"
"change": "Währung ändern"
},
"theme": {
"change": "Farbthema ändern"
},
"year": {
"change": "Wechseln Sie zu einem anderen Jahr"
"change": "Jahr wechseln"
},
"auth": {
"welcomeBack": "Willkommen zurück!",
Expand Down
2 changes: 1 addition & 1 deletion src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const router = createRouter({
},
{
path: '/:pathMatch(.*)*',
redirect: '/dashboard'
redirect: '/'
}
]
});

0 comments on commit 9fc2d85

Please sign in to comment.