first implementation of tamagui mobile pages
This commit is contained in:
@@ -14,6 +14,8 @@ import deSettings from './locales/de/settings.json';
|
||||
import enSettings from './locales/en/settings.json';
|
||||
import deAuth from './locales/de/auth.json';
|
||||
import enAuth from './locales/en/auth.json';
|
||||
import deMobile from './locales/de/mobile.json';
|
||||
import enMobile from './locales/en/mobile.json';
|
||||
|
||||
const DEFAULT_NAMESPACE = 'common';
|
||||
|
||||
@@ -25,6 +27,7 @@ const resources = {
|
||||
management: deManagement,
|
||||
settings: deSettings,
|
||||
auth: deAuth,
|
||||
mobile: deMobile,
|
||||
},
|
||||
en: {
|
||||
common: enCommon,
|
||||
@@ -33,6 +36,7 @@ const resources = {
|
||||
management: enManagement,
|
||||
settings: enSettings,
|
||||
auth: enAuth,
|
||||
mobile: enMobile,
|
||||
},
|
||||
} as const;
|
||||
|
||||
|
||||
14
resources/js/admin/i18n/locales/de/mobile.json
Normal file
14
resources/js/admin/i18n/locales/de/mobile.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"nav": {
|
||||
"dashboard": "Übersicht",
|
||||
"events": "Events",
|
||||
"tasks": "Aufgaben",
|
||||
"alerts": "Alerts",
|
||||
"profile": "Profil"
|
||||
},
|
||||
"actions": {
|
||||
"back": "Zurück",
|
||||
"close": "Schließen",
|
||||
"refresh": "Aktualisieren"
|
||||
}
|
||||
}
|
||||
14
resources/js/admin/i18n/locales/en/mobile.json
Normal file
14
resources/js/admin/i18n/locales/en/mobile.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"nav": {
|
||||
"dashboard": "Dashboard",
|
||||
"events": "Events",
|
||||
"tasks": "Tasks",
|
||||
"alerts": "Alerts",
|
||||
"profile": "Profile"
|
||||
},
|
||||
"actions": {
|
||||
"back": "Back",
|
||||
"close": "Close",
|
||||
"refresh": "Refresh"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user