open-pod/lib/openpod_web/gettext.ex

25 lines
711 B
Elixir
Raw Normal View History

2020-06-08 23:37:11 +02:00
defmodule OpenpodWeb.Gettext do
2020-05-22 22:04:15 +02:00
@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:
2020-06-08 23:37:11 +02:00
import OpenpodWeb.Gettext
2020-05-22 22:04:15 +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.
"""
2020-06-08 23:37:11 +02:00
use Gettext, otp_app: :openpod
2020-05-22 22:04:15 +02:00
end