-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.ts
30 lines (25 loc) · 946 Bytes
/
i18n.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { getRequestConfig } from "next-intl/server";
import {
createLocalizedPathnamesNavigation,
Pathnames,
} from "next-intl/navigation";
export const locales = ["en", "vi", "ja", "ko", "ru", "chinese"];
export const localeNames: Record<string, string> = {
en: "English",
vi: "Tiếng Việt",
ja: "日本語", // Tiếng Nhật
ko: "한국어", // Tiếng Hàn
ru: "Русский язык", // Tiếng Nga
chinese: "中文", // Tiếng trung
};
export default getRequestConfig(async ({ locale }) => ({
messages: (await import(`./messages/${locale}.json`)).default,
}));
export const pathnames = {
"/": "/",
"/documents": "/documents",
"/documents/[documentId]": "/documents/[documentId]",
"/preview/[documentId]": "/preview/[documentId]",
} satisfies Pathnames<typeof locales>;
export const { Link, redirect, usePathname, useRouter, getPathname } =
createLocalizedPathnamesNavigation({ locales, pathnames });