forked from axios/axios-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tr.lang.js
133 lines (132 loc) · 3.15 KB
/
tr.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
/**
* Configuration for the english (original) translation
*/
module.exports = {
// Language display name. MUST BE THE SAME AS IN [inert.config.js].custom.langs
display: "Türkçe",
prefix: "/tr/",
// `p` stands for `paragraph`. This will contain translations of full text blocks
p: {
headline: "Tarayıcı ve node.js için Promise tabanlı HTTP istemcisi",
subhead: `Axios tarayıcı ve node.js için basit, promise tabanlı bir HTTP istemcisidir.
Axios küçük bir pakette kullanımı basit ve genişletilebilir arayüze sahip
bir kütüphane sağlar.`,
},
// `t` stands fot `translation`. This will contain translations of single words or phrases
t: {
"Get Started": "Başlangıç",
"View on GitHub": "GitHub'da görüntüleyin",
"Languages": "Diller",
"Open Source": "Açık Kaynak",
"Contribute": "Katkıda bulunun",
"Source on GitHub": "GitHub'daki kaynak kodu",
"Fork on GitHub": "GitHub'da forklayın",
"Fork the Website": "Bu Websiteyi Forklayın",
"Create an Issue": "Hata bildirin",
"Next": "Sonraki",
"Previous": "Önceki",
},
sidebar: [
{
type: "heading",
text: "Başlangıç",
},
{
type: "link",
href: "/docs/intro",
text: "Giriş",
},
{
type: "link",
href: "/docs/example",
text: "Örnek",
},
{
type: "link",
href: "/docs/post_example",
text: "POST istekleri",
},
{
type: "heading",
text: "Axios API'si",
},
{
type: "link",
href: "/docs/api_intro",
text: "Axios API'si",
},
{
type: "link",
href: "/docs/instance",
text: "Axios Objesi",
},
{
type: "link",
href: "/docs/req_config",
text: "İstek Konfigürasyonu",
},
{
type: "link",
href: "/docs/res_schema",
text: "Yanıt Şeması",
},
{
type: "link",
href: "/docs/config_defaults",
text: "Konfigürasyon Varsayılanları",
},
{
type: "link",
href: "/docs/interceptors",
text: "Yol kesiciler",
},
{
type: "link",
href: "/docs/handling_errors",
text: "Hataları Ele Alma",
},
{
type: "link",
href: "/docs/cancellation",
text: "İptal etme",
},
{
type: "link",
href: "/docs/urlencoded",
text: "URL-Encoding Gövdeleri",
},
{
type: "heading",
text: "Diğer",
},
{
type: "link",
href: "/docs/notes",
text: "Notlar",
},
{
type: "heading",
text: "Katkıda bulunanlar için",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CODE_OF_CONDUCT.md",
text: "Davranış Kuralları",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/COLLABORATOR_GUIDE.md",
text: "Katkıda Bulunma Kılavuzu",
},
{
type: "link",
href: "https://github.com/axios/axios/blob/master/CONTRIBUTING.md",
text: "Axios'a Katkıda Bulunma"
},
{
type: "link",
href: "/docs/translating",
text: "Bu dokümentasyonu çevirmek"
}
],
};