Compare commits
	
		
			2 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 3fac142454 | |||
| 14615ac107 | 
@@ -1,3 +1,7 @@
 | 
				
			|||||||
 | 
					# v0.9.16
 | 
				
			||||||
 | 
					- Fix bug with ammo type selector
 | 
				
			||||||
 | 
					- Add a row number column to all tables
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# v0.9.15
 | 
					# v0.9.15
 | 
				
			||||||
- Update deps
 | 
					- Update deps
 | 
				
			||||||
- Add better reverse proxy and database upgrade instructions
 | 
					- Add better reverse proxy and database upgrade instructions
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,6 +2,7 @@
 | 
				
			|||||||
  <table class="min-w-full table-auto text-center bg-white">
 | 
					  <table class="min-w-full table-auto text-center bg-white">
 | 
				
			||||||
    <thead class="border-b border-primary-600">
 | 
					    <thead class="border-b border-primary-600">
 | 
				
			||||||
      <tr>
 | 
					      <tr>
 | 
				
			||||||
 | 
					        <th class="p-2 w-12">{gettext("Row")}</th>
 | 
				
			||||||
        <%= for %{key: key, label: label} = column <- @columns do %>
 | 
					        <%= for %{key: key, label: label} = column <- @columns do %>
 | 
				
			||||||
          <%= if column |> Map.get(:sortable, true) do %>
 | 
					          <%= if column |> Map.get(:sortable, true) do %>
 | 
				
			||||||
            <th class={["p-2", column[:class]]}>
 | 
					            <th class={["p-2", column[:class]]}>
 | 
				
			||||||
