forked from Tokyo-Metro-Gov/covid19
-
Notifications
You must be signed in to change notification settings - Fork 3
/
nuxt-i18n.config.ts
86 lines (84 loc) · 1.76 KB
/
nuxt-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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import { NuxtVueI18n } from 'nuxt-i18n'
const options: NuxtVueI18n.Options.AllOptionsInterface = {
strategy: 'prefix_except_default',
detectBrowserLanguage: {
useCookie: true,
cookieKey: 'i18n_redirected'
},
defaultLocale: 'zh-tw',
vueI18n: {
fallbackLocale: 'zh-tw',
formatFallbackMessages: true
},
// vueI18nLoader: true,
lazy: true,
langDir: 'assets/locales/',
locales: [
{
code: 'zh-tw',
name: '中文 (台灣)',
iso: 'zh-TW',
file: 'zh_TW.json',
description: 'Chinese (Taiwan)'
},
{
code: 'ja',
name: '日本語',
iso: 'ja-JP',
file: 'ja.json',
description: 'Japanese'
},
{
code: 'en',
name: 'English',
iso: 'en-US',
file: 'en.json',
description: 'English'
},
{
code: 'zh-cn',
name: '简体中文',
iso: 'zh-CN',
file: 'zh_CN.json',
description: 'Simplified Chinese'
},
{
code: 'ko',
name: '한국어',
iso: 'ko-KR',
file: 'ko.json',
description: 'Korean'
},
// #1126, #872 (comment)
// ポルトガル語は訳が揃っていないため非表示
// {
// code: 'pt-BR',
// name: 'Portuguese',
// iso: 'pt-BR',
// file: 'pt_BR.json',
// description: 'Portuguese'
// },
{
code: 'vi',
name: 'Tiếng Việt',
iso: 'vi-VI',
file: 'vi.json',
description: 'Vietnamese'
},
{
code: 'th',
name: 'ไทย',
iso: 'th-TH',
file: 'th.json',
description: 'Thai'
},
{
code: 'ja-basic',
name: 'やさしい にほんご',
iso: 'ja-JP',
file: 'ja-Hira.json',
description: 'Easy Japanese'
}
]
}
export default options