forked from shibao/cannery
fix table component ids
This commit is contained in:
parent
49628cb9bb
commit
2179bd5d86
@ -1,3 +1,6 @@
|
|||||||
|
# v0.10.0
|
||||||
|
- Code quality fixes
|
||||||
|
|
||||||
# v0.9.3
|
# v0.9.3
|
||||||
- Update dependencies
|
- Update dependencies
|
||||||
- Add pack lot number to search
|
- Add pack lot number to search
|
||||||
|
@ -89,7 +89,7 @@ defmodule CanneryWeb.Components.MovePackComponent do
|
|||||||
<% else %>
|
<% else %>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.TableComponent}
|
module={CanneryWeb.Components.TableComponent}
|
||||||
id="move_pack_table"
|
id="move-pack-table"
|
||||||
columns={@columns}
|
columns={@columns}
|
||||||
rows={@rows}
|
rows={@rows}
|
||||||
/>
|
/>
|
||||||
|
@ -141,7 +141,12 @@ defmodule CanneryWeb.Components.PackTableComponent do
|
|||||||
def render(assigns) do
|
def render(assigns) do
|
||||||
~H"""
|
~H"""
|
||||||
<div id={@id} class="w-full">
|
<div id={@id} class="w-full">
|
||||||
<.live_component module={TableComponent} id={"table-#{@id}"} columns={@columns} rows={@rows} />
|
<.live_component
|
||||||
|
module={TableComponent}
|
||||||
|
id={"pack-table-#{@id}"}
|
||||||
|
columns={@columns}
|
||||||
|
rows={@rows}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
end
|
end
|
||||||
|
@ -74,7 +74,7 @@ defmodule CanneryWeb.Components.ShotRecordTableComponent do
|
|||||||
<div id={@id} class="w-full">
|
<div id={@id} class="w-full">
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.TableComponent}
|
module={CanneryWeb.Components.TableComponent}
|
||||||
id={"table-#{@id}"}
|
id={"shot-record-table-#{@id}"}
|
||||||
columns={@columns}
|
columns={@columns}
|
||||||
rows={@rows}
|
rows={@rows}
|
||||||
initial_key={:date}
|
initial_key={:date}
|
||||||
|
@ -192,7 +192,12 @@ defmodule CanneryWeb.Components.TypeTableComponent do
|
|||||||
def render(assigns) do
|
def render(assigns) do
|
||||||
~H"""
|
~H"""
|
||||||
<div id={@id} class="w-full">
|
<div id={@id} class="w-full">
|
||||||
<.live_component module={TableComponent} id={"table-#{@id}"} columns={@columns} rows={@rows} />
|
<.live_component
|
||||||
|
module={TableComponent}
|
||||||
|
id={"type-table-#{@id}"}
|
||||||
|
columns={@columns}
|
||||||
|
rows={@rows}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
"""
|
"""
|
||||||
end
|
end
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
<%= if @view_table do %>
|
<%= if @view_table do %>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.ContainerTableComponent}
|
module={CanneryWeb.Components.ContainerTableComponent}
|
||||||
id="containers_index_table"
|
id="containers-index-table"
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
containers={@containers}
|
containers={@containers}
|
||||||
current_user={@current_user}
|
current_user={@current_user}
|
||||||
|
@ -120,7 +120,7 @@
|
|||||||
<%= if @view_table do %>
|
<%= if @view_table do %>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.PackTableComponent}
|
module={CanneryWeb.Components.PackTableComponent}
|
||||||
id="type-show-table"
|
id="pack-show-table"
|
||||||
packs={@packs}
|
packs={@packs}
|
||||||
current_user={@current_user}
|
current_user={@current_user}
|
||||||
show_used={false}
|
show_used={false}
|
||||||
|
@ -115,7 +115,7 @@
|
|||||||
|
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.TableComponent}
|
module={CanneryWeb.Components.TableComponent}
|
||||||
id="pack_shot_records_table"
|
id="pack-shot-records-table"
|
||||||
columns={@columns}
|
columns={@columns}
|
||||||
rows={@rows}
|
rows={@rows}
|
||||||
/>
|
/>
|
||||||
|
@ -122,7 +122,7 @@
|
|||||||
<% else %>
|
<% else %>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.ShotRecordTableComponent}
|
module={CanneryWeb.Components.ShotRecordTableComponent}
|
||||||
id="shot_records_index_table"
|
id="shot-records-index-table"
|
||||||
shot_records={@shot_records}
|
shot_records={@shot_records}
|
||||||
current_user={@current_user}
|
current_user={@current_user}
|
||||||
>
|
>
|
||||||
|
@ -74,7 +74,7 @@
|
|||||||
<% else %>
|
<% else %>
|
||||||
<.live_component
|
<.live_component
|
||||||
module={CanneryWeb.Components.TypeTableComponent}
|
module={CanneryWeb.Components.TypeTableComponent}
|
||||||
id="types_index_table"
|
id="types-index-table"
|
||||||
action={@live_action}
|
action={@live_action}
|
||||||
types={@types}
|
types={@types}
|
||||||
current_user={@current_user}
|
current_user={@current_user}
|
||||||
|
@ -500,9 +500,9 @@ msgstr "Schießkladde"
|
|||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:176
|
#: lib/cannery_web/components/pack_table_component.ex:181
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:259
|
#: lib/cannery_web/components/pack_table_component.ex:264
|
||||||
#: lib/cannery_web/components/type_table_component.ex:260
|
#: lib/cannery_web/components/type_table_component.ex:265
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:150
|
#: lib/cannery_web/live/type_live/show.html.heex:150
|
||||||
@ -592,9 +592,9 @@ msgstr "Editiere %{name} Tags"
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr "Patronen:"
|
msgstr "Patronen:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:173
|
#: lib/cannery_web/components/pack_table_component.ex:178
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:255
|
#: lib/cannery_web/components/pack_table_component.ex:260
|
||||||
#: lib/cannery_web/components/type_table_component.ex:259
|
#: lib/cannery_web/components/type_table_component.ex:264
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:154
|
#: lib/cannery_web/live/type_live/show.html.heex:154
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
@ -780,7 +780,7 @@ msgstr "Behälter"
|
|||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:214
|
#: lib/cannery_web/components/pack_table_component.ex:219
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -957,7 +957,7 @@ msgid "Average CPR"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:263
|
#: lib/cannery_web/components/pack_table_component.ex:268
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -997,7 +997,7 @@ msgstr ""
|
|||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:194
|
#: lib/cannery_web/components/pack_table_component.ex:199
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -494,9 +494,9 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:176
|
#: lib/cannery_web/components/pack_table_component.ex:181
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:259
|
#: lib/cannery_web/components/pack_table_component.ex:264
|
||||||
#: lib/cannery_web/components/type_table_component.ex:260
|
#: lib/cannery_web/components/type_table_component.ex:265
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:150
|
#: lib/cannery_web/live/type_live/show.html.heex:150
|
||||||
@ -586,9 +586,9 @@ msgstr ""
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:173
|
#: lib/cannery_web/components/pack_table_component.ex:178
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:255
|
#: lib/cannery_web/components/pack_table_component.ex:260
|
||||||
#: lib/cannery_web/components/type_table_component.ex:259
|
#: lib/cannery_web/components/type_table_component.ex:264
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:154
|
#: lib/cannery_web/live/type_live/show.html.heex:154
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
@ -774,7 +774,7 @@ msgstr ""
|
|||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:214
|
#: lib/cannery_web/components/pack_table_component.ex:219
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -951,7 +951,7 @@ msgid "Average CPR"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:263
|
#: lib/cannery_web/components/pack_table_component.ex:268
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -991,7 +991,7 @@ msgstr ""
|
|||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:194
|
#: lib/cannery_web/components/pack_table_component.ex:199
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -494,9 +494,9 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:176
|
#: lib/cannery_web/components/pack_table_component.ex:181
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:259
|
#: lib/cannery_web/components/pack_table_component.ex:264
|
||||||
#: lib/cannery_web/components/type_table_component.ex:260
|
#: lib/cannery_web/components/type_table_component.ex:265
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:150
|
#: lib/cannery_web/live/type_live/show.html.heex:150
|
||||||
@ -586,9 +586,9 @@ msgstr ""
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:173
|
#: lib/cannery_web/components/pack_table_component.ex:178
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:255
|
#: lib/cannery_web/components/pack_table_component.ex:260
|
||||||
#: lib/cannery_web/components/type_table_component.ex:259
|
#: lib/cannery_web/components/type_table_component.ex:264
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:154
|
#: lib/cannery_web/live/type_live/show.html.heex:154
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
@ -774,7 +774,7 @@ msgstr ""
|
|||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:214
|
#: lib/cannery_web/components/pack_table_component.ex:219
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -951,7 +951,7 @@ msgid "Average CPR"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:263
|
#: lib/cannery_web/components/pack_table_component.ex:268
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -991,7 +991,7 @@ msgstr ""
|
|||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:194
|
#: lib/cannery_web/components/pack_table_component.ex:199
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -501,9 +501,9 @@ msgstr "Registro de tiros"
|
|||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:176
|
#: lib/cannery_web/components/pack_table_component.ex:181
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:259
|
#: lib/cannery_web/components/pack_table_component.ex:264
|
||||||
#: lib/cannery_web/components/type_table_component.ex:260
|
#: lib/cannery_web/components/type_table_component.ex:265
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:150
|
#: lib/cannery_web/live/type_live/show.html.heex:150
|
||||||
@ -593,9 +593,9 @@ msgstr "Editar etiquetas de %{name}"
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr "Balas:"
|
msgstr "Balas:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:173
|
#: lib/cannery_web/components/pack_table_component.ex:178
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:255
|
#: lib/cannery_web/components/pack_table_component.ex:260
|
||||||
#: lib/cannery_web/components/type_table_component.ex:259
|
#: lib/cannery_web/components/type_table_component.ex:264
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:154
|
#: lib/cannery_web/live/type_live/show.html.heex:154
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
@ -782,7 +782,7 @@ msgstr "Contenedor:"
|
|||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr "Mostrar usadas"
|
msgstr "Mostrar usadas"
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:214
|
#: lib/cannery_web/components/pack_table_component.ex:219
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -959,7 +959,7 @@ msgid "Average CPR"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:263
|
#: lib/cannery_web/components/pack_table_component.ex:268
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr "Vacio"
|
msgstr "Vacio"
|
||||||
@ -999,7 +999,7 @@ msgstr "Usada por última vez en"
|
|||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr "Usada por última vez en:"
|
msgstr "Usada por última vez en:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:194
|
#: lib/cannery_web/components/pack_table_component.ex:199
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr "Nunca usada"
|
msgstr "Nunca usada"
|
||||||
|
@ -502,9 +502,9 @@ msgstr "Évènements de tir"
|
|||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:176
|
#: lib/cannery_web/components/pack_table_component.ex:181
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:259
|
#: lib/cannery_web/components/pack_table_component.ex:264
|
||||||
#: lib/cannery_web/components/type_table_component.ex:260
|
#: lib/cannery_web/components/type_table_component.ex:265
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:150
|
#: lib/cannery_web/live/type_live/show.html.heex:150
|
||||||
@ -594,9 +594,9 @@ msgstr "Éditer les tags de %{name}"
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr "Cartouches :"
|
msgstr "Cartouches :"
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:173
|
#: lib/cannery_web/components/pack_table_component.ex:178
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:255
|
#: lib/cannery_web/components/pack_table_component.ex:260
|
||||||
#: lib/cannery_web/components/type_table_component.ex:259
|
#: lib/cannery_web/components/type_table_component.ex:264
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:154
|
#: lib/cannery_web/live/type_live/show.html.heex:154
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
@ -783,7 +783,7 @@ msgstr "Conteneur"
|
|||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:214
|
#: lib/cannery_web/components/pack_table_component.ex:219
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -960,7 +960,7 @@ msgid "Average CPR"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:263
|
#: lib/cannery_web/components/pack_table_component.ex:268
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1000,7 +1000,7 @@ msgstr ""
|
|||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:194
|
#: lib/cannery_web/components/pack_table_component.ex:199
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -496,9 +496,9 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:42
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:176
|
#: lib/cannery_web/components/pack_table_component.ex:181
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:259
|
#: lib/cannery_web/components/pack_table_component.ex:264
|
||||||
#: lib/cannery_web/components/type_table_component.ex:260
|
#: lib/cannery_web/components/type_table_component.ex:265
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
#: lib/cannery_web/live/pack_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
#: lib/cannery_web/live/pack_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:150
|
#: lib/cannery_web/live/type_live/show.html.heex:150
|
||||||
@ -588,9 +588,9 @@ msgstr ""
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:173
|
#: lib/cannery_web/components/pack_table_component.ex:178
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:255
|
#: lib/cannery_web/components/pack_table_component.ex:260
|
||||||
#: lib/cannery_web/components/type_table_component.ex:259
|
#: lib/cannery_web/components/type_table_component.ex:264
|
||||||
#: lib/cannery_web/live/type_live/show.html.heex:154
|
#: lib/cannery_web/live/type_live/show.html.heex:154
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
@ -776,7 +776,7 @@ msgstr ""
|
|||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:214
|
#: lib/cannery_web/components/pack_table_component.ex:219
|
||||||
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
#: lib/cannery_web/live/pack_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -953,7 +953,7 @@ msgid "Average CPR"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
#: lib/cannery_web/components/core_components/pack_card.html.heex:17
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:263
|
#: lib/cannery_web/components/pack_table_component.ex:268
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -993,7 +993,7 @@ msgstr ""
|
|||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/pack_table_component.ex:194
|
#: lib/cannery_web/components/pack_table_component.ex:199
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user