This repository was archived by the owner on Apr 14, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathzhTW.lang.js
More file actions
146 lines (144 loc) · 3.61 KB
/
zhTW.lang.js
File metadata and controls
146 lines (144 loc) · 3.61 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
* Configuration for the traditional chinese translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "繁體中文",
prefix: "/zhTW/",
dir: "ltr",
lang: "zhTW",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "Axios 是一個基於 Promise 的 HTTP 客戶端函式庫,可用於瀏覽器及 node.js",
subhead: `Axios 是一個極為輕量的 HTTP 客戶端函式庫,基於 Promise 開發,且提供了易於擴展的介面。`
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": "快速開始",
"View on GitHub": "至 Github 上查看",
"Languages": "語言",
"Open Source": "開放原始碼",
"Contribute": "貢獻專案",
"Source on GitHub": undefined,
"Issues": undefined,
"Pull Requests": undefined,
"Code of Conduct": undefined,
"Fork on GitHub": undefined,
"Fork the Website": undefined,
"Create an Issue": undefined,
"Next": "下一頁",
"Previous": "上一頁",
"Website Copy Right Footer": undefined,
"View On Github": "至 Github 上查看",
"Axios Project Copy Right Footer": undefined,
"License Label Footer": undefined
},
sidebar: [
{
type: "heading",
text: "快速開始",
},
{
type: "link",
href: "/docs/intro",
text: "簡介",
},
{
type: "link",
href: "/docs/example",
text: "使用範例",
},
{
type: "link",
href: "/docs/post_example",
text: "POST 請求",
},
{
type: "heading",
text: "Axios API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API",
},
{
type: "link",
href: "/docs/instance",
text: "Axios 實體",
},
{
type: "link",
href: "/docs/req_config",
text: "請求配置",
},
{
type: "link",
href: "/docs/res_schema",
text: "回應架構",
},
{
type: "link",
href: "/docs/config_defaults",
text: "預設配置",
},
{
type: "link",
href: "/docs/interceptors",
text: "攔截器",
},
{
type: "link",
href: "/docs/handling_errors",
text: "錯誤處理",
},
{
type: "link",
href: "/docs/cancellation",
text: "取消請求",
},
{
type: "link",
href: "/docs/urlencoded",
text: "🆕 URL-Encoding 編碼主體",
},
{
type: "link",
href: "/docs/multipart",
text: "🆕 Multipart 主體",
},
{
type: "heading",
text: "其他",
},
{
type: "link",
href: "/docs/notes",
text: "注意事項",
},
{
type: "heading",
text: "致貢獻者",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/v1.x/CODE_OF_CONDUCT.md",
text: "行為準則",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/v1.x/COLLABORATOR_GUIDE.md",
text: "協作指南",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/v1.x/CONTRIBUTING.md",
text: "貢獻 Axios"
},
{
type: "link",
href: "/docs/translating",
text: "協助翻譯文件"
}
],
};