-
Notifications
You must be signed in to change notification settings - Fork 108
/
i18n.ts
117 lines (112 loc) · 2.66 KB
/
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
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
109
110
111
112
113
114
115
116
117
export const LANGUAGES = {
'zh-cn': {
Home: '首页',
Posts: '文章',
Categories: '分类',
Archive: '归档',
Tags: '标签',
About: '关于',
Links: '链接',
posted_at: '发布于',
tag_count: '%d 篇',
archive_count: '%d 篇',
categories_count: '%d 篇',
page_count: '共 %d 页',
page_number: '第 %d 页',
all_posts: '所有文章',
comments: '评论',
share: '分享到',
prev: '上一页',
next: '下一页',
prev_post: '上一篇',
next_post: '下一篇',
},
'en-us': {
Home: 'Home',
Posts: 'Posts',
Categories: 'Categories',
Archive: 'Archive',
Tags: 'Tags',
About: 'About',
Links: 'Links',
posted_at: 'Posted at',
tag_count: '%d tags',
archive_count: '%d post',
categories_count: '%d post',
page_count: '%d',
page_number: 'Page %d',
all_posts: 'All Posts',
comments: 'comments',
share: 'Share',
prev: 'Previous',
next: 'Next',
prev_post: 'Previous post',
next_post: 'Next post',
},
'zh-tw': {
Home: '首頁',
Posts: '文章',
Categories: '分類',
Archive: '歸檔',
Tags: '標籤',
About: '關於',
Links: '鏈接',
posted_at: '發佈於',
tag_count: '%d 篇',
archive_count: '%d 篇',
categories_count: '%d 篇',
page_count: '共 %d 頁',
page_number: '第 %d 頁',
all_posts: '所有文章',
comments: '評論',
share: '分享到',
prev: '上一頁',
next: '下一頁',
prev_post: '上一篇',
next_post: '下一篇',
},
'ja-jp': {
Home: 'ホーム',
Posts: '投稿',
Categories: 'カテゴリー',
Archive: 'アーカイブ',
Tags: 'タグ',
About: '私について',
Links: 'リンク',
posted_at: '投稿日',
tag_count: '%d タグ',
archive_count: '%d 投稿',
categories_count: '%d 投稿',
page_count: '%d',
page_number: 'ページ %d',
all_posts: 'すべての投稿',
comments: 'コメント',
share: 'シェア',
prev: '前へ',
next: '次へ',
prev_post: '前の投稿',
next_post: '次の投稿',
},
'it-it': {
Home: 'Home',
Posts: 'Articoli',
Categories: 'Categorie',
Archive: 'Archivio',
Tags: 'Tag',
About: 'Info',
Links: 'Link',
posted_at: 'Pubblicato in',
tag_count: '%d tag',
archive_count: '%d articoli',
categories_count: '%d articoli',
page_count: '%d',
page_number: 'Pagina %d',
all_posts: 'Tutti gli articoli',
comments: 'commenti',
share: 'Condividi',
prev: 'Precedente',
next: 'Successivo',
prev_post: 'Articolo Precedente',
next_post: 'Articolo Succesivo',
},
}