Commit ·
6a17dea
1
Parent(s): 0f92c05
Adding c = ts in hungarian
Browse files- hungarian.py +2 -2
hungarian.py
CHANGED
|
@@ -22,7 +22,6 @@ hungarian_dict = {
|
|
| 22 |
"ű" : "ю", "Ű" : "Ю",
|
| 23 |
"j" : "y", "J" : "Y",
|
| 24 |
"s" : "sh", "S": "Sh"
|
| 25 |
-
"ц" : "ts", "Ц": "Ts"
|
| 26 |
}
|
| 27 |
|
| 28 |
cyrillic_equiv_dict = {
|
|
@@ -32,7 +31,8 @@ cyrillic_equiv_dict = {
|
|
| 32 |
"ш" : "sh", "Ш" : "Sh",
|
| 33 |
"ј" : "j" , "Ј" : "J",
|
| 34 |
"ю" : "yu", "Ю" : "Yu",
|
| 35 |
-
"с" : "s" , "С" : "S"
|
|
|
|
| 36 |
}
|
| 37 |
|
| 38 |
def check_special_comb(word):
|
|
|
|
| 22 |
"ű" : "ю", "Ű" : "Ю",
|
| 23 |
"j" : "y", "J" : "Y",
|
| 24 |
"s" : "sh", "S": "Sh"
|
|
|
|
| 25 |
}
|
| 26 |
|
| 27 |
cyrillic_equiv_dict = {
|
|
|
|
| 31 |
"ш" : "sh", "Ш" : "Sh",
|
| 32 |
"ј" : "j" , "Ј" : "J",
|
| 33 |
"ю" : "yu", "Ю" : "Yu",
|
| 34 |
+
"с" : "s" , "С" : "S",
|
| 35 |
+
"ц" : "ts", "Ц": "Ts"
|
| 36 |
}
|
| 37 |
|
| 38 |
def check_special_comb(word):
|