Joao P Dubas 796bc056a4
All checks were successful
continuous-integration/drone/pr Build is passing
fix: adjust gettext usage
The new version of [`Gettext`][0] changed the way it's used, to avoid
large penalties when recompiling large projects.

[0]: https://github.com/elixir-gettext/gettext/blob/main/CHANGELOG.md#v0260
2024-10-02 11:23:15 +00:00

25 lines
734 B
Elixir

defmodule WabanexWeb.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: WabanexWeb.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: :wabanex
end