[i18n] Fix Arabic translations (#9857)

They were still on the old ar_AA, notified in <https://github.com/koreader/koreader/pull/9822#issuecomment-1335439759>.
This commit is contained in:
Frans de Jonge
2022-12-02 18:39:47 +01:00
committed by GitHub
parent 02c9f26f6c
commit b5e7ade880
5 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ end
local lang_locale = G_reader_settings:readSetting("language")
-- Allow quick switching to Arabic for testing RTL/UI mirroring
if os.getenv("KO_RTL") then lang_locale = "ar_AA" end
if os.getenv("KO_RTL") then lang_locale = "ar" end
local _ = require("gettext")
if lang_locale then
_.changeLang(lang_locale)