forked from shibao/cannery
		
	make bullet type rifle/pistol type-only field
This commit is contained in:
		@@ -3,6 +3,7 @@
 | 
				
			|||||||
- Don't show price paid and lot number columns when displaying packs if not used
 | 
					- Don't show price paid and lot number columns when displaying packs if not used
 | 
				
			||||||
- Fix additional shotgun fields not being exportable
 | 
					- Fix additional shotgun fields not being exportable
 | 
				
			||||||
- Fixes duplicate chamber size column for ammo types
 | 
					- Fixes duplicate chamber size column for ammo types
 | 
				
			||||||
 | 
					- Hide bullet type field when editing/creating shotgun ammo types
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# v0.9.1
 | 
					# v0.9.1
 | 
				
			||||||
- Rename ammo type's "type" to "class" to avoid confusion
 | 
					- Rename ammo type's "type" to "class" to avoid confusion
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -55,8 +55,6 @@ defmodule Cannery.Ammo.Type do
 | 
				
			|||||||
    field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol]
 | 
					    field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # common fields
 | 
					    # common fields
 | 
				
			||||||
    # https://shootersreference.com/reloadingdata/bullet_abbreviations/
 | 
					 | 
				
			||||||
    field :bullet_type, :string
 | 
					 | 
				
			||||||
    field :bullet_core, :string
 | 
					    field :bullet_core, :string
 | 
				
			||||||
    # also gauge for shotguns
 | 
					    # also gauge for shotguns
 | 
				
			||||||
    field :caliber, :string
 | 
					    field :caliber, :string
 | 
				
			||||||
