cannery/lib/cannery_web/gettext.ex
shibao 668e4c611b
Some checks failed
continuous-integration/drone/push Build is failing
update gettext schema and use macros for cannery app
2024-10-26 17:07:32 -04:00

25 lines
734 B
Elixir

defmodule CanneryWeb.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:
use Gettext, backend: CanneryWeb.Gettext
# 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.
"""
use Gettext.Backend, otp_app: :cannery
end