-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi18n.config.ts
More file actions
41 lines (40 loc) · 756 Bytes
/
i18n.config.ts
File metadata and controls
41 lines (40 loc) · 756 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
export const i18n = {
locales: ["en", "hn", "gj"],
defaultLocale: "en",
} as const;
export type Local = (typeof i18n)["locales"][number];
export type Content = {
login: {
singin: string;
email: string;
password: string;
remember: string;
login: string;
};
movies: {
create: {
create: string;
title: string;
year: string;
cancel: string;
submit: string;
drop_file: string;
};
movieId: {
edit: string;
title: string;
year: string;
cancel: string;
update: string;
drop_file: string;
};
no_movies: {
button: string;
title: string;
};
my_movies: string;
logout: string;
next: string;
prev: string;
};
};