forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fa.lang.js
139 lines (138 loc) · 3.86 KB
/
fa.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
/**
* Configuration for the Persian translation
* پیکربندی ترجمه فارسی
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "فارسی",
prefix: "/fa/",
dir: "rtl",
lang: "fa",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "سرویس گیرنده HTTP مبتنی بر پرامیس (Promise) برای مرورگر و node.js ",
subhead: `Axios یک سرویس گیرنده HTTP مبتنی بر پرامیس (Promise) برای مرورگر و node.js می باشد.
Axios یک کتابخانه ساده حتی برای استفاده در یک بسته کوچک با رابط کاربری بسیار گسترده ارائه شده است.`,
},
// `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": "منبع در GitHub",
"Fork on GitHub": "فورک در GitHub",
"Fork the Website": "فورک وب سایت",
"Create an Issue": "ایجاد یک مسئله",
"Next": "بعدی",
"Previous": "قبلی",
"Website Copy Right Footer": "پاورقی حق چاپ و استفاده وب سایت",
"View On Github": "مشاهده در Github",
"Axios Project Copy Right Footer": "پاورقی حق استفاده از پروژه Axios",
"License Label Footer": "پاورقی برچسب مجوز"
},
sidebar: [
{
type: "heading",
text: "شروع به کار",
},
{
type: "link",
href: "/docs/intro",
text: "مقدمه",
},
{
type: "link",
href: "/docs/example",
text: "مثال",
},
{
type: "link",
href: "/docs/post_example",
text: "درخواست های ارسال",
},
{
type: "heading",
text: "رابط های برنامهنویسی پروژه",
},
{
type: "link",
href: "/docs/api_intro",
text: "APIهای پروژه Axios",
},
{
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: "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: "ترجمه این اسناد"
}
],
};