@@ -75,6 +73,8 @@ defmodule Cannery.Ammo.Type do
 | 
				
			|||||||
    field :corrosive, :boolean, default: false
 | 
					    field :corrosive, :boolean, default: false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # rifle/pistol fields
 | 
					    # rifle/pistol fields
 | 
				
			||||||
 | 
					    # https://shootersreference.com/reloadingdata/bullet_abbreviations/
 | 
				
			||||||
 | 
					    field :bullet_type, :string
 | 
				
			||||||
    field :cartridge, :string
 | 
					    field :cartridge, :string
 | 
				
			||||||
    field :jacket_type, :string
 | 
					    field :jacket_type, :string
 | 
				
			||||||
    field :powder_grains_per_charge, :integer
 | 
					    field :powder_grains_per_charge, :integer
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -117,24 +117,28 @@
 | 
				
			|||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :grains, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :grains, "col-span-3 text-center") %>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <%= label f, :bullet_type, class: "flex title text-lg text-primary-600 space-x-2" do %>
 | 
					    <%= if Changeset.get_field(@changeset, :class) in [:rifle, :pistol] do %>
 | 
				
			||||||
      <p><%= gettext("Bullet type") %></p>
 | 
					      <%= label f, :bullet_type, class: "flex title text-lg text-primary-600 space-x-2" do %>
 | 
				
			||||||
 | 
					        <p><%= gettext("Bullet type") %></p>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      <.link
 | 
					        <.link
 | 
				
			||||||
        href="https://shootersreference.com/reloadingdata/bullet_abbreviations/"
 | 
					          href="https://shootersreference.com/reloadingdata/bullet_abbreviations/"
 | 
				
			||||||
        class="link"
 | 
					          class="link"
 | 
				
			||||||
        target="_blank"
 | 
					          target="_blank"
 | 
				
			||||||
        rel="noopener noreferrer"
 | 
					          rel="noopener noreferrer"
 | 
				
			||||||
      >
 | 
					        >
 | 
				
			||||||
        <i class="fas fa-md fa-external-link-alt"></i>
 | 
					          <i class="fas fa-md fa-external-link-alt"></i>
 | 
				
			||||||
      </.link>
 | 
					        </.link>
 | 
				
			||||||
 | 
					      <% end %>
 | 
				
			||||||
 | 
					      <%= text_input(f, :bullet_type,
 | 
				
			||||||
 | 
					        class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
 | 
					        maxlength: 255,
 | 
				
			||||||
 | 
					        placeholder: gettext("FMJ")
 | 
				
			||||||
 | 
					      ) %>
 | 
				
			||||||
 | 
					      <%= error_tag(f, :bullet_type, "col-span-3 text-center") %>
 | 
				
			||||||
 | 
					    <% else %>
 | 
				
			||||||
 | 
					      <%= hidden_input(f, :bullet_type, value: nil) %>
 | 
				
			||||||
    <% end %>
 | 
					    <% end %>
 | 
				
			||||||
    <%= text_input(f, :bullet_type,
 | 
					 | 
				
			||||||
      class: "text-center col-span-2 input input-primary",
 | 
					 | 
				
			||||||
      maxlength: 255,
 | 
					 | 
				
			||||||
      placeholder: gettext("FMJ")
 | 
					 | 
				
			||||||
    ) %>
 | 
					 | 
				
			||||||
    <%= error_tag(f, :bullet_type, "col-span-3 text-center") %>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <%= label(
 | 
					    <%= label(
 | 
				
			||||||
      f,
 | 
					      f,
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -121,7 +121,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: 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:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ msgstr "Passwort zurücksetzen"
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: 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:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Speichern"
 | 
					msgstr "Speichern"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,24 +44,24 @@ msgid "Background color"
 | 
				
			|||||||
msgstr "Hintergrundfarbe"
 | 
					msgstr "Hintergrundfarbe"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr "Knallpatrone"
 | 
					msgstr "Knallpatrone"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr "Messing"
 | 
					msgstr "Messing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:144
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr "Projektilkern"
 | 
					msgstr "Projektilkern"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr "Patronenart"
 | 
					msgstr "Patronenart"
 | 
				
			||||||
@@ -79,7 +79,7 @@ msgid "Cartridge"
 | 
				
			|||||||
msgstr "Patrone"
 | 
					msgstr "Patrone"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr "Gehäusematerial"
 | 
					msgstr "Gehäusematerial"
 | 
				
			||||||
@@ -100,7 +100,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr "Behälter"
 | 
					msgstr "Behälter"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Korrosiv"
 | 
					msgstr "Korrosiv"
 | 
				
			||||||
@@ -145,7 +145,7 @@ msgstr "Einladung bearbeiten"
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr "Tag bearbeiten"
 | 
					msgstr "Tag bearbeiten"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr "VM"
 | 
					msgstr "VM"
 | 
				
			||||||
@@ -157,7 +157,7 @@ msgid "Grains"
 | 
				
			|||||||
msgstr "Körner"
 | 
					msgstr "Körner"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Brandmunition"
 | 
					msgstr "Brandmunition"
 | 
				
			||||||
@@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
					msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Hersteller"
 | 
					msgstr "Hersteller"
 | 
				
			||||||
@@ -299,7 +299,7 @@ msgid "On the bookshelf"
 | 
				
			|||||||
msgstr "Auf dem Bücherregal"
 | 
					msgstr "Auf dem Bücherregal"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:257
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Druck"
 | 
					msgstr "Druck"
 | 
				
			||||||
@@ -316,7 +316,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr "Kaufpreis:"
 | 
					msgstr "Kaufpreis:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr "Zündertyp"
 | 
					msgstr "Zündertyp"
 | 
				
			||||||
@@ -349,7 +349,7 @@ msgstr "Einstellungen"
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr "Einfach:"
 | 
					msgstr "Einfach:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr "Stahl"
 | 
					msgstr "Stahl"
 | 
				
			||||||
@@ -384,7 +384,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
 | 
					msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Leuchtspur"
 | 
					msgstr "Leuchtspur"
 | 
				
			||||||
@@ -510,36 +510,36 @@ msgstr "Schießkladde"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "$%{amount}"
 | 
					msgstr "$%{amount}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr "Bimetall"
 | 
					msgstr "Bimetall"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:156
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr "Patronenhülse"
 | 
					msgstr "Patronenhülse"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:279
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr "Mündungsgeschwindigkeit"
 | 
					msgstr "Mündungsgeschwindigkeit"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:244
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr "Pulverkörner pro Ladung"
 | 
					msgstr "Pulverkörner pro Ladung"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr "Pulverart"
 | 
					msgstr "Pulverart"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr "UPC"
 | 
					msgstr "UPC"
 | 
				
			||||||
@@ -563,7 +563,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr "Neues Passwort"
 | 
					msgstr "Neues Passwort"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Patronenhülsenform"
 | 
					msgstr "Patronenhülsenform"
 | 
				
			||||||
@@ -1148,7 +1148,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1163,12 +1163,12 @@ msgstr ""
 | 
				
			|||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1218,7 +1218,7 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:313
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1251,7 +1251,7 @@ msgid "Dimensions"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:266
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1273,7 +1273,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:207
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1303,12 +1303,12 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:233
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr "Pulverart"
 | 
					msgstr "Pulverart"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr "Zündertyp"
 | 
					msgstr "Zündertyp"
 | 
				
			||||||
@@ -1329,7 +1329,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:215
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1340,7 +1340,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1351,7 +1351,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Schüsse abgegeben"
 | 
					msgstr "Schüsse abgegeben"
 | 
				
			||||||
@@ -1362,7 +1362,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr "Schüsse abgegeben"
 | 
					msgstr "Schüsse abgegeben"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:183
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1383,12 +1383,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:143
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1405,7 +1405,7 @@ msgid "Unfired shell length"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
				
			||||||
#: 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:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:351
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Speichere..."
 | 
					msgstr "Speichere..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,24 +40,24 @@ msgid "Background color"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:144
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -75,7 +75,7 @@ msgid "Cartridge"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -96,7 +96,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -141,7 +141,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -153,7 +153,7 @@ msgid "Grains"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -295,7 +295,7 @@ msgid "On the bookshelf"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:257
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -312,7 +312,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -343,7 +343,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -378,7 +378,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -504,36 +504,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:156
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:279
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:244
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -557,7 +557,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1131,7 +1131,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1146,12 +1146,12 @@ msgstr ""
 | 
				
			|||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1201,7 +1201,7 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:313
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1234,7 +1234,7 @@ msgid "Dimensions"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:266
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1256,7 +1256,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:207
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1286,12 +1286,12 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:233
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1312,7 +1312,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:215
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1323,7 +1323,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1334,7 +1334,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1345,7 +1345,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:183
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1366,12 +1366,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:143
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1388,7 +1388,7 @@ msgid "Unfired shell length"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -121,7 +121,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: 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:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,24 +40,24 @@ msgid "Background color"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:144
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -75,7 +75,7 @@ msgid "Cartridge"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -96,7 +96,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -141,7 +141,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -153,7 +153,7 @@ msgid "Grains"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -295,7 +295,7 @@ msgid "On the bookshelf"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:257
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -312,7 +312,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -343,7 +343,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -378,7 +378,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -504,36 +504,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:156
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:279
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:244
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -557,7 +557,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1131,7 +1131,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1146,12 +1146,12 @@ msgstr ""
 | 
				
			|||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1201,7 +1201,7 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:313
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1234,7 +1234,7 @@ msgid "Dimensions"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:266
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1256,7 +1256,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:207
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1286,12 +1286,12 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:233
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1312,7 +1312,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:215
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1323,7 +1323,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1334,7 +1334,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1345,7 +1345,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:183
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1366,12 +1366,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:143
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1388,7 +1388,7 @@ msgid "Unfired shell length"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,7 +115,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
				
			||||||
#: 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:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:351
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ msgstr "Resetear contraseña"
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: 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:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Guardar"
 | 
					msgstr "Guardar"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,24 +44,24 @@ msgid "Background color"
 | 
				
			|||||||
msgstr "Color de fondo"
 | 
					msgstr "Color de fondo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr "Fogueo"
 | 
					msgstr "Fogueo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr "Latón"
 | 
					msgstr "Latón"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:144
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr "Núcleo de bala"
 | 
					msgstr "Núcleo de bala"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr "Tipo de bala"
 | 
					msgstr "Tipo de bala"
 | 
				
			||||||
@@ -79,7 +79,7 @@ msgid "Cartridge"
 | 
				
			|||||||
msgstr "Cartucho"
 | 
					msgstr "Cartucho"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr "Material del casquillo"
 | 
					msgstr "Material del casquillo"
 | 
				
			||||||
@@ -100,7 +100,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr "Contenedores"
 | 
					msgstr "Contenedores"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Corrosiva"
 | 
					msgstr "Corrosiva"
 | 
				
			||||||
@@ -145,7 +145,7 @@ msgstr "Editar Invitación"
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr "Editar Etiqueta"
 | 
					msgstr "Editar Etiqueta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr "Bala encamisada"
 | 
					msgstr "Bala encamisada"
 | 
				
			||||||
@@ -157,7 +157,7 @@ msgid "Grains"
 | 
				
			|||||||
msgstr "Grano"
 | 
					msgstr "Grano"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Incendiaria"
 | 
					msgstr "Incendiaria"
 | 
				
			||||||
@@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
					msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Fabricante"
 | 
					msgstr "Fabricante"
 | 
				
			||||||
@@ -299,7 +299,7 @@ msgid "On the bookshelf"
 | 
				
			|||||||
msgstr "En la estantería"
 | 
					msgstr "En la estantería"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:257
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Presión"
 | 
					msgstr "Presión"
 | 
				
			||||||
@@ -316,7 +316,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr "Precio pagado:"
 | 
					msgstr "Precio pagado:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr "Tipo de espoleta"
 | 
					msgstr "Tipo de espoleta"
 | 
				
			||||||
@@ -349,7 +349,7 @@ msgstr "Ajustes"
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr "Simple:"
 | 
					msgstr "Simple:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr "Acero"
 | 
					msgstr "Acero"
 | 
				
			||||||
@@ -385,7 +385,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr "La página de seguimiento de armas autogestionada"
 | 
					msgstr "La página de seguimiento de armas autogestionada"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Trazadora"
 | 
					msgstr "Trazadora"
 | 
				
			||||||
@@ -511,36 +511,36 @@ msgstr "Registro de tiros"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "$%{amount}"
 | 
					msgstr "$%{amount}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr "Bimetal"
 | 
					msgstr "Bimetal"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:156
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr "Tipo de camisa"
 | 
					msgstr "Tipo de camisa"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:279
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr "Velocidad de boca"
 | 
					msgstr "Velocidad de boca"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:244
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr "Granos de polvora por carga"
 | 
					msgstr "Granos de polvora por carga"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr "Tipo de polvora"
 | 
					msgstr "Tipo de polvora"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -564,7 +564,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr "Nueva contraseña"
 | 
					msgstr "Nueva contraseña"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Tipo de fuego"
 | 
					msgstr "Tipo de fuego"
 | 
				
			||||||
@@ -1150,7 +1150,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1165,12 +1165,12 @@ msgstr ""
 | 
				
			|||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1220,7 +1220,7 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:313
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1253,7 +1253,7 @@ msgid "Dimensions"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:266
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1275,7 +1275,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:207
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1305,12 +1305,12 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:233
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr "Tipo de polvora"
 | 
					msgstr "Tipo de polvora"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr "Tipo de espoleta"
 | 
					msgstr "Tipo de espoleta"
 | 
				
			||||||
@@ -1331,7 +1331,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:215
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1342,7 +1342,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1353,7 +1353,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Tiros disparados"
 | 
					msgstr "Tiros disparados"
 | 
				
			||||||
@@ -1364,7 +1364,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr "Tiros disparados"
 | 
					msgstr "Tiros disparados"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:183
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1385,12 +1385,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:143
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1407,7 +1407,7 @@ msgid "Unfired shell length"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ msgstr "Por favor chequea el correo para verificar tu cuenta"
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
				
			||||||
#: 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:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:351
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Guardando..."
 | 
					msgstr "Guardando..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -134,7 +134,7 @@ msgstr "Réinitialisé le mot de passe"
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: 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:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Sauvegarder"
 | 
					msgstr "Sauvegarder"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,24 +44,24 @@ msgid "Background color"
 | 
				
			|||||||
msgstr "Couleur de fond"
 | 
					msgstr "Couleur de fond"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr "Vide"
 | 
					msgstr "Vide"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr "Cuivre"
 | 
					msgstr "Cuivre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:144
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr "Noyau de balle"
 | 
					msgstr "Noyau de balle"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr "Type de balle"
 | 
					msgstr "Type de balle"
 | 
				
			||||||
@@ -79,7 +79,7 @@ msgid "Cartridge"
 | 
				
			|||||||
msgstr "Cartouche"
 | 
					msgstr "Cartouche"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr "Matériau de la caisse"
 | 
					msgstr "Matériau de la caisse"
 | 
				
			||||||
@@ -100,7 +100,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr "Conteneurs"
 | 
					msgstr "Conteneurs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Corrosive"
 | 
					msgstr "Corrosive"
 | 
				
			||||||
@@ -145,7 +145,7 @@ msgstr "Modifier l’invitation"
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr "Modifier le tag"
 | 
					msgstr "Modifier le tag"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr "FMJ"
 | 
					msgstr "FMJ"
 | 
				
			||||||
@@ -157,7 +157,7 @@ msgid "Grains"
 | 
				
			|||||||
msgstr "Graines"
 | 
					msgstr "Graines"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Incendiaire"
 | 
					msgstr "Incendiaire"
 | 
				
			||||||
@@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
					msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Fabricant"
 | 
					msgstr "Fabricant"
 | 
				
			||||||
@@ -299,7 +299,7 @@ msgid "On the bookshelf"
 | 
				
			|||||||
msgstr "Sur l’étagère"
 | 
					msgstr "Sur l’étagère"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:257
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Pression"
 | 
					msgstr "Pression"
 | 
				
			||||||
@@ -316,7 +316,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr "Prix payé :"
 | 
					msgstr "Prix payé :"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr "Type d’amorce"
 | 
					msgstr "Type d’amorce"
 | 
				
			||||||
@@ -349,7 +349,7 @@ msgstr "Paramètres"
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr "Simple :"
 | 
					msgstr "Simple :"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr "Acier"
 | 
					msgstr "Acier"
 | 
				
			||||||
@@ -386,7 +386,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr "Le site web de suivi d’arme à feux auto-hébergé"
 | 
					msgstr "Le site web de suivi d’arme à feux auto-hébergé"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Traceuse"
 | 
					msgstr "Traceuse"
 | 
				
			||||||
@@ -512,36 +512,36 @@ msgstr "Évènements de tir"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "%{amount} $"
 | 
					msgstr "%{amount} $"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr "Bi-métal"
 | 
					msgstr "Bi-métal"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:156
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr "Type de douille"
 | 
					msgstr "Type de douille"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:279
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr "Vélocité du canon"
 | 
					msgstr "Vélocité du canon"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:244
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr "Graines de poudre par charge"
 | 
					msgstr "Graines de poudre par charge"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr "Type de poudre"
 | 
					msgstr "Type de poudre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr "UPC"
 | 
					msgstr "UPC"
 | 
				
			||||||
@@ -565,7 +565,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr "Nouveau mot de passe"
 | 
					msgstr "Nouveau mot de passe"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Type d’allumage"
 | 
					msgstr "Type d’allumage"
 | 
				
			||||||
@@ -1151,7 +1151,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1166,12 +1166,12 @@ msgstr ""
 | 
				
			|||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1221,7 +1221,7 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:313
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1254,7 +1254,7 @@ msgid "Dimensions"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:266
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1276,7 +1276,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:207
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1306,12 +1306,12 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:233
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr "Type de poudre"
 | 
					msgstr "Type de poudre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr "Type d’amorce"
 | 
					msgstr "Type d’amorce"
 | 
				
			||||||
@@ -1332,7 +1332,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:215
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1343,7 +1343,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1354,7 +1354,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Tirs réalisés"
 | 
					msgstr "Tirs réalisés"
 | 
				
			||||||
@@ -1365,7 +1365,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr "Tirs réalisés"
 | 
					msgstr "Tirs réalisés"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:183
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1386,12 +1386,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:143
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1408,7 +1408,7 @@ msgid "Unfired shell length"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -135,7 +135,7 @@ msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
				
			||||||
#: 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:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:351
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Sauvegarde en cours…"
 | 
					msgstr "Sauvegarde en cours…"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -132,7 +132,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: 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:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -42,24 +42,24 @@ msgid "Background color"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:144
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -77,7 +77,7 @@ msgid "Cartridge"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -98,7 +98,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -143,7 +143,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -155,7 +155,7 @@ msgid "Grains"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -206,8 +206,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -297,7 +297,7 @@ msgid "On the bookshelf"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:257
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -314,7 +314,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -345,7 +345,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -380,7 +380,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -506,36 +506,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:156
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:279
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:244
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -559,7 +559,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1142,7 +1142,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1157,12 +1157,12 @@ msgstr ""
 | 
				
			|||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1212,7 +1212,7 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:313
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1245,7 +1245,7 @@ msgid "Dimensions"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:266
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1267,7 +1267,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:207
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1297,12 +1297,12 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:233
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1323,7 +1323,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:215
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1334,7 +1334,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1345,7 +1345,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1356,7 +1356,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:183
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1377,12 +1377,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:143
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1399,7 +1399,7 @@ msgid "Unfired shell length"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -126,7 +126,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
				
			||||||
#: 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:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:351
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,7 +115,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
				
			||||||
#: 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:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:351
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user