Client - add 404 error page

This commit is contained in:
Sam
2021-08-07 14:28:48 +02:00
parent ef6649a5dc
commit 0876373609
11 changed files with 139 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"HOME": "Home"
}

View File

@ -1,12 +1,16 @@
import AdministrationTranslations from './administration.json'
import CommonTranslations from './common.json'
import DashboardTranslations from './dashboard.json'
import ErrorTranslations from './error.json'
import StatisticsTranslations from './statistics.json'
import UserTranslations from './user.json'
import WorkoutsTranslations from './workouts.json'
export default {
administration: AdministrationTranslations,
common: CommonTranslations,
dashboard: DashboardTranslations,
error: ErrorTranslations,
statistics: StatisticsTranslations,
user: UserTranslations,
workouts: WorkoutsTranslations,

View File

@ -0,0 +1,5 @@
{
"not-found": {
"PAGE": "Page not found"
}
}