This commit is contained in:
Tusooa Zhu 2022-03-03 09:40:18 -05:00
parent aca11fb70e
commit cd42e2bed0
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224
2 changed files with 6 additions and 3 deletions

View File

@ -58,7 +58,8 @@ defmodule Pleroma.Web.Gettext do
def ensure_fallbacks(locales) do
locales
|> Enum.flat_map(fn locale ->
others = other_supported_variants_of_locale(locale)
others =
other_supported_variants_of_locale(locale)
|> Enum.filter(fn l -> not Enum.member?(locales, l) end)
[locale] ++ others
@ -80,7 +81,7 @@ defmodule Pleroma.Web.Gettext do
end
end
def get_locales() do
def get_locales do
Process.get({Pleroma.Web.Gettext, :locales}, [])
end

View File

@ -87,7 +87,9 @@ defmodule Pleroma.Web.Plugs.SetLocalePlugTest do
|> SetLocalePlug.call([])
assert "zh_Hans" == Gettext.get_locale()
assert %{locale: "zh_Hans", locales: ["zh_Hans", "uk", "zh_Hant", "ru", "fr", "en"]} = conn.assigns
assert %{locale: "zh_Hans", locales: ["zh_Hans", "uk", "zh_Hant", "ru", "fr", "en"]} =
conn.assigns
end
test "fallback to some variant of the language if the unqualified language is not supported" do