Skip to content

Commit 2abc0d4

Browse files
authored
Merge pull request #26 from atahanceylan/main
turkish language support
2 parents fb1b817 + 5cf84d2 commit 2abc0d4

2 files changed

Lines changed: 51 additions & 0 deletions

File tree

universalpython/languages/tr/__init__.py

Whitespace-only changes.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
letters:
2+
start : "a"
3+
end : "z"
4+
extra : "öüıçşğÖÜİÇŞĞ"
5+
6+
numbers:
7+
start : "0"
8+
end : "9"
9+
10+
reserved:
11+
"." : "."
12+
"," : ","
13+
"1" : "1"
14+
"2" : "2"
15+
"3" : "3"
16+
"4" : "4"
17+
"5" : "5"
18+
"6" : "6"
19+
"7" : "7"
20+
"8" : "8"
21+
"9" : "9"
22+
"0" : "0"
23+
"yazdır" : "print"
24+
"eğerise" : "elif"
25+
"eğer" : "if"
26+
"başka" : "else"
27+
"iken" : "while"
28+
"için" : "for"
29+
"içinde" : "in"
30+
"giriş" : "input"
31+
"mola" : "break"
32+
"devam" : "continue"
33+
"geç" : "pass"
34+
"doğru" : "True"
35+
"yanlış" : "False"
36+
"ise" : "is"
37+
"sınıf" : "class"
38+
"fonksiyon" : "def"
39+
"__başlangıç__" : "__init__"
40+
"kendi" : "self"
41+
"dönüş" : "return"
42+
"dize" : "string"
43+
"diz" : "str"
44+
"ekle" : "append"
45+
"çıkar" : "pop"
46+
"ve" : "and"
47+
"veya" : "or"
48+
"hepsi" : "all"
49+
"herhangibiri": "any"
50+
"hiçbiri" : "None"
51+
"tamsayı" : "int"

0 commit comments

Comments
 (0)