summaryrefslogtreecommitdiff
path: root/lib/silmataivas_web/gettext.ex
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-14 19:34:59 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-14 19:34:59 +0300
commit50ce8cb96b2b218751c2fc2a6b19372f51846acc (patch)
treee2c634d2ce856062d527667d47815a05a53361c8 /lib/silmataivas_web/gettext.ex
parent0ab2e5ba2b0631b28b5b1405559237b3913c878f (diff)
feat: rewrite in rust
Diffstat (limited to 'lib/silmataivas_web/gettext.ex')
-rw-r--r--lib/silmataivas_web/gettext.ex25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/silmataivas_web/gettext.ex b/lib/silmataivas_web/gettext.ex
deleted file mode 100644
index a494c80..0000000
--- a/lib/silmataivas_web/gettext.ex
+++ /dev/null
@@ -1,25 +0,0 @@
-defmodule SilmataivasWeb.Gettext do
- @moduledoc """
- A module providing Internationalization with a gettext-based API.
-
- By using [Gettext](https://hexdocs.pm/gettext), your module compiles translations
- that you can use in your application. To use this Gettext backend module,
- call `use Gettext` and pass it as an option:
-
- use Gettext, backend: SilmataivasWeb.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: :silmataivas
-end