-
Notifications
You must be signed in to change notification settings - Fork 0
/
i18n.config.ts
66 lines (66 loc) · 2.06 KB
/
i18n.config.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
export default defineI18nConfig(() => ({
legacy: false,
locale: 'zh_CN',
messages: {
en_US: {
app_name: 'Chat Cat',
language: 'Language',
theme: 'Theme',
home: 'Home',
my: 'Personal',
message: 'Message',
setting: 'Setting',
history: 'History',
please_input_something: 'Please input something!',
ask_question: 'Ask some Question?',
flush_success: 'Flush Success!',
fetch_failed: 'Fetch Failed!',
loading: 'Loading...',
try_refresh: 'Try Refresh',
content_has_gone: 'Content has gone!',
go_home: 'Go Home',
history_record: 'History',
no_history_record: 'No History Record',
},
zh_CN: {
app_name: '聊天猫',
language: '语言',
theme: '主题',
home: '主页',
my: '我的',
message: '消息',
setting: '设置',
history: '历史',
please_input_something: '请输入内容!',
ask_question: '问点什么吧?',
flush_success: '刷新成功!',
fetch_failed: '获取失败!',
loading: '加载中...',
try_refresh: '刷新试试',
content_has_gone: '内容走丢了,呜呜呜~',
go_home: '回到主页',
history_record: '历史记录',
no_history_record: '没有历史记录',
},
ja_JP: {
app_name: 'チャット猫',
language: '言語',
theme: 'テーマ',
home: 'メインページ',
my: '私の',
message: 'メッセージ',
setting: '設定',
history: '歴史',
please_input_something: '何かを入力してください!',
ask_question: '何か質問しますか?',
flush_success: '更新に成功しました!',
fetch_failed: '取得に失敗しました!',
loading: 'ロード中...',
try_refresh: '更新してみてください',
content_has_gone: 'コンテンツがなくなりました、ううう~',
go_home: 'ホームに戻る',
history_record: '履歴記録',
no_history_record: '履歴記録がありません',
},
},
}))