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 180
Expand file tree
/
Copy pathhi.lang.js
More file actions
158 lines (157 loc) · 5.17 KB
/
Copy pathhi.lang.js
File metadata and controls
158 lines (157 loc) · 5.17 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
147
148
149
150
151
152
153
154
155
156
157
158
/**
* Configuration for the english (original) translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "हिंदी",
prefix: "/hi/",
dir: "ltr",
lang: "hi",
// `p` stands for `paragraph`. This will contain translations of full text blocks
//
p: {
headline: "ब्राउज़र और node.js के लिए Promise आधारित HTTP क्लाइंट",
subhead: `Axios ब्राउज़र और node.js के लिए एक सरल प्रॉमिस-आधारित HTTP क्लाइंट है। Axios एक छोटे पैकेज में एक बहुत ही एक्सटेंसिबल इंटरफ़ेस के साथ उपयोग में आसान लाइब्रेरी प्रदान करता है।`,
sponsors: `<p>हमारे प्रोजेक्ट का समर्थन करने के लिए धन्यवाद।</p>
<p>अगर आपके द्वारा चुना गया स्तर यह लाभ प्रदान करता है, तो आपको 24 घंटों के भीतर स्वचालित रूप से इस सूची में जोड़ दिया जाएगा।</p>
<div class="social"><a class="link" href="/docs/sponsor">और पढ़ें...</a></div>
`,
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": 'शुरु करें',
"View on GitHub": 'GitHub पर देखें',
"Languages": 'भाषाऐं',
"Open Source": 'Open Source',
"Contribute": 'योगदान करें',
"Source on GitHub": 'GitHub पर स्रोत',
"Issues": 'समस्याऐं',
"Pull Requests": 'Pull Requests',
"Code of Conduct": 'Code of Conduct',
"Fork on GitHub": "GitHub में फोर्क करें",
"Fork the Website": "Website फोर्क करें",
"Create an Issue": "समस्या बनाऐं",
"Next": 'अगला',
"Previous": "पिछला",
"Website Copy Right Footer": 'Website कॉपीराईट फुटर',
"View On Github": 'GitHub पर देखें',
"Axios Project Copy Right Footer": 'Axios प्रोजेक्ट कॉपीराईट फुटर',
"License Label Footer": 'लाईसेंस लेबल फुटर',
"Sponsors": 'प्रायोजक',
"Become a sponsor": 'प्रायोजक',
"Gold Sponsors": 'गॊल्ड प्रायोजक',
},
sidebar: [
{
type: "heading",
text: "शुरु करें",
},
{
type: "link",
href: "/docs/intro",
text: "भूमिका",
},
{
type: "link",
href: "/docs/example",
text: "उदाहरण",
},
{
type: "link",
href: "/docs/post_example",
text: "POST Requests",
},
{
type: "heading",
text: "Axios API",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API भूमिका",
},
{
type: "link",
href: "/docs/instance",
text: "The Axios Instance",
},
{
type: "link",
href: "/docs/req_config",
text: "Request Config",
},
{
type: "link",
href: "/docs/res_schema",
text: "Response Schema",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Config Defaults",
},
{
type: "link",
href: "/docs/interceptors",
text: "Interceptors",
},
{
type: "link",
href: "/docs/handling_errors",
text: "त्रुटियों से निपटना",
},
{
type: "link",
href: "/docs/cancellation",
text: "रद्द करना",
},
{
type: "link",
href: "/docs/urlencoded",
text: "🆕 URL-एन्कोडिंग",
},
{
type: "link",
href: "/docs/multipart",
text: "🆕 मल्टीपार्ट बॉडीज़",
},
{
type: "heading",
text: "अन्य",
},
{
type: "link",
href: "/docs/notes",
text: "नोट्स",
},
{
type: "heading",
text: "सहयोजक",
},
{
type: "link",
href: "/docs/sponsor",
text: "Axios के प्रायोजक",
},
{
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: "इन दस्तावेज़ों का अनुवाद",
},
],
};