Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved transliteration for Greek #77

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public void SetUp()
[TestCase("Ἀίγυπτος", "Aígyptos")]
[TestCase("Ᾰκρόπολις", "Akrópolis")]
[TestCase("Ἀλεξάνδρεια", "Alexándreia")]
[TestCase("Αλμυρός Μαγνησίας", "Almyrós Magnēsías")]
[TestCase("Ἁμανός", "Amanós")]
[TestCase("Ἄνδρος", "Ándros")]
[TestCase("Ἀντιόχεια τῆς Μυγδονίας", "Antiókheia tês Mygdonías")]
Expand Down Expand Up @@ -150,7 +151,7 @@ public void GivenATextInAncientGreekDoricScript_WhenTransliteratingIntoLatin_The
[TestCase("Αθήνα", "Athī́na")]
[TestCase("Αιγάλεω", "Aigáleō")]
[TestCase("Αχαρνές", "Acharnés")]
[TestCase("Βόλος", "Vόlos")]
[TestCase("Βόλος", "Vólos")]
[TestCase("Βύρωνας", "Výrōnas")]
[TestCase("Γλυφάδα", "Glyfáda")]
[TestCase("Εύοσμος", "Ev́osmos")]
Expand All @@ -162,15 +163,15 @@ public void GivenATextInAncientGreekDoricScript_WhenTransliteratingIntoLatin_The
[TestCase("Ιωάννινα", "Iōánnina")]
[TestCase("Καλαμαριά", "Kalamariá")]
[TestCase("Καλλιθέα", "Kallithéa")]
[TestCase("Κορυδαλλός", "Korydallόs")]
[TestCase("Κορυδαλλός", "Korydallós")]
[TestCase("Λάρισα", "Lárisa")]
[TestCase("Μαρούσι", "Maroúsi")]
[TestCase("Μενίδι", "Menídi")]
[TestCase("Νέα Ιωνία", "Néa Iōnía")]
[TestCase("Νέα Σμύρνη", "Néa Smýrnī")]
[TestCase("Νίκαια", "Níkaia")]
[TestCase("Νοβιόδοῦνος", "Noviόdounos")]
[TestCase("Παλαιό Φάληρο", "Palaiό Fálīro")]
[TestCase("Νοβιόδοῦνος", "Noviódounos")]
[TestCase("Παλαιό Φάληρο", "Palaió Fálīro")]
[TestCase("Πάτρα", "Pátra")]
[TestCase("Πειραιάς", "Peiraiás")]
[TestCase("Περιστέρι", "Peristéri")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ public GreekTransliterator()
{ "ν", "n" },
{ "ξ", "x" },
{ "ο", "o" },
{ "ό", "ó" },
{ "π", "p" },
{ "ρ", "r" },
{ "σ", "s" },
Expand Down
Loading