add more text replacements

This commit is contained in:
2023-03-30 21:38:56 -04:00
parent bdddf65685
commit e0e7b25bc4
15 changed files with 59 additions and 59 deletions

View File

@ -6,7 +6,7 @@
<.form
:let={f}
for={@changeset}
id="shot-group-form"
id="shot-record-form"
class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center"
phx-target={@myself}
phx-change="validate"
@ -29,7 +29,7 @@
<button
type="button"
class="mx-2 my-1 text-sm btn btn-primary"
phx-click={JS.dispatch("cannery:set-zero", to: "#shot-group-form_ammo_left")}
phx-click={JS.dispatch("cannery:set-zero", to: "#shot-record-form_ammo_left")}
>
<%= gettext("Used up!") %>
</button>
@ -37,7 +37,7 @@
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
<%= textarea(f, :notes,
id: "add-shot-group-form-notes",
id: "add-shot-record-form-notes",
class: "input input-primary col-span-2",
maxlength: 255,
placeholder: gettext("Really great weather"),

View File

@ -49,7 +49,7 @@
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
<%= textarea(f, :notes,
id: "ammo-group-form-notes",
id: "pack-form-notes",
class: "text-center col-span-2 input input-primary",
phx_hook: "MaintainAttrs",
phx_update: "ignore"

View File

@ -97,7 +97,7 @@
<% else %>
<.live_component
module={CanneryWeb.Components.PackTableComponent}
id="ammo-group-index-table"
id="pack-index-table"
packs={@packs}
current_user={@current_user}
show_used={@show_used}

View File

@ -39,7 +39,7 @@ defmodule CanneryWeb.PackLive.Show do
end
defp page_title(:add_shot_record), do: gettext("Record Shots")
defp page_title(:edit_shot_record), do: gettext("Edit Shot Records")
defp page_title(:edit_shot_record), do: gettext("Edit Shot Record")
defp page_title(:move), do: gettext("Move Ammo")
defp page_title(:show), do: gettext("Show Ammo")
defp page_title(:edit), do: gettext("Edit Ammo")

View File

@ -6,7 +6,7 @@
<.form
:let={f}
for={@changeset}
id="shot-group-form"
id="shot-record-form"
class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center"
phx-target={@myself}
phx-change="validate"
@ -29,7 +29,7 @@
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
<%= textarea(f, :notes,
id: "shot-group-form-notes",
id: "shot-record-form-notes",
class: "input input-primary col-span-2",
maxlength: 255,
placeholder: gettext("Really great weather"),

View File

@ -37,7 +37,7 @@ defmodule CanneryWeb.RangeLive.Index do
defp apply_action(%{assigns: %{current_user: current_user}} = socket, :edit, %{"id" => id}) do
socket
|> assign(
page_title: gettext("Edit Shot Records"),
page_title: gettext("Edit Shot Record"),
shot_record: ActivityLog.get_shot_record!(id, current_user)
)
end