fix missing gettexts
This commit is contained in:
		| @@ -9,7 +9,7 @@ | |||||||
|     action={Routes.user_confirmation_path(@conn, :create)} |     action={Routes.user_confirmation_path(@conn, :create)} | ||||||
|     class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center" |     class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center" | ||||||
|   > |   > | ||||||
|     <%= label(f, :email, class: "title text-lg text-primary-600") %> |     <%= label(f, :email, gettext("Email"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> |     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> | ||||||
|  |  | ||||||
|     <%= submit(dgettext("actions", "Resend confirmation instructions"), |     <%= submit(dgettext("actions", "Resend confirmation instructions"), | ||||||
|   | |||||||
| @@ -17,11 +17,11 @@ | |||||||
|       <%= hidden_input(f, :invite_token, value: @invite_token) %> |       <%= hidden_input(f, :invite_token, value: @invite_token) %> | ||||||
|     <% end %> |     <% end %> | ||||||
|  |  | ||||||
|     <%= label(f, :email, class: "title text-lg text-primary-600") %> |     <%= label(f, :email, gettext("Email"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> |     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> | ||||||
|     <%= error_tag(f, :email, "col-span-3") %> |     <%= error_tag(f, :email, "col-span-3") %> | ||||||
|  |  | ||||||
|     <%= label(f, :password, class: "title text-lg text-primary-600") %> |     <%= label(f, :password, gettext("Password"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= password_input(f, :password, required: true, class: "input input-primary col-span-2") %> |     <%= password_input(f, :password, required: true, class: "input input-primary col-span-2") %> | ||||||
|     <%= error_tag(f, :password, "col-span-3") %> |     <%= error_tag(f, :password, "col-span-3") %> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -13,11 +13,11 @@ | |||||||
|       <%= dgettext("errors", "Oops, something went wrong! Please check the errors below.") %> |       <%= dgettext("errors", "Oops, something went wrong! Please check the errors below.") %> | ||||||
|     </p> |     </p> | ||||||
|  |  | ||||||
|     <%= label(f, :password, "New password", class: "title text-lg text-primary-600") %> |     <%= label(f, :password, gettext("New password"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= password_input(f, :password, required: true, class: "input input-primary col-span-2") %> |     <%= password_input(f, :password, required: true, class: "input input-primary col-span-2") %> | ||||||
|     <%= error_tag(f, :password, "col-span-3") %> |     <%= error_tag(f, :password, "col-span-3") %> | ||||||
|  |  | ||||||
|     <%= label(f, :password_confirmation, "Confirm new password", |     <%= label(f, :password_confirmation, gettext("Confirm new password"), | ||||||
|       class: "title text-lg text-primary-600" |       class: "title text-lg text-primary-600" | ||||||
|     ) %> |     ) %> | ||||||
|     <%= password_input(f, :password_confirmation, |     <%= password_input(f, :password_confirmation, | ||||||
|   | |||||||
| @@ -9,7 +9,7 @@ | |||||||
|     action={Routes.user_reset_password_path(@conn, :create)} |     action={Routes.user_reset_password_path(@conn, :create)} | ||||||
|     class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center" |     class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center" | ||||||
|   > |   > | ||||||
|     <%= label(f, :email, class: "title text-lg text-primary-600") %> |     <%= label(f, :email, gettext("Email"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> |     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> | ||||||
|  |  | ||||||
|     <%= submit(dgettext("actions", "Send instructions to reset password"), |     <%= submit(dgettext("actions", "Send instructions to reset password"), | ||||||
|   | |||||||
| @@ -14,10 +14,10 @@ | |||||||
|       <%= @error_message %> |       <%= @error_message %> | ||||||
|     </p> |     </p> | ||||||
|  |  | ||||||
|     <%= label(f, :email, class: "title text-lg text-primary-600") %> |     <%= label(f, :email, gettext("Email"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> |     <%= email_input(f, :email, required: true, class: "input input-primary col-span-2") %> | ||||||
|  |  | ||||||
|     <%= label(f, :password, class: "title text-lg text-primary-600") %> |     <%= label(f, :password, gettext("Password"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= password_input(f, :password, required: true, class: "input input-primary col-span-2") %> |     <%= password_input(f, :password, required: true, class: "input input-primary col-span-2") %> | ||||||
|  |  | ||||||
|     <%= label(f, :remember_me, gettext("Keep me logged in for 60 days"), |     <%= label(f, :remember_me, gettext("Keep me logged in for 60 days"), | ||||||
|   | |||||||
| @@ -24,7 +24,7 @@ | |||||||
|  |  | ||||||
|     <%= hidden_input(f, :action, name: "action", value: "update_email") %> |     <%= hidden_input(f, :action, name: "action", value: "update_email") %> | ||||||
|  |  | ||||||
|     <%= label(f, :email, class: "title text-lg text-primary-600") %> |     <%= label(f, :email, gettext("Email"), class: "title text-lg text-primary-600") %> | ||||||
|     <%= email_input(f, :email, required: true, class: "mx-2 my-1 input input-primary col-span-2") %> |     <%= email_input(f, :email, required: true, class: "mx-2 my-1 input input-primary col-span-2") %> | ||||||
|     <%= error_tag(f, :email, "col-span-3") %> |     <%= error_tag(f, :email, "col-span-3") %> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -10,6 +10,7 @@ | |||||||
| msgid "" | msgid "" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_reset_password/edit.html.heex:20 | ||||||
| #: lib/lokal_web/templates/user_settings/edit.html.heex:76 | #: lib/lokal_web/templates/user_settings/edit.html.heex:76 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Confirm new password" | msgid "Confirm new password" | ||||||
| @@ -53,6 +54,7 @@ msgstr "" | |||||||
| msgid "Log in" | msgid "Log in" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_reset_password/edit.html.heex:16 | ||||||
| #: lib/lokal_web/templates/user_settings/edit.html.heex:69 | #: lib/lokal_web/templates/user_settings/edit.html.heex:69 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "New password" | msgid "New password" | ||||||
| @@ -283,3 +285,18 @@ msgstr "" | |||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Uses: %{uses_count}" | msgid "Uses: %{uses_count}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_confirmation/new.html.heex:12 | ||||||
|  | #: lib/lokal_web/templates/user_registration/new.html.heex:20 | ||||||
|  | #: lib/lokal_web/templates/user_reset_password/new.html.heex:12 | ||||||
|  | #: lib/lokal_web/templates/user_session/new.html.heex:17 | ||||||
|  | #: lib/lokal_web/templates/user_settings/edit.html.heex:27 | ||||||
|  | #, elixir-autogen, elixir-format | ||||||
|  | msgid "Email" | ||||||
|  | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_registration/new.html.heex:24 | ||||||
|  | #: lib/lokal_web/templates/user_session/new.html.heex:20 | ||||||
|  | #, elixir-autogen, elixir-format | ||||||
|  | msgid "Password" | ||||||
|  | msgstr "" | ||||||
|   | |||||||
| @@ -10,6 +10,7 @@ msgid "" | |||||||
| msgstr "" | msgstr "" | ||||||
| "Language: en\n" | "Language: en\n" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_reset_password/edit.html.heex:20 | ||||||
| #: lib/lokal_web/templates/user_settings/edit.html.heex:76 | #: lib/lokal_web/templates/user_settings/edit.html.heex:76 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Confirm new password" | msgid "Confirm new password" | ||||||
| @@ -53,6 +54,7 @@ msgstr "" | |||||||
| msgid "Log in" | msgid "Log in" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_reset_password/edit.html.heex:16 | ||||||
| #: lib/lokal_web/templates/user_settings/edit.html.heex:69 | #: lib/lokal_web/templates/user_settings/edit.html.heex:69 | ||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "New password" | msgid "New password" | ||||||
| @@ -283,3 +285,18 @@ msgstr "" | |||||||
| #, elixir-autogen, elixir-format | #, elixir-autogen, elixir-format | ||||||
| msgid "Uses: %{uses_count}" | msgid "Uses: %{uses_count}" | ||||||
| msgstr "" | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_confirmation/new.html.heex:12 | ||||||
|  | #: lib/lokal_web/templates/user_registration/new.html.heex:20 | ||||||
|  | #: lib/lokal_web/templates/user_reset_password/new.html.heex:12 | ||||||
|  | #: lib/lokal_web/templates/user_session/new.html.heex:17 | ||||||
|  | #: lib/lokal_web/templates/user_settings/edit.html.heex:27 | ||||||
|  | #, elixir-autogen, elixir-format | ||||||
|  | msgid "Email" | ||||||
|  | msgstr "" | ||||||
|  |  | ||||||
|  | #: lib/lokal_web/templates/user_registration/new.html.heex:24 | ||||||
|  | #: lib/lokal_web/templates/user_session/new.html.heex:20 | ||||||
|  | #, elixir-autogen, elixir-format | ||||||
|  | msgid "Password" | ||||||
|  | msgstr "" | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user