forked from shibao/cannery
		
	fix textareas resizing when typing in
This commit is contained in:
		@@ -6,6 +6,7 @@
 | 
			
		||||
- Fix tables not sorting dates correctly
 | 
			
		||||
- Fix dates displaying incorrectly
 | 
			
		||||
- Fix container table not displaying all fields
 | 
			
		||||
- Fix textareas resizing when typing in them
 | 
			
		||||
 | 
			
		||||
# v0.8.3
 | 
			
		||||
- Improve some styles
 | 
			
		||||
 
 | 
			
		||||
@@ -37,9 +37,11 @@
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= textarea(f, :notes,
 | 
			
		||||
      id: "add-shot-group-form-notes",
 | 
			
		||||
      class: "input input-primary col-span-2",
 | 
			
		||||
      placeholder: "Really great weather",
 | 
			
		||||
      phx_hook: "MaintainAttrs"
 | 
			
		||||
      placeholder: gettext("Really great weather"),
 | 
			
		||||
      phx_hook: "MaintainAttrs",
 | 
			
		||||
      phx_update: "ignore"
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :notes, "col-span-3") %>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -49,8 +49,10 @@
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= textarea(f, :notes,
 | 
			
		||||
      id: "ammo-group-form-notes",
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      phx_hook: "MaintainAttrs"
 | 
			
		||||
      phx_hook: "MaintainAttrs",
 | 
			
		||||
      phx_update: "ignore"
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :notes, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -24,8 +24,10 @@
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= textarea(f, :desc,
 | 
			
		||||
      id: "ammo-type-form-desc",
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      phx_hook: "MaintainAttrs"
 | 
			
		||||
      phx_hook: "MaintainAttrs",
 | 
			
		||||
      phx_update: "ignore"
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :desc, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
@@ -52,14 +54,14 @@
 | 
			
		||||
    <%= label(f, :cartridge, gettext("Cartridge"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= text_input(f, :cartridge,
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      placeholder: "5.56x46mm NATO"
 | 
			
		||||
      placeholder: gettext("5.56x46mm NATO")
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :cartridge, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :caliber, gettext("Caliber"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= text_input(f, :caliber,
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      placeholder: ".223"
 | 
			
		||||
      placeholder: gettext(".223")
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :caliber, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
@@ -112,21 +114,21 @@
 | 
			
		||||
    <%= label(f, :pressure, gettext("Pressure"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= text_input(f, :pressure,
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      placeholder: "+P"
 | 
			
		||||
      placeholder: gettext("+P")
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :pressure, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :primer_type, gettext("Primer type"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= text_input(f, :primer_type,
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      placeholder: "Boxer"
 | 
			
		||||
      placeholder: gettext("Boxer")
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :primer_type, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :firing_type, gettext("Firing type"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= text_input(f, :firing_type,
 | 
			
		||||
      class: "text-center col-span-2 input input-primary",
 | 
			
		||||
      placeholder: "Centerfire"
 | 
			
		||||
      placeholder: gettext("Centerfire")
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :firing_type, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -27,9 +27,11 @@
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= textarea(f, :desc,
 | 
			
		||||
      id: "container-form-desc",
 | 
			
		||||
      class: "input input-primary col-span-2",
 | 
			
		||||
      placeholder: gettext("Metal ammo can with the anime girl sticker"),
 | 
			
		||||
      phx_hook: "MaintainAttrs",
 | 
			
		||||
      placeholder: gettext("Metal ammo can with the anime girl sticker")
 | 
			
		||||
      phx_update: "ignore"
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :desc, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
@@ -42,9 +44,11 @@
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :location, gettext("Location"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= textarea(f, :location,
 | 
			
		||||
      id: "container-form-location",
 | 
			
		||||
      class: "input input-primary col-span-2",
 | 
			
		||||
      placeholder: gettext("On the bookshelf"),
 | 
			
		||||
      phx_hook: "MaintainAttrs",
 | 
			
		||||
      placeholder: gettext("On the bookshelf")
 | 
			
		||||
      phx_update: "ignore"
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :location, "col-span-3 text-center") %>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -29,8 +29,11 @@
 | 
			
		||||
 | 
			
		||||
    <%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
 | 
			
		||||
    <%= textarea(f, :notes,
 | 
			
		||||
      id: "shot-group-form-notes",
 | 
			
		||||
      class: "input input-primary col-span-2",
 | 
			
		||||
      phx_hook: "MaintainAttrs"
 | 
			
		||||
      placeholder: gettext("Really great weather"),
 | 
			
		||||
      phx_hook: "MaintainAttrs",
 | 
			
		||||
      phx_update: "ignore"
 | 
			
		||||
    ) %>
 | 
			
		||||
    <%= error_tag(f, :notes, "col-span-3") %>
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -120,12 +120,12 @@ msgstr ""
 | 
			
		||||
msgid "Reset password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Save"
 | 
			
		||||
@@ -183,7 +183,7 @@ msgstr ""
 | 
			
		||||
msgid "add a container first"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Create"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -133,12 +133,12 @@ msgstr "Bestätigungsmail erneut senden"
 | 
			
		||||
msgid "Reset password"
 | 
			
		||||
msgstr "Passwort zurücksetzen"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Save"
 | 
			
		||||
@@ -196,7 +196,7 @@ msgstr "In die Zwischenablage kopieren"
 | 
			
		||||
msgid "add a container first"
 | 
			
		||||
msgstr "Zuerst einen Behälter hinzufügen"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Create"
 | 
			
		||||
msgstr "Erstellen"
 | 
			
		||||
 
 | 
			
		||||
@@ -50,49 +50,49 @@ msgid "Background color"
 | 
			
		||||
msgstr "Hintergrundfarbe"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Blank"
 | 
			
		||||
msgstr "Knallpatrone"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Brass"
 | 
			
		||||
msgstr "Messing"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet core"
 | 
			
		||||
msgstr "Projektilkern"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet type"
 | 
			
		||||
msgstr "Patronenart"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Caliber"
 | 
			
		||||
msgstr "Kaliber"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Cartridge"
 | 
			
		||||
msgstr "Patrone"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Case material"
 | 
			
		||||
msgstr "Gehäusematerial"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Container"
 | 
			
		||||
msgstr "Behälter"
 | 
			
		||||
@@ -106,7 +106,7 @@ msgid "Containers"
 | 
			
		||||
msgstr "Behälter"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Corrosive"
 | 
			
		||||
msgstr "Korrosiv"
 | 
			
		||||
@@ -151,24 +151,24 @@ msgstr "Einladung bearbeiten"
 | 
			
		||||
msgid "Edit Tag"
 | 
			
		||||
msgstr "Tag bearbeiten"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Example bullet type abbreviations"
 | 
			
		||||
msgstr "Beispiel Munitionstyp Abkürzungen"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "FMJ"
 | 
			
		||||
msgstr "VM"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Grains"
 | 
			
		||||
msgstr "Körner"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Incendiary"
 | 
			
		||||
msgstr "Brandmunition"
 | 
			
		||||
@@ -202,7 +202,7 @@ msgstr "Für 60 Tage eingeloggt bleiben"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:45
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Location"
 | 
			
		||||
msgstr "Standort"
 | 
			
		||||
@@ -213,13 +213,13 @@ msgstr "Standort"
 | 
			
		||||
msgid "Location:"
 | 
			
		||||
msgstr "Standort:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
			
		||||
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Manufacturer"
 | 
			
		||||
msgstr "Hersteller"
 | 
			
		||||
@@ -311,13 +311,13 @@ msgstr "Bemerkungen"
 | 
			
		||||
msgid "Notes:"
 | 
			
		||||
msgstr "Bemerkungen:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:49
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "On the bookshelf"
 | 
			
		||||
msgstr "Auf dem Bücherregal"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Pressure"
 | 
			
		||||
msgstr "Druck"
 | 
			
		||||
@@ -334,7 +334,7 @@ msgid "Price paid:"
 | 
			
		||||
msgstr "Kaufpreis:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Primer type"
 | 
			
		||||
msgstr "Zündertyp"
 | 
			
		||||
@@ -367,7 +367,7 @@ msgstr "Einstellungen"
 | 
			
		||||
msgid "Simple:"
 | 
			
		||||
msgstr "Einfach:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Steel"
 | 
			
		||||
msgstr "Stahl"
 | 
			
		||||
@@ -402,14 +402,14 @@ msgid "The self-hosted firearm tracker website"
 | 
			
		||||
msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Tracer"
 | 
			
		||||
msgstr "Leuchtspur"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Type"
 | 
			
		||||
msgstr "Art"
 | 
			
		||||
@@ -451,10 +451,10 @@ msgstr "Schießplatz"
 | 
			
		||||
msgid "Range day"
 | 
			
		||||
msgstr "Range Day"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Date"
 | 
			
		||||
msgstr "Datum"
 | 
			
		||||
@@ -538,37 +538,37 @@ msgstr "Schießkladde"
 | 
			
		||||
msgid "$%{amount}"
 | 
			
		||||
msgstr "$%{amount}"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bimetal"
 | 
			
		||||
msgstr "Bimetall"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Jacket type"
 | 
			
		||||
msgstr "Patronenhülse"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Muzzle velocity"
 | 
			
		||||
msgstr "Mündungsgeschwindigkeit"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder grains per charge"
 | 
			
		||||
msgstr "Pulverkörner pro Ladung"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder type"
 | 
			
		||||
msgstr "Pulverart"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "UPC"
 | 
			
		||||
msgstr "UPC"
 | 
			
		||||
@@ -592,7 +592,7 @@ msgid "New password"
 | 
			
		||||
msgstr "Neues Passwort"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Firing type"
 | 
			
		||||
msgstr "Patronenhülsenform"
 | 
			
		||||
@@ -689,7 +689,7 @@ msgstr "Passwort zurücksetzen"
 | 
			
		||||
msgid "Record Shots"
 | 
			
		||||
msgstr "Schüsse dokumentieren"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Copies"
 | 
			
		||||
msgstr "Kopien"
 | 
			
		||||
@@ -1198,3 +1198,34 @@ msgstr ""
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "+P"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid ".223"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "5.56x46mm NATO"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Boxer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Centerfire"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:34
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Really great weather"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -128,12 +128,12 @@ msgstr "Passwort erfolgreich geändert."
 | 
			
		||||
msgid "Please check your email to verify your account"
 | 
			
		||||
msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Saving..."
 | 
			
		||||
@@ -219,7 +219,7 @@ msgstr "%{name} erfolgreich entfernt"
 | 
			
		||||
msgid "You'll need to"
 | 
			
		||||
msgstr "Sie müssen"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Creating..."
 | 
			
		||||
msgstr "Erstellen..."
 | 
			
		||||
 
 | 
			
		||||
@@ -46,49 +46,49 @@ msgid "Background color"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Blank"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Brass"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet core"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Caliber"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Cartridge"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Case material"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Container"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -102,7 +102,7 @@ msgid "Containers"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Corrosive"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -147,24 +147,24 @@ msgstr ""
 | 
			
		||||
msgid "Edit Tag"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Example bullet type abbreviations"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "FMJ"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Grains"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Incendiary"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -198,7 +198,7 @@ msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:45
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Location"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -209,13 +209,13 @@ msgstr ""
 | 
			
		||||
msgid "Location:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Manufacturer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -307,13 +307,13 @@ msgstr ""
 | 
			
		||||
msgid "Notes:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:49
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "On the bookshelf"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Pressure"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -330,7 +330,7 @@ msgid "Price paid:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Primer type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -361,7 +361,7 @@ msgstr ""
 | 
			
		||||
msgid "Simple:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Steel"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -396,14 +396,14 @@ msgid "The self-hosted firearm tracker website"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Tracer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -445,10 +445,10 @@ msgstr ""
 | 
			
		||||
msgid "Range day"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Date"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -532,37 +532,37 @@ msgstr ""
 | 
			
		||||
msgid "$%{amount}"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bimetal"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Jacket type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Muzzle velocity"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder grains per charge"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "UPC"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -586,7 +586,7 @@ msgid "New password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Firing type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -683,7 +683,7 @@ msgstr ""
 | 
			
		||||
msgid "Record Shots"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Copies"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -1181,3 +1181,34 @@ msgstr ""
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "+P"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid ".223"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "5.56x46mm NATO"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Boxer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Centerfire"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:34
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Really great weather"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -120,12 +120,12 @@ msgstr ""
 | 
			
		||||
msgid "Reset password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Save"
 | 
			
		||||
@@ -183,7 +183,7 @@ msgstr ""
 | 
			
		||||
msgid "add a container first"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
 | 
			
		||||
#, elixir-autogen, elixir-format, fuzzy
 | 
			
		||||
msgid "Create"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -46,49 +46,49 @@ msgid "Background color"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Blank"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Brass"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet core"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Caliber"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Cartridge"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Case material"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Container"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -102,7 +102,7 @@ msgid "Containers"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Corrosive"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -147,24 +147,24 @@ msgstr ""
 | 
			
		||||
msgid "Edit Tag"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Example bullet type abbreviations"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "FMJ"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Grains"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Incendiary"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -198,7 +198,7 @@ msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:45
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Location"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -209,13 +209,13 @@ msgstr ""
 | 
			
		||||
msgid "Location:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Manufacturer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -307,13 +307,13 @@ msgstr ""
 | 
			
		||||
msgid "Notes:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:49
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "On the bookshelf"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Pressure"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -330,7 +330,7 @@ msgid "Price paid:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Primer type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -361,7 +361,7 @@ msgstr ""
 | 
			
		||||
msgid "Simple:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Steel"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -396,14 +396,14 @@ msgid "The self-hosted firearm tracker website"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Tracer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -445,10 +445,10 @@ msgstr ""
 | 
			
		||||
msgid "Range day"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Date"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -532,37 +532,37 @@ msgstr ""
 | 
			
		||||
msgid "$%{amount}"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bimetal"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Jacket type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Muzzle velocity"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder grains per charge"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "UPC"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -586,7 +586,7 @@ msgid "New password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Firing type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -683,7 +683,7 @@ msgstr ""
 | 
			
		||||
msgid "Record Shots"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Copies"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -1181,3 +1181,34 @@ msgstr ""
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "+P"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid ".223"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "5.56x46mm NATO"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Boxer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Centerfire"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:34
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Really great weather"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -109,12 +109,12 @@ msgstr ""
 | 
			
		||||
msgid "Please check your email to verify your account"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Saving..."
 | 
			
		||||
@@ -198,7 +198,7 @@ msgstr ""
 | 
			
		||||
msgid "You'll need to"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format, fuzzy
 | 
			
		||||
msgid "Creating..."
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -133,12 +133,12 @@ msgstr "Reenviar instrucciones de confirmación"
 | 
			
		||||
msgid "Reset password"
 | 
			
		||||
msgstr "Resetear contraseña"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Save"
 | 
			
		||||
@@ -196,7 +196,7 @@ msgstr "Copiar al portapapeles"
 | 
			
		||||
msgid "add a container first"
 | 
			
		||||
msgstr "añade primero un contenedor"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Create"
 | 
			
		||||
msgstr "Crear"
 | 
			
		||||
 
 | 
			
		||||
@@ -50,49 +50,49 @@ msgid "Background color"
 | 
			
		||||
msgstr "Color de fondo"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Blank"
 | 
			
		||||
msgstr "Fogueo"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Brass"
 | 
			
		||||
msgstr "Latón"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet core"
 | 
			
		||||
msgstr "Núcleo de bala"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet type"
 | 
			
		||||
msgstr "Tipo de bala"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Caliber"
 | 
			
		||||
msgstr "Calibre"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Cartridge"
 | 
			
		||||
msgstr "Cartucho"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Case material"
 | 
			
		||||
msgstr "Material del casquillo"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Container"
 | 
			
		||||
msgstr "Contenedor"
 | 
			
		||||
@@ -106,7 +106,7 @@ msgid "Containers"
 | 
			
		||||
msgstr "Contenedores"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Corrosive"
 | 
			
		||||
msgstr "Corrosiva"
 | 
			
		||||
@@ -151,24 +151,24 @@ msgstr "Editar Invitación"
 | 
			
		||||
msgid "Edit Tag"
 | 
			
		||||
msgstr "Editar Etiqueta"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Example bullet type abbreviations"
 | 
			
		||||
msgstr "Abreviaciones de tipo de bala ejemplo"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "FMJ"
 | 
			
		||||
msgstr "Bala encamisada"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Grains"
 | 
			
		||||
msgstr "Grano"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Incendiary"
 | 
			
		||||
msgstr "Incendiaria"
 | 
			
		||||
@@ -202,7 +202,7 @@ msgstr "Mantener registrado durante 60 días"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:45
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Location"
 | 
			
		||||
msgstr "Localización"
 | 
			
		||||
@@ -213,13 +213,13 @@ msgstr "Localización"
 | 
			
		||||
msgid "Location:"
 | 
			
		||||
msgstr "Localización:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
			
		||||
msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Manufacturer"
 | 
			
		||||
msgstr "Fabricante"
 | 
			
		||||
@@ -311,13 +311,13 @@ msgstr "Notas"
 | 
			
		||||
msgid "Notes:"
 | 
			
		||||
msgstr "Notas:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:49
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "On the bookshelf"
 | 
			
		||||
msgstr "En la estantería"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Pressure"
 | 
			
		||||
msgstr "Presión"
 | 
			
		||||
@@ -334,7 +334,7 @@ msgid "Price paid:"
 | 
			
		||||
msgstr "Precio pagado:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Primer type"
 | 
			
		||||
msgstr "Tipo de espoleta"
 | 
			
		||||
@@ -367,7 +367,7 @@ msgstr "Ajustes"
 | 
			
		||||
msgid "Simple:"
 | 
			
		||||
msgstr "Simple:"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Steel"
 | 
			
		||||
msgstr "Acero"
 | 
			
		||||
@@ -403,14 +403,14 @@ msgid "The self-hosted firearm tracker website"
 | 
			
		||||
msgstr "La página de seguimiento de armas autogestionada"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Tracer"
 | 
			
		||||
msgstr "Trazadora"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Type"
 | 
			
		||||
msgstr "Tipo"
 | 
			
		||||
@@ -452,10 +452,10 @@ msgstr "Campo de tiro"
 | 
			
		||||
msgid "Range day"
 | 
			
		||||
msgstr "Día de disparar"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Date"
 | 
			
		||||
msgstr "Fecha"
 | 
			
		||||
@@ -539,37 +539,37 @@ msgstr "Registro de tiros"
 | 
			
		||||
msgid "$%{amount}"
 | 
			
		||||
msgstr "$%{amount}"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bimetal"
 | 
			
		||||
msgstr "Bimetal"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Jacket type"
 | 
			
		||||
msgstr "Tipo de camisa"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Muzzle velocity"
 | 
			
		||||
msgstr "Velocidad de boca"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder grains per charge"
 | 
			
		||||
msgstr "Granos de polvora por carga"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder type"
 | 
			
		||||
msgstr "Tipo de polvora"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "UPC"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -593,7 +593,7 @@ msgid "New password"
 | 
			
		||||
msgstr "Nueva contraseña"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Firing type"
 | 
			
		||||
msgstr "Tipo de fuego"
 | 
			
		||||
@@ -690,7 +690,7 @@ msgstr "Reestablecer contraseña"
 | 
			
		||||
msgid "Record Shots"
 | 
			
		||||
msgstr "Tiros Récord"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Copies"
 | 
			
		||||
msgstr "Copias"
 | 
			
		||||
@@ -1200,3 +1200,34 @@ msgstr ""
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "+P"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid ".223"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "5.56x46mm NATO"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Boxer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Centerfire"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:34
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Really great weather"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -128,12 +128,12 @@ msgstr "Contraseña cambiada exitosamente."
 | 
			
		||||
msgid "Please check your email to verify your account"
 | 
			
		||||
msgstr "Por favor chequea el correo para verificar tu cuenta"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Saving..."
 | 
			
		||||
@@ -218,7 +218,7 @@ msgstr "%{name} eliminado exitosamente"
 | 
			
		||||
msgid "You'll need to"
 | 
			
		||||
msgstr "Necesitará hacerlo"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Creating..."
 | 
			
		||||
msgstr "Creando..."
 | 
			
		||||
 
 | 
			
		||||
@@ -133,12 +133,12 @@ msgstr "Renvoyer les instructions de confirmation"
 | 
			
		||||
msgid "Reset password"
 | 
			
		||||
msgstr "Réinitialisé le mot de passe"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Save"
 | 
			
		||||
@@ -196,7 +196,7 @@ msgstr "Copier dans le presse-papier"
 | 
			
		||||
msgid "add a container first"
 | 
			
		||||
msgstr "ajouter un conteneur en premier"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Create"
 | 
			
		||||
msgstr "Créer"
 | 
			
		||||
 
 | 
			
		||||
@@ -50,49 +50,49 @@ msgid "Background color"
 | 
			
		||||
msgstr "Couleur de fond"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Blank"
 | 
			
		||||
msgstr "Vide"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Brass"
 | 
			
		||||
msgstr "Cuivre"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet core"
 | 
			
		||||
msgstr "Noyau de balle"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet type"
 | 
			
		||||
msgstr "Type de balle"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Caliber"
 | 
			
		||||
msgstr "Calibre"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Cartridge"
 | 
			
		||||
msgstr "Cartouche"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Case material"
 | 
			
		||||
msgstr "Matériau de la caisse"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Container"
 | 
			
		||||
msgstr "Conteneur"
 | 
			
		||||
@@ -106,7 +106,7 @@ msgid "Containers"
 | 
			
		||||
msgstr "Conteneurs"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Corrosive"
 | 
			
		||||
msgstr "Corrosive"
 | 
			
		||||
@@ -151,24 +151,24 @@ msgstr "Modifier l’invitation"
 | 
			
		||||
msgid "Edit Tag"
 | 
			
		||||
msgstr "Modifier le tag"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Example bullet type abbreviations"
 | 
			
		||||
msgstr "Exemple d’abréviations de type de balle"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "FMJ"
 | 
			
		||||
msgstr "FMJ"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Grains"
 | 
			
		||||
msgstr "Graines"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Incendiary"
 | 
			
		||||
msgstr "Incendiaire"
 | 
			
		||||
@@ -202,7 +202,7 @@ msgstr "Me garder authentifié durant 60 jours"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:45
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Location"
 | 
			
		||||
msgstr "Localisation"
 | 
			
		||||
@@ -213,13 +213,13 @@ msgstr "Localisation"
 | 
			
		||||
msgid "Location:"
 | 
			
		||||
msgstr "Localisation :"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
			
		||||
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Manufacturer"
 | 
			
		||||
msgstr "Fabricant"
 | 
			
		||||
@@ -311,13 +311,13 @@ msgstr "Notes"
 | 
			
		||||
msgid "Notes:"
 | 
			
		||||
msgstr "Notes :"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:49
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "On the bookshelf"
 | 
			
		||||
msgstr "Sur l’étagère"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Pressure"
 | 
			
		||||
msgstr "Pression"
 | 
			
		||||
@@ -334,7 +334,7 @@ msgid "Price paid:"
 | 
			
		||||
msgstr "Prix payé :"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Primer type"
 | 
			
		||||
msgstr "Type d’amorce"
 | 
			
		||||
@@ -367,7 +367,7 @@ msgstr "Paramètres"
 | 
			
		||||
msgid "Simple:"
 | 
			
		||||
msgstr "Simple :"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Steel"
 | 
			
		||||
msgstr "Acier"
 | 
			
		||||
@@ -404,14 +404,14 @@ msgid "The self-hosted firearm tracker website"
 | 
			
		||||
msgstr "Le site web de suivi d’arme à feux auto-hébergé"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Tracer"
 | 
			
		||||
msgstr "Traceuse"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Type"
 | 
			
		||||
msgstr "Type"
 | 
			
		||||
@@ -453,10 +453,10 @@ msgstr "Portée"
 | 
			
		||||
msgid "Range day"
 | 
			
		||||
msgstr "Journée de stand"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Date"
 | 
			
		||||
msgstr "Date"
 | 
			
		||||
@@ -540,37 +540,37 @@ msgstr "Évènements de tir"
 | 
			
		||||
msgid "$%{amount}"
 | 
			
		||||
msgstr "%{amount} $"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bimetal"
 | 
			
		||||
msgstr "Bi-métal"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Jacket type"
 | 
			
		||||
msgstr "Type de douille"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Muzzle velocity"
 | 
			
		||||
msgstr "Vélocité du canon"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder grains per charge"
 | 
			
		||||
msgstr "Graines de poudre par charge"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder type"
 | 
			
		||||
msgstr "Type de poudre"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "UPC"
 | 
			
		||||
msgstr "UPC"
 | 
			
		||||
@@ -594,7 +594,7 @@ msgid "New password"
 | 
			
		||||
msgstr "Nouveau mot de passe"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Firing type"
 | 
			
		||||
msgstr "Type d’allumage"
 | 
			
		||||
@@ -691,7 +691,7 @@ msgstr "Réinitialiser votre mot de passe"
 | 
			
		||||
msgid "Record Shots"
 | 
			
		||||
msgstr "Enregistrer des tirs"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Copies"
 | 
			
		||||
msgstr "Exemplaires"
 | 
			
		||||
@@ -1201,3 +1201,34 @@ msgstr ""
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "+P"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid ".223"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "5.56x46mm NATO"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Boxer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Centerfire"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:34
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Really great weather"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -129,12 +129,12 @@ msgstr "Mot de passe mis à jour avec succès."
 | 
			
		||||
msgid "Please check your email to verify your account"
 | 
			
		||||
msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Saving..."
 | 
			
		||||
@@ -220,7 +220,7 @@ msgstr "%{name} retiré avec succès"
 | 
			
		||||
msgid "You'll need to"
 | 
			
		||||
msgstr "Vous aurez besoin de"
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Creating..."
 | 
			
		||||
msgstr "Création en cours…"
 | 
			
		||||
 
 | 
			
		||||
@@ -131,12 +131,12 @@ msgstr ""
 | 
			
		||||
msgid "Reset password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Save"
 | 
			
		||||
@@ -194,7 +194,7 @@ msgstr ""
 | 
			
		||||
msgid "add a container first"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Create"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -48,49 +48,49 @@ msgid "Background color"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Blank"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Brass"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet core"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bullet type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Caliber"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Cartridge"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Case material"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Container"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -104,7 +104,7 @@ msgid "Containers"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Corrosive"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -149,24 +149,24 @@ msgstr ""
 | 
			
		||||
msgid "Edit Tag"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Example bullet type abbreviations"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "FMJ"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Grains"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Incendiary"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -200,7 +200,7 @@ msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:45
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Location"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -211,13 +211,13 @@ msgstr ""
 | 
			
		||||
msgid "Location:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Manufacturer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -309,13 +309,13 @@ msgstr ""
 | 
			
		||||
msgid "Notes:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:49
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "On the bookshelf"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Pressure"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -332,7 +332,7 @@ msgid "Price paid:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Primer type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -363,7 +363,7 @@ msgstr ""
 | 
			
		||||
msgid "Simple:"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Steel"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -398,14 +398,14 @@ msgid "The self-hosted firearm tracker website"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Tracer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
			
		||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -447,10 +447,10 @@ msgstr ""
 | 
			
		||||
msgid "Range day"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
 | 
			
		||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Date"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -534,37 +534,37 @@ msgstr ""
 | 
			
		||||
msgid "$%{amount}"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Bimetal"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Jacket type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Muzzle velocity"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder grains per charge"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Powder type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "UPC"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -588,7 +588,7 @@ msgid "New password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Firing type"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -685,7 +685,7 @@ msgstr ""
 | 
			
		||||
msgid "Record Shots"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Copies"
 | 
			
		||||
msgstr ""
 | 
			
		||||
@@ -1192,3 +1192,34 @@ msgstr ""
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Password"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "+P"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid ".223"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "5.56x46mm NATO"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Boxer"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Centerfire"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:34
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Really great weather"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -120,12 +120,12 @@ msgstr ""
 | 
			
		||||
msgid "Please check your email to verify your account"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Saving..."
 | 
			
		||||
@@ -209,7 +209,7 @@ msgstr ""
 | 
			
		||||
msgid "You'll need to"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Creating..."
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
@@ -109,12 +109,12 @@ msgstr ""
 | 
			
		||||
msgid "Please check your email to verify your account"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
 | 
			
		||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
 | 
			
		||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
 | 
			
		||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
			
		||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
 | 
			
		||||
#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
			
		||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Saving..."
 | 
			
		||||
@@ -198,7 +198,7 @@ msgstr ""
 | 
			
		||||
msgid "You'll need to"
 | 
			
		||||
msgstr ""
 | 
			
		||||
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
 | 
			
		||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
 | 
			
		||||
#, elixir-autogen, elixir-format
 | 
			
		||||
msgid "Creating..."
 | 
			
		||||
msgstr ""
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user