forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vi.lang.js
138 lines (136 loc) · 3.64 KB
/
vi.lang.js
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
/**
* Configuration for the Vietnamese translation
*/
module.exports = {
fontSans: "Cabin",
title: "Tài liệu Axios",
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "Tiếng Việt",
prefix: "/vi/",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "Thư viện HTTP client dựa trên Promise dành cho trình duyệt và node.js",
subhead: `Axios là một thư viện HTTP client dựa trên Promise dành cho trình duyệt và node.js.
Axios có cách sử dụng rất đơn giản, cùng với gói kích thước nhỏ và giao diện lập trình dễ dàng mở rộng.`,
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": "Bắt đầu",
"View on GitHub": "Xem trên GitHub",
"Languages": "Ngôn ngữ",
"Open Source": "Mã nguồn mở",
"Contribute": "Đóng góp",
"Source on GitHub": "Mã nguồn trên Github",
"Fork on GitHub": "Fork trên Github",
"Fork the Website": "Fork website này",
"Create an Issue": "Tạo issue",
"Issues": "Danh sách issue",
"Pull Requests": "Danh sách pull request",
"Code of Conduct": "Quy tắc ứng xử",
"Next": "Tiếp theo",
"Previous": "Trước đó",
},
sidebar: [
{
type: "heading",
text: "Bắt đầu",
},
{
type: "link",
href: "/docs/intro",
text: "Giới thiệu",
},
{
type: "link",
href: "/docs/example",
text: "Ví dụ",
},
{
type: "link",
href: "/docs/post_example",
text: "POST Request",
},
{
type: "heading",
text: "Axios API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API",
},
{
type: "link",
href: "/docs/instance",
text: "Axios Instance",
},
{
type: "link",
href: "/docs/req_config",
text: "Cấu hình Request",
},
{
type: "link",
href: "/docs/res_schema",
text: "Kết cấu Response",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Cấu hình Mặc định",
},
{
type: "link",
href: "/docs/interceptors",
text: "Bộ đón chặn",
},
{
type: "link",
href: "/docs/handling_errors",
text: "Xử trí lỗi",
},
{
type: "link",
href: "/docs/cancellation",
text: "Bãi bỏ request",
},
{
type: "link",
href: "/docs/urlencoded",
text: "Phần thân URL-Encoding",
},
{
type: "heading",
text: "Cái khác",
},
{
type: "link",
href: "/docs/notes",
text: "Ghi chú",
},
{
type: "heading",
text: "Đóng góp",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md",
text: "Quy tắc ứng xử",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/COLLABORATOR_GUIDE.md",
text: "Hướng dẫn người đóng góp",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Đóng góp cho Axios"
},
{
type: "link",
href: "/docs/translating",
text: "Phiên dịch tài liệu này"
}
],
};