Vladimir Rubin
cf28aa5295
Some checks failed
Checks / check (pull_request) Failing after -6m26s
right not, the most of the app is translated, but there are some parts that are not translated yet, like the settings page.
7 lines
187 B
Elixir
7 lines
187 B
Elixir
defmodule ExmrWeb.LiveHelpers do
|
|
def on_mount(:default, _params, session, socket) do
|
|
locale = session["locale"] || "en"
|
|
Gettext.put_locale(locale)
|
|
{:cont, socket}
|
|
end
|
|
end
|