diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | searx/data/locales.json | 2 | ||||
-rwxr-xr-x[-rw-r--r--] | searxng_extra/update/update_locales.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -75,7 +75,7 @@ test.shell: # wrap ./manage script MANAGE += weblate.translations.commit weblate.push.translations -MANAGE += data.all data.traits data.useragents +MANAGE += data.all data.traits data.useragents data.locales MANAGE += docs.html docs.live docs.gh-pages docs.prebuild docs.clean MANAGE += docker.build docker.push docker.buildx MANAGE += gecko.driver diff --git a/searx/data/locales.json b/searx/data/locales.json index cb45b1601..1b3a69539 100644 --- a/searx/data/locales.json +++ b/searx/data/locales.json @@ -62,8 +62,8 @@ "zh-Hant-TW": "中文, 台灣 (Chinese, Taiwan)" }, "RTL_LOCALES": [ - "fa-IR", "ar", + "fa-IR", "he" ] }
\ No newline at end of file diff --git a/searxng_extra/update/update_locales.py b/searxng_extra/update/update_locales.py index e823ebaf1..d97a5dd88 100644..100755 --- a/searxng_extra/update/update_locales.py +++ b/searxng_extra/update/update_locales.py @@ -58,7 +58,7 @@ def main(): content = { "LOCALE_NAMES": LOCALE_NAMES, - "RTL_LOCALES": list(RTL_LOCALES), + "RTL_LOCALES": sorted(RTL_LOCALES), } with open(LOCALE_DATA_FILE, 'w', encoding='utf-8') as f: |