From 30fe4690d55b6d4862c93667b9499587aa3610c8 Mon Sep 17 00:00:00 2001 From: BradS2S <98615997+BradS2S@users.noreply.github.com> Date: Fri, 6 Dec 2024 00:05:09 -0700 Subject: [PATCH] Fix a typo in the docs (#405) Co-authored-by: Brad Hanks --- lib/gettext.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/gettext.ex b/lib/gettext.ex index 64f713c..b2eea3d 100644 --- a/lib/gettext.ex +++ b/lib/gettext.ex @@ -30,7 +30,7 @@ defmodule Gettext do means they only contain message IDs, and not actual translated strings. POT files have entries like this: - #: lib/myapp_web/live/hello_live.html.heex:2 + #: lib/my_app_web/live/hello_live.html.heex:2 #, elixir-autogen, elixir-format msgid "Hello world" msgstr "" @@ -40,7 +40,7 @@ defmodule Gettext do Entries in PO files contain translations for their specific locale. For example, in a PO file for Italian, the entry above would look like this: - #: lib/myapp_web/live/hello_live.html.heex:2 + #: lib/my_app_web/live/hello_live.html.heex:2 #, elixir-autogen, elixir-format msgid "Hello world" msgstr "Ciao mondo"