Skip to content

Commit e078278

Browse files
authored
Merge pull request #41 from berkaltiok/master
Add Turkish (TR) language
2 parents 9cc5bb2 + ae0c24f commit e078278

File tree

5 files changed

+38
-3
lines changed

5 files changed

+38
-3
lines changed

gulpfile.js

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ const translates = [
2222
{
2323
dest: `${SERVER_ROOT}zh-tw`,
2424
url: `./src/translate/zh-tw.json`
25+
},
26+
{
27+
dest: `${SERVER_ROOT}tr`,
28+
url: `./src/translate/tr.json`
2529
}
2630
];
2731

src/translate/en.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"langs": [
2222
"<a>En</a>",
2323
"<a href=\"./ru\">Рус</a>",
24-
"<a href=\"./zh-tw\">Tc</a>"
24+
"<a href=\"./zh-tw\">Tc</a>",
25+
"<a href=\"./tr\">Tr</a>"
2526
],
2627
"decodeTip": "You may place encoded SVG here to decode it back"
2728
}

src/translate/ru.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"langs": [
2222
"<a href=\"../\">En</a>",
2323
"<a>Рус</a>",
24-
"<a href=\"../zh-tw\">Tc</a>"
24+
"<a href=\"../zh-tw\">Tc</a>",
25+
"<a href=\"../tr\">Tr</a>"
2526
],
2627
"decodeTip": "Сюда можно вставить закодированный SVG, чтобы раскодировать его обратно"
2728
}

src/translate/tr.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"path": "..",
3+
"title": "SVG için URL oluşturucu",
4+
"quotes": "Tırnak Kullanımı",
5+
"single": "tek",
6+
"double": "çift",
7+
"aboutTitle": "Araç Hakkında",
8+
"aboutText": "<p>SVG kodlarınızı CSS içinde URI formatında kullanmak istediğinizde ve dönüştürülmemişse sadece Webkit tabanlı tarayıcılarda çalışır. SVG kodunuzu <code>encodeURIComponent()</code> fonksiyonu ile kullanırsanız her yerde çalışır.</p><p>SVG kodunuz <strong>xmlns</strong> özelliğine sahip olmalıdır: <code>xmlns='http: //www.w3.org/2000/svg'</code>. Bu kod eksikse sistem otomatik olarak ekleyecektir.</p><p>Dönüştürülmüş SVG kodlarınızı <code>background</code>, <code>border-image</code> veya <code>mask</code> ile kullanabilirsiniz (<a href='https://codepen.io/yoksel/full/WNrLpYW'>örnek proje</a>).</p>",
9+
"insertSVG": "SVG Kodu",
10+
"example": "Örnek",
11+
"takeEncoded": "Dönüştürülmüş kod",
12+
"copy": "Kopyala",
13+
"readyForCSS": "CSS için kod",
14+
"preview": "Ön izleme",
15+
"background": "Arka Plan",
16+
"white": "Beyaz",
17+
"silver": "Gri",
18+
"black": "Siyah",
19+
"projectOn": "Bu proje",
20+
"twitter": "yoksel_en",
21+
"langs": [
22+
"<a href=\"../\">En</a>",
23+
"<a href=\"../ru\">Рус</a>",
24+
"<a href=\"../zh-tw\">Tc</a>",
25+
"<a>Tr</a>"
26+
],
27+
"decodeTip": "Dönüştürülmüş SVG kodunuzu eski haline çevirmek için buraya yapıştırabilirsiniz"
28+
}

src/translate/zh-tw.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"langs": [
2222
"<a href=\"../\">En</a>",
2323
"<a href=\"../ru\">Рус</a>",
24-
"<a>Tc</a>"
24+
"<a>Tc</a>",
25+
"<a href=\"../tr\">Tr</a>"
2526
],
2627
"decodeTip": "您可以將編碼後的 SVG 放在此處以將其解碼回去"
2728
}

0 commit comments

Comments
 (0)