exmr/lib/exmr_web/helpers.ex
Vladimir Rubin cf28aa5295
Some checks failed
Checks / check (pull_request) Failing after -6m26s
feat: add i18n
right not, the most of the app is translated, but there are some parts that are not translated yet, like the settings page.
2024-12-10 00:39:52 +02:00

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