forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ja.lang.js
142 lines (141 loc) · 3.77 KB
/
ja.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
139
140
141
142
/**
* Configuration for the Japanese (ja) translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "日本語",
prefix: "/ja/",
dir: "ltr",
lang: "ja",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "ブラウザと Node.js のための Promise ベースの HTTP クライアント",
subhead: `Axios は、ブラウザと Node.js のための、シンプルなプロミスベースの HTTP クライアントです。
Axios は、非常に拡張性の高いインターフェイスを持つ小さなパッケージで、
シンプルに使えるライブラリを提供します。`,
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": 'Axios 入門',
"View on GitHub": 'GitHub で表示',
"Languages": '言語',
"Open Source": 'オープンソース',
"Contribute": 'コントリビュート (貢献)',
"Source on GitHub": 'GitHub 上のソース',
"Issues": 'イシュー',
"Pull Requests": 'プルリクエスト',
"Code of Conduct": '行動規範',
"Fork on GitHub": 'GitHub でのフォーク',
"Fork the Website": 'Web サイトをフォークする',
"Create an Issue": 'イシューを作成する',
"Next": '次へ',
"Previous": '前へ',
"Website Copy Right Footer": 'Web サイトの著作権フッター',
"View On Github": 'GitHub で表示',
"Axios Project Copy Right Footer": 'Axios プロジェクトの著作権フッター',
"License Label Footer": 'ライセンスラベル フッター'
},
sidebar: [
{
type: "heading",
text: "Axiom 入門",
},
{
type: "link",
href: "/docs/intro",
text: "Axiom 入門",
},
{
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-エンコードボディ",
},
{
type: "heading",
text: "その他",
},
{
type: "link",
href: "/docs/notes",
text: "特記事項",
},
{
type: "heading",
text: "コントリビューター",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md",
text: "行動規範",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/COLLABORATOR_GUIDE.md",
text: "コントリビューター ガイド",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Axios に貢献する"
},
{
type: "link",
href: "/docs/translating",
text: "このドキュメントを翻訳する"
}
],
};