exmr/lib/exmr_web/gettext.ex

25 lines
725 B
Elixir
Raw Normal View History

2024-11-14 23:33:29 +02:00
defmodule ExmrWeb.Gettext do
@moduledoc """
A module providing Internationalization with a gettext-based API.
By using [Gettext](https://hexdocs.pm/gettext),
your module gains a set of macros for translations, for example:
2024-11-28 11:06:55 +02:00
use Gettext, backend: ExmrWeb.Gettext
2024-11-14 23:33:29 +02:00
# Simple translation
gettext("Here is the string to translate")
# Plural translation
ngettext("Here is the string to translate",
"Here are the strings to translate",
3)
# Domain-based translation
dgettext("errors", "Here is the error message to translate")
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
"""
2024-11-28 09:46:02 +02:00
use Gettext.Backend, otp_app: :exmr
2024-11-14 23:33:29 +02:00
end