Skip to content

Commit 93e9351

Browse files
committed
added suppourt for Irish
1 parent a50f19b commit 93e9351

2 files changed

Lines changed: 51 additions & 0 deletions

File tree

universalpython/languages/ga/__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+
"priontáil" : "print"
24+
"sinnó" : "elif"
25+
"" : "if"
26+
"seachas_sin" : "else"
27+
"nuair" : "while"
28+
"ag_gach" : "for"
29+
"sa" : "in"
30+
"ionchur" : "input"
31+
"bris" : "break"
32+
"scipeáil" : "continue"
33+
"imeacht_thart" : "pass"
34+
"Fíor" : "True"
35+
"Bréagach" : "False"
36+
"is" : "is"
37+
"aicme" : "class"
38+
"cur_síos" : "def"
39+
"__túsaigh__" : "__init__"
40+
"féin" : "self"
41+
"tabhair" : "return"
42+
"teagrhán": "string"
43+
"tgrn" : "str"
44+
"iarcheangail" : "append"
45+
"preab" : "pop"
46+
"agus" : "and"
47+
"" : "or"
48+
"gach" : "all"
49+
"aon" : "any"
50+
"Faic" : "None"
51+
"slánuimhir" : "int"

0 commit comments

Comments
 (0)