diff options
author | Alex Auvolat <alex@adnab.me> | 2018-09-01 16:07:22 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2018-09-01 16:07:22 +0200 |
commit | 81b5a844a2a155e28c497a8ce671eb5f02803e5d (patch) | |
tree | 15e878ebe47d5993e7af46a48a1ccdc1dd1e4b2f /shardweb/lib/shard_web/gettext.ex | |
parent | c6ec33d6e612168e14d77007915a4ea423c55a2e (diff) | |
download | shard-0.0.2.tar.gz shard-0.0.2.zip |
Import shardweb0.0.2
Diffstat (limited to 'shardweb/lib/shard_web/gettext.ex')
-rw-r--r-- | shardweb/lib/shard_web/gettext.ex | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/shardweb/lib/shard_web/gettext.ex b/shardweb/lib/shard_web/gettext.ex new file mode 100644 index 0000000..e74cd43 --- /dev/null +++ b/shardweb/lib/shard_web/gettext.ex @@ -0,0 +1,24 @@ +defmodule ShardWeb.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: + + import ShardWeb.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, otp_app: :shardweb +end |