diff --git a/utils.py b/utils.py index bbd1644ca..a0bc146e6 100644 --- a/utils.py +++ b/utils.py @@ -4536,7 +4536,7 @@ def ap_proxy_type(json_object: {}) -> str: def language_right_to_left(language: str) -> bool: """is the given language written from right to left? """ - rtl_languages = ('ar', 'fa', 'he') + rtl_languages = ('ar', 'fa', 'he', 'yi') if language in rtl_languages: return True return False