67b906cc96
- Load the language files correctly when language is changed - Save user language in localstorage so that we can have it even if disconnected (but still load it from user settings eventually since user might be on a different device) - Load all locales from Cldr with Gettext - Fix pt-PT -> pt-BR - Clean some obsolete config.exs comments Later changes will allow to set the language without an account https://framagit.org/framasoft/mobilizon/-/issues/375 Signed-off-by: Thomas Citharel <tcit@tcit.fr>
30 lines
452 B
Elixir
30 lines
452 B
Elixir
defmodule Mobilizon.Cldr do
|
|
@moduledoc """
|
|
Module to define supported locales
|
|
"""
|
|
|
|
use Cldr,
|
|
locales: [
|
|
"ar",
|
|
"be",
|
|
"ca",
|
|
"cs",
|
|
"de",
|
|
"en",
|
|
"es",
|
|
"fi",
|
|
"fr",
|
|
"gl",
|
|
"it",
|
|
"ja",
|
|
"nl",
|
|
"oc",
|
|
"pl",
|
|
"pt",
|
|
"ru",
|
|
"sv"
|
|
],
|
|
gettext: Mobilizon.Web.Gettext,
|
|
providers: [Cldr.Number, Cldr.Calendar, Cldr.DateTime, Cldr.Language]
|
|
end
|