@@ -38,6 +39,7 @@
 | 
				
			|||||||
        :for={{values, i} <- @rows |> Enum.with_index()}
 | 
					        :for={{values, i} <- @rows |> Enum.with_index()}
 | 
				
			||||||
        class={if i |> Integer.is_even(), do: @row_class, else: @alternate_row_class}
 | 
					        class={if i |> Integer.is_even(), do: @row_class, else: @alternate_row_class}
 | 
				
			||||||
      >
 | 
					      >
 | 
				
			||||||
 | 
					        <td class="p-2">{i + 1}</td>
 | 
				
			||||||
        <td :for={%{key: key} = value <- @columns} class={["p-2", value[:class]]}>
 | 
					        <td :for={%{key: key} = value <- @columns} class={["p-2", value[:class]]}>
 | 
				
			||||||
          <%= case values |> Map.get(key) do %>
 | 
					          <%= case values |> Map.get(key) do %>
 | 
				
			||||||
            <% {_custom_sort_value, value} -> %>
 | 
					            <% {_custom_sort_value, value} -> %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -46,7 +46,8 @@
 | 
				
			|||||||
      {select(f, :tag_id, tag_options(@tags, @container),
 | 
					      {select(f, :tag_id, tag_options(@tags, @container),
 | 
				
			||||||
        class: "text-center col-span-2 input input-primary",
 | 
					        class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
        id: "#{@id}-tag-select",
 | 
					        id: "#{@id}-tag-select",
 | 
				
			||||||
        phx_hook: "SlimSelect"
 | 
					        phx_hook: "SlimSelect",
 | 
				
			||||||
 | 
					        phx_update: :ignore
 | 
				
			||||||
      )}
 | 
					      )}
 | 
				
			||||||
      {error_tag(f, :tag_id, "col-span-3 text-center")}
 | 
					      {error_tag(f, :tag_id, "col-span-3 text-center")}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -38,7 +38,8 @@
 | 
				
			|||||||
    {select(f, :type_id, type_options(@types, @class),
 | 
					    {select(f, :type_id, type_options(@types, @class),
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary",
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
      id: "pack-form-type-select",
 | 
					      id: "pack-form-type-select",
 | 
				
			||||||
      phx_hook: "SlimSelect"
 | 
					      phx_hook: "SlimSelect",
 | 
				
			||||||
 | 
					      phx_update: :ignore
 | 
				
			||||||
    )}
 | 
					    )}
 | 
				
			||||||
    {error_tag(f, :type_id, "col-span-3 text-center")}
 | 
					    {error_tag(f, :type_id, "col-span-3 text-center")}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -85,7 +86,8 @@
 | 
				
			|||||||
    {select(f, :container_id, container_options(@containers),
 | 
					    {select(f, :container_id, container_options(@containers),
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary",
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
      id: "pack-form-container-select",
 | 
					      id: "pack-form-container-select",
 | 
				
			||||||
      phx_hook: "SlimSelect"
 | 
					      phx_hook: "SlimSelect",
 | 
				
			||||||
 | 
					      phx_update: :ignore
 | 
				
			||||||
    )}
 | 
					    )}
 | 
				
			||||||
    {error_tag(f, :container_id, "col-span-3 text-center")}
 | 
					    {error_tag(f, :container_id, "col-span-3 text-center")}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								mix.exs
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								mix.exs
									
									
									
									
									
								
							@@ -4,7 +4,7 @@ defmodule Cannery.MixProject do
 | 
				
			|||||||
  def project do
 | 
					  def project do
 | 
				
			||||||
    [
 | 
					    [
 | 
				
			||||||
      app: :cannery,
 | 
					      app: :cannery,
 | 
				
			||||||
      version: "0.9.15",
 | 
					      version: "0.9.16",
 | 
				
			||||||
      elixir: "1.18.4",
 | 
					      elixir: "1.18.4",
 | 
				
			||||||
      elixirc_paths: elixirc_paths(Mix.env()),
 | 
					      elixirc_paths: elixirc_paths(Mix.env()),
 | 
				
			||||||
      start_permanent: Mix.env() == :prod,
 | 
					      start_permanent: Mix.env() == :prod,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -118,7 +118,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -136,7 +136,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -173,7 +173,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,7 +131,7 @@ msgstr "Passwort zurücksetzen"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -149,7 +149,7 @@ msgstr "Anleitung zum Passwort zurücksetzen zusenden"
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr "Warum fügen Sie keine hinzu?"
 | 
					msgstr "Warum fügen Sie keine hinzu?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr "Hinzufügen"
 | 
					msgstr "Hinzufügen"
 | 
				
			||||||
@@ -186,7 +186,7 @@ msgstr "In die Zwischenablage kopieren"
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr "Zuerst einen Behälter hinzufügen"
 | 
					msgstr "Zuerst einen Behälter hinzufügen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr "Erstellen"
 | 
					msgstr "Erstellen"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,7 +86,7 @@ msgstr "Gehäusematerial"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Behälter"
 | 
					msgstr "Behälter"
 | 
				
			||||||
@@ -106,7 +106,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr "Korrosiv"
 | 
					msgstr "Korrosiv"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr "Anzahl"
 | 
					msgstr "Anzahl"
 | 
				
			||||||
@@ -280,7 +280,7 @@ msgstr "Keine Tags"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -305,7 +305,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr "Druck"
 | 
					msgstr "Druck"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr "Kaufpreis"
 | 
					msgstr "Kaufpreis"
 | 
				
			||||||
@@ -649,7 +649,7 @@ msgstr "Passwort zurücksetzen"
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr "Schüsse dokumentieren"
 | 
					msgstr "Schüsse dokumentieren"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Kopien"
 | 
					msgstr "Kopien"
 | 
				
			||||||
@@ -975,7 +975,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1433,7 +1433,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr "Art"
 | 
					msgstr "Art"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1457,3 +1457,8 @@ msgstr "Datum"
 | 
				
			|||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr "Kein Behälter"
 | 
					msgstr "Kein Behälter"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,7 +131,7 @@ msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -161,7 +161,7 @@ msgstr "%{name} erfolgreich hinzugefügt"
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr "%{tag_name} wurde von %{container_name} entfernt"
 | 
					msgstr "%{tag_name} wurde von %{container_name} entfernt"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr "Füge hinzu..."
 | 
					msgstr "Füge hinzu..."
 | 
				
			||||||
@@ -214,7 +214,7 @@ msgstr "%{name} erfolgreich entfernt"
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr "Sie müssen"
 | 
					msgstr "Sie müssen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Erstellen..."
 | 
					msgstr "Erstellen..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -82,7 +82,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -102,7 +102,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -276,7 +276,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -301,7 +301,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -643,7 +643,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -969,7 +969,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1416,7 +1416,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1440,3 +1440,8 @@ msgstr ""
 | 
				
			|||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -118,7 +118,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -136,7 +136,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -173,7 +173,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -82,7 +82,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -102,7 +102,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -276,7 +276,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -301,7 +301,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -643,7 +643,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -969,7 +969,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1416,7 +1416,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1440,3 +1440,8 @@ msgstr ""
 | 
				
			|||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -112,7 +112,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -140,7 +140,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -193,7 +193,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,7 +131,7 @@ msgstr "Resetear contraseña"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -149,7 +149,7 @@ msgstr "Enviar instrucciones para reestablecer contraseña"
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr "¿Por qué no añadir una?"
 | 
					msgstr "¿Por qué no añadir una?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr "Añadir"
 | 
					msgstr "Añadir"
 | 
				
			||||||
@@ -186,7 +186,7 @@ msgstr "Copiar al portapapeles"
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr "añade primero un contenedor"
 | 
					msgstr "añade primero un contenedor"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr "Crear"
 | 
					msgstr "Crear"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,7 +86,7 @@ msgstr "Material del casquillo"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Contenedor"
 | 
					msgstr "Contenedor"
 | 
				
			||||||
@@ -106,7 +106,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr "Corrosiva"
 | 
					msgstr "Corrosiva"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr "Cantidad"
 | 
					msgstr "Cantidad"
 | 
				
			||||||
@@ -280,7 +280,7 @@ msgstr "Sin etiquetas"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -305,7 +305,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr "Presión"
 | 
					msgstr "Presión"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr "Precio pagado"
 | 
					msgstr "Precio pagado"
 | 
				
			||||||
@@ -650,7 +650,7 @@ msgstr "Reestablecer contraseña"
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr "Tiros Récord"
 | 
					msgstr "Tiros Récord"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Copias"
 | 
					msgstr "Copias"
 | 
				
			||||||
@@ -977,7 +977,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr "Nunca usada"
 | 
					msgstr "Nunca usada"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr "Comprada en"
 | 
					msgstr "Comprada en"
 | 
				
			||||||
@@ -1435,7 +1435,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr "Tipo"
 | 
					msgstr "Tipo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1459,3 +1459,8 @@ msgstr "Fecha"
 | 
				
			|||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr "Sin contenedores"
 | 
					msgstr "Sin contenedores"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,7 +131,7 @@ msgstr "Por favor chequea el correo para verificar tu cuenta"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -160,7 +160,7 @@ msgstr "%{name} añadido exitosamente"
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr "se ha removido %{tag_name} de %{container_name}"
 | 
					msgstr "se ha removido %{tag_name} de %{container_name}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr "Añadiendo..."
 | 
					msgstr "Añadiendo..."
 | 
				
			||||||
@@ -213,7 +213,7 @@ msgstr "%{name} eliminado exitosamente"
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr "Necesitará hacerlo"
 | 
					msgstr "Necesitará hacerlo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Creando..."
 | 
					msgstr "Creando..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,7 +131,7 @@ msgstr "Réinitialisé le mot de passe"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -149,7 +149,7 @@ msgstr "Envoyer les instructions pour réinitialiser le mot de passe"
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr "Pourquoi pas en ajouter un ?"
 | 
					msgstr "Pourquoi pas en ajouter un ?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr "Ajouter"
 | 
					msgstr "Ajouter"
 | 
				
			||||||
@@ -186,7 +186,7 @@ msgstr "Copier dans le presse-papier"
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr "ajouter un conteneur en premier"
 | 
					msgstr "ajouter un conteneur en premier"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr "Créer"
 | 
					msgstr "Créer"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -86,7 +86,7 @@ msgstr "Matériau de la caisse"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Conteneur"
 | 
					msgstr "Conteneur"
 | 
				
			||||||
@@ -106,7 +106,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr "Corrosive"
 | 
					msgstr "Corrosive"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr "Quantité"
 | 
					msgstr "Quantité"
 | 
				
			||||||
@@ -280,7 +280,7 @@ msgstr "Aucun tag"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -305,7 +305,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr "Pression"
 | 
					msgstr "Pression"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr "Prix payé"
 | 
					msgstr "Prix payé"
 | 
				
			||||||
@@ -651,7 +651,7 @@ msgstr "Réinitialiser votre mot de passe"
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr "Enregistrer des tirs"
 | 
					msgstr "Enregistrer des tirs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Exemplaires"
 | 
					msgstr "Exemplaires"
 | 
				
			||||||
@@ -978,7 +978,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1436,7 +1436,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr "Type"
 | 
					msgstr "Type"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1460,3 +1460,8 @@ msgstr "Date"
 | 
				
			|||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr "Aucun conteneur"
 | 
					msgstr "Aucun conteneur"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -132,7 +132,7 @@ msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -162,7 +162,7 @@ msgstr "%{name} a été ajouté avec succès"
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr "%{tag_name} a été retiré de %{container_name}"
 | 
					msgstr "%{tag_name} a été retiré de %{container_name}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr "Ajout en cours…"
 | 
					msgstr "Ajout en cours…"
 | 
				
			||||||
@@ -215,7 +215,7 @@ msgstr "%{name} retiré avec succès"
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr "Vous aurez besoin de"
 | 
					msgstr "Vous aurez besoin de"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Création en cours…"
 | 
					msgstr "Création en cours…"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,7 +129,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -147,7 +147,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -184,7 +184,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -84,7 +84,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -104,7 +104,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -278,7 +278,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -303,7 +303,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -645,7 +645,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -971,7 +971,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1427,7 +1427,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1451,3 +1451,8 @@ msgstr ""
 | 
				
			|||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -123,7 +123,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -151,7 +151,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -204,7 +204,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,7 +129,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:110
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:112
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
@@ -147,7 +147,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -184,7 +184,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:103
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:105
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -93,7 +93,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -113,7 +113,7 @@ msgid "Corrosive"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -287,7 +287,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:80
 | 
					#: lib/cannery_web/live/pack_live/show.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -312,7 +312,7 @@ msgid "Pressure"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -654,7 +654,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:98
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -980,7 +980,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:68
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1427,7 +1427,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1451,3 +1451,8 @@ msgstr ""
 | 
				
			|||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "No containers staged"
 | 
					msgid "No containers staged"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#: lib/cannery_web/components/table_component.html.heex:5
 | 
				
			||||||
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
 | 
					msgid "Row"
 | 
				
			||||||
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -123,7 +123,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -151,7 +151,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -204,7 +204,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -112,7 +112,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:111
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:113
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:379
 | 
				
			||||||
@@ -140,7 +140,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -193,7 +193,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:104
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:106
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user