From 74c2b977503aac003bbf8270190eac86dda7d427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Ba=C3=B1ados=20Schwerter?= Date: Sun, 18 Aug 2024 22:37:59 +0000 Subject: [PATCH] Temporary solution for #1186 - Syllabics library can't deal with accented y yet --- src/CreeDictionary/CreeDictionary/orthography.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CreeDictionary/CreeDictionary/orthography.py b/src/CreeDictionary/CreeDictionary/orthography.py index e4befd11b..22610e110 100644 --- a/src/CreeDictionary/CreeDictionary/orthography.py +++ b/src/CreeDictionary/CreeDictionary/orthography.py @@ -37,4 +37,4 @@ def to_syllabics(sro_circumflex: str) -> str: Transliterate SRO to syllabics. """ # Get rid of - after prefixes, like nôhte-/ᓄᐦᑌ - return sro2syllabics(sro_circumflex).rstrip("-") + return sro2syllabics(to_y(sro_circumflex)).rstrip("-")