This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
nuxt-i18n.config.ts
108 lines (104 loc) · 2.2 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import type { NuxtConfig } from '@nuxt/types'
import type { DateTimeFormat } from 'vue-i18n'
const dateTimeFormatsCommon: DateTimeFormat = {
dateTime: {
year: 'numeric',
month: 'short',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
hour12: false,
},
date: {
year: 'numeric',
month: 'short',
day: 'numeric',
},
dateWithoutYear: {
month: 'long',
day: 'numeric',
},
dateWithoutDay: {
year: 'numeric',
month: 'short',
},
dateWithDayOfWeek: {
weekday: 'short',
month: 'short',
day: 'numeric',
},
}
const options: NuxtConfig['i18n'] = {
strategy: 'prefix_except_default',
detectBrowserLanguage: false,
defaultLocale: 'ja',
vueI18n: {
fallbackLocale: 'ja',
formatFallbackMessages: true,
dateTimeFormats: {
ja: dateTimeFormatsCommon,
en: dateTimeFormatsCommon,
'zh-cn': dateTimeFormatsCommon,
'zh-tw': dateTimeFormatsCommon,
ko: dateTimeFormatsCommon,
'ja-basic': dateTimeFormatsCommon,
},
},
// vueI18nLoader: true,
lazy: true,
langDir: 'assets/locales/',
locales: [
{
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: 'zh-tw',
name: '繁體中文',
iso: 'zh-TW',
file: 'zh_TW.json',
description: 'Traditional 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: 'ja-basic',
name: 'やさしい にほんご',
iso: 'ja-JP',
file: 'ja-Hira.json',
description: 'Easy Japanese',
},
],
}
export default options