mirror of
https://github.com/perfect-panel/ppanel-web.git
synced 2026-02-06 11:40:28 -05:00
45 lines
2.2 KiB
TypeScript
45 lines
2.2 KiB
TypeScript
import { locales, NEXT_PUBLIC_DEFAULT_LANGUAGE } from '@/config/constants';
|
|
import { getRequestConfig } from 'next-intl/server';
|
|
import { cookies, headers } from 'next/headers';
|
|
|
|
export default getRequestConfig(async () => {
|
|
const browserLocale = (await headers()).get('Accept-Language')?.split(',')?.[0] || '';
|
|
const defaultLocale = locales.includes(browserLocale) ? browserLocale : '';
|
|
const cookieLocale = (await cookies()).get('locale')?.value || '';
|
|
|
|
const locale = cookieLocale || defaultLocale || NEXT_PUBLIC_DEFAULT_LANGUAGE;
|
|
|
|
const messages = {
|
|
'menu': (await import(`./${locale}/menu.json`)).default,
|
|
'auth': (await import(`./${locale}/auth.json`)).default,
|
|
'common': (await import(`./${locale}/common.json`)).default,
|
|
'system': (await import(`./${locale}/system.json`)).default,
|
|
'auth-control': (await import(`./${locale}/auth-control.json`)).default,
|
|
'email': (await import(`./${locale}/email.json`)).default,
|
|
'phone': (await import(`./${locale}/phone.json`)).default,
|
|
'telegram': (await import(`./${locale}/telegram.json`)).default,
|
|
'apple': (await import(`./${locale}/apple.json`)).default,
|
|
'google': (await import(`./${locale}/google.json`)).default,
|
|
'facebook': (await import(`./${locale}/facebook.json`)).default,
|
|
'github': (await import(`./${locale}/github.json`)).default,
|
|
'device': (await import(`./${locale}/device.json`)).default,
|
|
'ads': (await import(`./${locale}/ads.json`)).default,
|
|
'payment': (await import(`./${locale}/payment.json`)).default,
|
|
'server': (await import(`./${locale}/server.json`)).default,
|
|
'subscribe': (await import(`./${locale}/subscribe.json`)).default,
|
|
'order': (await import(`./${locale}/order.json`)).default,
|
|
'coupon': (await import(`./${locale}/coupon.json`)).default,
|
|
'user': (await import(`./${locale}/user.json`)).default,
|
|
'announcement': (await import(`./${locale}/announcement.json`)).default,
|
|
'ticket': (await import(`./${locale}/ticket.json`)).default,
|
|
'document': (await import(`./${locale}/document.json`)).default,
|
|
'tool': (await import(`./${locale}/tool.json`)).default,
|
|
'index': (await import(`./${locale}/index.json`)).default,
|
|
};
|
|
|
|
return {
|
|
locale,
|
|
messages,
|
|
};
|
|
});
|