yiddish is right to left

merge-requests/30/head
Bob Mottram 2023-09-10 16:33:09 +01:00
parent 5825a0a4da
commit 4f79b4745e
1 changed files with 1 additions and 1 deletions

View File

@ -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