24 lines
678 B
Plaintext
24 lines
678 B
Plaintext
|
|
---
|
||
|
|
import App from '../../../layouts/App.astro';
|
||
|
|
import DashboardApp from '../../../components/DashboardApp';
|
||
|
|
import { t } from '../../../i18n/utils';
|
||
|
|
|
||
|
|
const locale = 'zh' as const;
|
||
|
|
const translations = {
|
||
|
|
dashboard: t(locale, 'dashboard'),
|
||
|
|
store: t(locale, 'store'),
|
||
|
|
pricing: t(locale, 'pricing'),
|
||
|
|
history: t(locale, 'history'),
|
||
|
|
notifications: t(locale, 'notifications'),
|
||
|
|
profile: t(locale, 'profile'),
|
||
|
|
settings: t(locale, 'settings'),
|
||
|
|
divination: t(locale, 'divination'),
|
||
|
|
general: t(locale, 'general'),
|
||
|
|
feedback: t(locale, 'feedback'),
|
||
|
|
};
|
||
|
|
---
|
||
|
|
|
||
|
|
<App locale={locale}>
|
||
|
|
<DashboardApp client:only="react" locale={locale} translations={translations} />
|
||
|
|
</App>
|