Fix stub module name

This commit is contained in:
Andrew Dryga
2023-06-26 13:37:33 -06:00
parent 19b892f719
commit dcb817167d

View File

@@ -1022,9 +1022,9 @@ defmodule Web.CoreComponents do
# with our gettext backend as first argument. Translations are
# available in the errors.po file (as we use the "errors" domain).
if count = opts[:count] do
Gettext.dngettext(TailwindtestWeb.Gettext, "errors", msg, msg, count, opts)
Gettext.dngettext(Web.Gettext, "errors", msg, msg, count, opts)
else
Gettext.dgettext(TailwindtestWeb.Gettext, "errors", msg, opts)
Gettext.dgettext(Web.Gettext, "errors", msg, opts)
end
end