forked from shibao/cannery
		
	remove maintain attrs
This commit is contained in:
		@@ -25,7 +25,6 @@ import 'phoenix_html'
 | 
				
			|||||||
import { Socket } from 'phoenix'
 | 
					import { Socket } from 'phoenix'
 | 
				
			||||||
import { LiveSocket } from 'phoenix_live_view'
 | 
					import { LiveSocket } from 'phoenix_live_view'
 | 
				
			||||||
import topbar from 'topbar'
 | 
					import topbar from 'topbar'
 | 
				
			||||||
import MaintainAttrs from './maintain_attrs'
 | 
					 | 
				
			||||||
import ShotLogChart from './shot_log_chart'
 | 
					import ShotLogChart from './shot_log_chart'
 | 
				
			||||||
import Date from './date'
 | 
					import Date from './date'
 | 
				
			||||||
import DateTime from './datetime'
 | 
					import DateTime from './datetime'
 | 
				
			||||||
@@ -33,7 +32,7 @@ import DateTime from './datetime'
 | 
				
			|||||||
const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content')
 | 
					const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content')
 | 
				
			||||||
const liveSocket = new LiveSocket('/live', Socket, {
 | 
					const liveSocket = new LiveSocket('/live', Socket, {
 | 
				
			||||||
  params: { _csrf_token: csrfToken },
 | 
					  params: { _csrf_token: csrfToken },
 | 
				
			||||||
  hooks: { Date, DateTime, MaintainAttrs, ShotLogChart }
 | 
					  hooks: { Date, DateTime, ShotLogChart }
 | 
				
			||||||
})
 | 
					})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Show progress bar on live navigation and form submits
 | 
					// Show progress bar on live navigation and form submits
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,11 +0,0 @@
 | 
				
			|||||||
// maintain user adjusted attributes, like textbox length on phoenix liveview
 | 
					 | 
				
			||||||
// update. https://github.com/phoenixframework/phoenix_live_view/issues/1011
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
export default {
 | 
					 | 
				
			||||||
  attrs () {
 | 
					 | 
				
			||||||
    const attrs = this.el.getAttribute('data-attrs')
 | 
					 | 
				
			||||||
    if (attrs) { return attrs.split(', ') } else { return [] }
 | 
					 | 
				
			||||||
  },
 | 
					 | 
				
			||||||
  beforeUpdate () { this.prevAttrs = this.attrs().map(name => [name, this.el.getAttribute(name)]) },
 | 
					 | 
				
			||||||
  updated () { this.prevAttrs.forEach(([name, val]) => this.el.setAttribute(name, val)) }
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
@@ -41,7 +41,6 @@
 | 
				
			|||||||
      class: "input input-primary col-span-2",
 | 
					      class: "input input-primary col-span-2",
 | 
				
			||||||
      maxlength: 255,
 | 
					      maxlength: 255,
 | 
				
			||||||
      placeholder: gettext("Really great weather"),
 | 
					      placeholder: gettext("Really great weather"),
 | 
				
			||||||
      phx_hook: "MaintainAttrs",
 | 
					 | 
				
			||||||
      phx_update: "ignore"
 | 
					      phx_update: "ignore"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :notes, "col-span-3") %>
 | 
					    <%= error_tag(f, :notes, "col-span-3") %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -31,7 +31,6 @@
 | 
				
			|||||||
      id: "container-form-desc",
 | 
					      id: "container-form-desc",
 | 
				
			||||||
      class: "input input-primary col-span-2",
 | 
					      class: "input input-primary col-span-2",
 | 
				
			||||||
      placeholder: gettext("Metal ammo can with the anime girl sticker"),
 | 
					      placeholder: gettext("Metal ammo can with the anime girl sticker"),
 | 
				
			||||||
      phx_hook: "MaintainAttrs",
 | 
					 | 
				
			||||||
      phx_update: "ignore"
 | 
					      phx_update: "ignore"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :desc, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :desc, "col-span-3 text-center") %>
 | 
				
			||||||
@@ -49,7 +48,6 @@
 | 
				
			|||||||
      id: "container-form-location",
 | 
					      id: "container-form-location",
 | 
				
			||||||
      class: "input input-primary col-span-2",
 | 
					      class: "input input-primary col-span-2",
 | 
				
			||||||
      placeholder: gettext("On the bookshelf"),
 | 
					      placeholder: gettext("On the bookshelf"),
 | 
				
			||||||
      phx_hook: "MaintainAttrs",
 | 
					 | 
				
			||||||
      phx_update: "ignore"
 | 
					      phx_update: "ignore"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :location, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :location, "col-span-3 text-center") %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -58,7 +58,6 @@
 | 
				
			|||||||
    <%= textarea(f, :notes,
 | 
					    <%= textarea(f, :notes,
 | 
				
			||||||
      id: "pack-form-notes",
 | 
					      id: "pack-form-notes",
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary",
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
      phx_hook: "MaintainAttrs",
 | 
					 | 
				
			||||||
      phx_update: "ignore"
 | 
					      phx_update: "ignore"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :notes, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :notes, "col-span-3 text-center") %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -33,7 +33,6 @@
 | 
				
			|||||||
      class: "input input-primary col-span-2",
 | 
					      class: "input input-primary col-span-2",
 | 
				
			||||||
      maxlength: 255,
 | 
					      maxlength: 255,
 | 
				
			||||||
      placeholder: gettext("Really great weather"),
 | 
					      placeholder: gettext("Really great weather"),
 | 
				
			||||||
      phx_hook: "MaintainAttrs",
 | 
					 | 
				
			||||||
      phx_update: "ignore"
 | 
					      phx_update: "ignore"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :notes, "col-span-3") %>
 | 
					    <%= error_tag(f, :notes, "col-span-3") %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -39,7 +39,6 @@
 | 
				
			|||||||
    <%= textarea(f, :desc,
 | 
					    <%= textarea(f, :desc,
 | 
				
			||||||
      id: "type-form-desc",
 | 
					      id: "type-form-desc",
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary",
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
      phx_hook: "MaintainAttrs",
 | 
					 | 
				
			||||||
      phx_update: "ignore"
 | 
					      phx_update: "ignore"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :desc, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :desc, "col-span-3 text-center") %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,13 +115,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Reset password"
 | 
					msgid "Reset password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:56
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:353
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -178,7 +178,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:83
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -128,13 +128,13 @@ msgstr "Bestätigungsmail erneut senden"
 | 
				
			|||||||
msgid "Reset password"
 | 
					msgid "Reset password"
 | 
				
			||||||
msgstr "Passwort zurücksetzen"
 | 
					msgstr "Passwort zurücksetzen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:56
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:353
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Speichern"
 | 
					msgstr "Speichern"
 | 
				
			||||||
@@ -191,7 +191,7 @@ msgstr "In die Zwischenablage kopieren"
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr "Zuerst einen Behälter hinzufügen"
 | 
					msgstr "Zuerst einen Behälter hinzufügen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:83
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr "Erstellen"
 | 
					msgstr "Erstellen"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,49 +44,49 @@ msgid "Background color"
 | 
				
			|||||||
msgstr "Hintergrundfarbe"
 | 
					msgstr "Hintergrundfarbe"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:327
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr "Knallpatrone"
 | 
					msgstr "Knallpatrone"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:174
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr "Messing"
 | 
					msgstr "Messing"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr "Projektilkern"
 | 
					msgstr "Projektilkern"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr "Patronenart"
 | 
					msgstr "Patronenart"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:68
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Caliber"
 | 
					msgid "Caliber"
 | 
				
			||||||
msgstr "Kaliber"
 | 
					msgstr "Kaliber"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:49
 | 
					#: lib/cannery_web/components/type_table_component.ex:49
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:51
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Cartridge"
 | 
					msgid "Cartridge"
 | 
				
			||||||
msgstr "Patrone"
 | 
					msgstr "Patrone"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:170
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr "Gehäusematerial"
 | 
					msgstr "Gehäusematerial"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:66
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:65
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Behälter"
 | 
					msgstr "Behälter"
 | 
				
			||||||
@@ -100,7 +100,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr "Behälter"
 | 
					msgstr "Behälter"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:331
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Korrosiv"
 | 
					msgstr "Korrosiv"
 | 
				
			||||||
@@ -145,19 +145,19 @@ msgstr "Einladung bearbeiten"
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr "Tag bearbeiten"
 | 
					msgstr "Tag bearbeiten"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr "VM"
 | 
					msgstr "VM"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:58
 | 
					#: lib/cannery_web/components/type_table_component.ex:58
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:112
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:111
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Grains"
 | 
					msgid "Grains"
 | 
				
			||||||
msgstr "Körner"
 | 
					msgstr "Körner"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:323
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Brandmunition"
 | 
					msgstr "Brandmunition"
 | 
				
			||||||
@@ -191,7 +191,7 @@ msgstr "Für 60 Tage eingeloggt bleiben"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
					#: lib/cannery_web/components/container_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:66
 | 
					#: lib/cannery_web/components/move_pack_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Location"
 | 
					msgid "Location"
 | 
				
			||||||
msgstr "Standort"
 | 
					msgstr "Standort"
 | 
				
			||||||
@@ -202,14 +202,14 @@ msgstr "Standort"
 | 
				
			|||||||
msgid "Location:"
 | 
					msgid "Location:"
 | 
				
			||||||
msgstr "Standort:"
 | 
					msgstr "Standort:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
					msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			||||||
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
					msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:339
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Hersteller"
 | 
					msgstr "Hersteller"
 | 
				
			||||||
@@ -293,13 +293,13 @@ msgstr "Bemerkungen"
 | 
				
			|||||||
msgid "Notes:"
 | 
					msgid "Notes:"
 | 
				
			||||||
msgstr "Bemerkungen:"
 | 
					msgstr "Bemerkungen:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:50
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "On the bookshelf"
 | 
					msgid "On the bookshelf"
 | 
				
			||||||
msgstr "Auf dem Bücherregal"
 | 
					msgstr "Auf dem Bücherregal"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:260
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Druck"
 | 
					msgstr "Druck"
 | 
				
			||||||
@@ -316,7 +316,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr "Kaufpreis:"
 | 
					msgstr "Kaufpreis:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:299
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr "Zündertyp"
 | 
					msgstr "Zündertyp"
 | 
				
			||||||
@@ -349,7 +349,7 @@ msgstr "Einstellungen"
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr "Einfach:"
 | 
					msgstr "Einfach:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:154
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr "Stahl"
 | 
					msgstr "Stahl"
 | 
				
			||||||
@@ -384,7 +384,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
 | 
					msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:319
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Leuchtspur"
 | 
					msgstr "Leuchtspur"
 | 
				
			||||||
@@ -392,7 +392,7 @@ msgstr "Leuchtspur"
 | 
				
			|||||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
					#: lib/cannery_web/components/container_table_component.ex:48
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:65
 | 
					#: lib/cannery_web/components/move_pack_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:108
 | 
					#: lib/cannery_web/components/pack_table_component.ex:108
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Type"
 | 
					msgid "Type"
 | 
				
			||||||
@@ -435,10 +435,10 @@ msgstr "Schießplatz"
 | 
				
			|||||||
msgid "Range day"
 | 
					msgid "Range day"
 | 
				
			||||||
msgstr "Range Day"
 | 
					msgstr "Range Day"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:49
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:48
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:91
 | 
					#: lib/cannery_web/live/pack_live/show.ex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Date"
 | 
					msgid "Date"
 | 
				
			||||||
msgstr "Datum"
 | 
					msgstr "Datum"
 | 
				
			||||||
@@ -510,36 +510,36 @@ msgstr "Schießkladde"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "$%{amount}"
 | 
					msgstr "$%{amount}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr "Bimetall"
 | 
					msgstr "Bimetall"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:159
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr "Patronenhülse"
 | 
					msgstr "Patronenhülse"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:282
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr "Mündungsgeschwindigkeit"
 | 
					msgstr "Mündungsgeschwindigkeit"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:247
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr "Pulverkörner pro Ladung"
 | 
					msgstr "Pulverkörner pro Ladung"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:239
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr "Pulverart"
 | 
					msgstr "Pulverart"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:346
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr "UPC"
 | 
					msgstr "UPC"
 | 
				
			||||||
@@ -563,7 +563,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr "Neues Passwort"
 | 
					msgstr "Neues Passwort"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:307
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Patronenhülsenform"
 | 
					msgstr "Patronenhülsenform"
 | 
				
			||||||
@@ -661,7 +661,7 @@ msgstr "Passwort zurücksetzen"
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr "Schüsse dokumentieren"
 | 
					msgstr "Schüsse dokumentieren"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Kopien"
 | 
					msgstr "Kopien"
 | 
				
			||||||
@@ -1148,27 +1148,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:264
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:303
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1218,13 +1218,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:56
 | 
					#: lib/cannery_web/components/type_table_component.ex:56
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:89
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:88
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr "Messing"
 | 
					msgstr "Messing"
 | 
				
			||||||
@@ -1235,7 +1235,7 @@ msgid "Brass height:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:57
 | 
					#: lib/cannery_web/components/type_table_component.ex:57
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:95
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1245,13 +1245,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:48
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:47
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dimensions"
 | 
					msgid "Dimensions"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:269
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1262,7 +1262,7 @@ msgid "Dram equivalent:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:66
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1273,7 +1273,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:210
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1303,17 +1303,17 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr "Pulverart"
 | 
					msgstr "Pulverart"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr "Zündertyp"
 | 
					msgstr "Zündertyp"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:109
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:108
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1329,7 +1329,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:218
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1340,7 +1340,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:194
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1351,7 +1351,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:203
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Schüsse abgegeben"
 | 
					msgstr "Schüsse abgegeben"
 | 
				
			||||||
@@ -1362,7 +1362,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr "Schüsse abgegeben"
 | 
					msgstr "Schüsse abgegeben"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:186
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1383,12 +1383,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:146
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:190
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1399,13 +1399,13 @@ msgid "Unfired length:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:55
 | 
					#: lib/cannery_web/components/type_table_component.ex:55
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:80
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:79
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Unfired shell length"
 | 
					msgid "Unfired shell length"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:179
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -128,13 +128,13 @@ msgstr "Passwort erfolgreich geändert."
 | 
				
			|||||||
msgid "Please check your email to verify your account"
 | 
					msgid "Please check your email to verify your account"
 | 
				
			||||||
msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
 | 
					msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:58
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Speichere..."
 | 
					msgstr "Speichere..."
 | 
				
			||||||
@@ -219,7 +219,7 @@ msgstr "%{name} erfolgreich entfernt"
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr "Sie müssen"
 | 
					msgstr "Sie müssen"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Erstellen..."
 | 
					msgstr "Erstellen..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,49 +40,49 @@ msgid "Background color"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:327
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:174
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:68
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Caliber"
 | 
					msgid "Caliber"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:49
 | 
					#: lib/cannery_web/components/type_table_component.ex:49
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:51
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Cartridge"
 | 
					msgid "Cartridge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:170
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:66
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:65
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -96,7 +96,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:331
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -141,19 +141,19 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:58
 | 
					#: lib/cannery_web/components/type_table_component.ex:58
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:112
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:111
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Grains"
 | 
					msgid "Grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:323
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -187,7 +187,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
					#: lib/cannery_web/components/container_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:66
 | 
					#: lib/cannery_web/components/move_pack_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Location"
 | 
					msgid "Location"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -198,14 +198,14 @@ msgstr ""
 | 
				
			|||||||
msgid "Location:"
 | 
					msgid "Location:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
					msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:339
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -289,13 +289,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Notes:"
 | 
					msgid "Notes:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:50
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "On the bookshelf"
 | 
					msgid "On the bookshelf"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:260
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -312,7 +312,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:299
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -343,7 +343,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:154
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -378,7 +378,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:319
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -386,7 +386,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
					#: lib/cannery_web/components/container_table_component.ex:48
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:65
 | 
					#: lib/cannery_web/components/move_pack_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:108
 | 
					#: lib/cannery_web/components/pack_table_component.ex:108
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Type"
 | 
					msgid "Type"
 | 
				
			||||||
@@ -429,10 +429,10 @@ msgstr ""
 | 
				
			|||||||
msgid "Range day"
 | 
					msgid "Range day"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:49
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:48
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:91
 | 
					#: lib/cannery_web/live/pack_live/show.ex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Date"
 | 
					msgid "Date"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -504,36 +504,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:159
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:282
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:247
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:239
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:346
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -557,7 +557,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:307
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -655,7 +655,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1131,27 +1131,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:264
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:303
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1201,13 +1201,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:56
 | 
					#: lib/cannery_web/components/type_table_component.ex:56
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:89
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:88
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1218,7 +1218,7 @@ msgid "Brass height:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:57
 | 
					#: lib/cannery_web/components/type_table_component.ex:57
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:95
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1228,13 +1228,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:48
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:47
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dimensions"
 | 
					msgid "Dimensions"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:269
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1245,7 +1245,7 @@ msgid "Dram equivalent:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:66
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1256,7 +1256,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:210
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1286,17 +1286,17 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:109
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:108
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1312,7 +1312,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:218
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1323,7 +1323,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:194
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1334,7 +1334,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:203
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1345,7 +1345,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:186
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1366,12 +1366,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:146
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:190
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1382,13 +1382,13 @@ msgid "Unfired length:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:55
 | 
					#: lib/cannery_web/components/type_table_component.ex:55
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:80
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:79
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Unfired shell length"
 | 
					msgid "Unfired shell length"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:179
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,13 +115,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Reset password"
 | 
					msgid "Reset password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:56
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:353
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -178,7 +178,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:83
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -40,49 +40,49 @@ msgid "Background color"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:327
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:174
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:68
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Caliber"
 | 
					msgid "Caliber"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:49
 | 
					#: lib/cannery_web/components/type_table_component.ex:49
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:51
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Cartridge"
 | 
					msgid "Cartridge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:170
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:66
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:65
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -96,7 +96,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:331
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -141,19 +141,19 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:58
 | 
					#: lib/cannery_web/components/type_table_component.ex:58
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:112
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:111
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Grains"
 | 
					msgid "Grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:323
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -187,7 +187,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
					#: lib/cannery_web/components/container_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:66
 | 
					#: lib/cannery_web/components/move_pack_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Location"
 | 
					msgid "Location"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -198,14 +198,14 @@ msgstr ""
 | 
				
			|||||||
msgid "Location:"
 | 
					msgid "Location:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
					msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:339
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -289,13 +289,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Notes:"
 | 
					msgid "Notes:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:50
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "On the bookshelf"
 | 
					msgid "On the bookshelf"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:260
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -312,7 +312,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:299
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -343,7 +343,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:154
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -378,7 +378,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:319
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -386,7 +386,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
					#: lib/cannery_web/components/container_table_component.ex:48
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:65
 | 
					#: lib/cannery_web/components/move_pack_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:108
 | 
					#: lib/cannery_web/components/pack_table_component.ex:108
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Type"
 | 
					msgid "Type"
 | 
				
			||||||
@@ -429,10 +429,10 @@ msgstr ""
 | 
				
			|||||||
msgid "Range day"
 | 
					msgid "Range day"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:49
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:48
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:91
 | 
					#: lib/cannery_web/live/pack_live/show.ex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Date"
 | 
					msgid "Date"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -504,36 +504,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:159
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:282
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:247
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:239
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:346
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -557,7 +557,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:307
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -655,7 +655,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1131,27 +1131,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:264
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:303
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1201,13 +1201,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:56
 | 
					#: lib/cannery_web/components/type_table_component.ex:56
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:89
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:88
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1218,7 +1218,7 @@ msgid "Brass height:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:57
 | 
					#: lib/cannery_web/components/type_table_component.ex:57
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:95
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1228,13 +1228,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:48
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:47
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dimensions"
 | 
					msgid "Dimensions"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:269
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1245,7 +1245,7 @@ msgid "Dram equivalent:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:66
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1256,7 +1256,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:210
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1286,17 +1286,17 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:109
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:108
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1312,7 +1312,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:218
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1323,7 +1323,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:194
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1334,7 +1334,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:203
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1345,7 +1345,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:186
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1366,12 +1366,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:146
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:190
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1382,13 +1382,13 @@ msgid "Unfired length:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:55
 | 
					#: lib/cannery_web/components/type_table_component.ex:55
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:80
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:79
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Unfired shell length"
 | 
					msgid "Unfired shell length"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:179
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -109,13 +109,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Please check your email to verify your account"
 | 
					msgid "Please check your email to verify your account"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:58
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -198,7 +198,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -128,13 +128,13 @@ msgstr "Reenviar instrucciones de confirmación"
 | 
				
			|||||||
msgid "Reset password"
 | 
					msgid "Reset password"
 | 
				
			||||||
msgstr "Resetear contraseña"
 | 
					msgstr "Resetear contraseña"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:56
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:353
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Guardar"
 | 
					msgstr "Guardar"
 | 
				
			||||||
@@ -191,7 +191,7 @@ msgstr "Copiar al portapapeles"
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr "añade primero un contenedor"
 | 
					msgstr "añade primero un contenedor"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:83
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr "Crear"
 | 
					msgstr "Crear"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,49 +44,49 @@ msgid "Background color"
 | 
				
			|||||||
msgstr "Color de fondo"
 | 
					msgstr "Color de fondo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:327
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr "Fogueo"
 | 
					msgstr "Fogueo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:174
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr "Latón"
 | 
					msgstr "Latón"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr "Núcleo de bala"
 | 
					msgstr "Núcleo de bala"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr "Tipo de bala"
 | 
					msgstr "Tipo de bala"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:68
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Caliber"
 | 
					msgid "Caliber"
 | 
				
			||||||
msgstr "Calibre"
 | 
					msgstr "Calibre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:49
 | 
					#: lib/cannery_web/components/type_table_component.ex:49
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:51
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Cartridge"
 | 
					msgid "Cartridge"
 | 
				
			||||||
msgstr "Cartucho"
 | 
					msgstr "Cartucho"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:170
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr "Material del casquillo"
 | 
					msgstr "Material del casquillo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:66
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:65
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Contenedor"
 | 
					msgstr "Contenedor"
 | 
				
			||||||
@@ -100,7 +100,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr "Contenedores"
 | 
					msgstr "Contenedores"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:331
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Corrosiva"
 | 
					msgstr "Corrosiva"
 | 
				
			||||||
@@ -145,19 +145,19 @@ msgstr "Editar Invitación"
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr "Editar Etiqueta"
 | 
					msgstr "Editar Etiqueta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr "Bala encamisada"
 | 
					msgstr "Bala encamisada"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:58
 | 
					#: lib/cannery_web/components/type_table_component.ex:58
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:112
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:111
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Grains"
 | 
					msgid "Grains"
 | 
				
			||||||
msgstr "Grano"
 | 
					msgstr "Grano"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:323
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Incendiaria"
 | 
					msgstr "Incendiaria"
 | 
				
			||||||
@@ -191,7 +191,7 @@ msgstr "Mantener registrado durante 60 días"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
					#: lib/cannery_web/components/container_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:66
 | 
					#: lib/cannery_web/components/move_pack_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Location"
 | 
					msgid "Location"
 | 
				
			||||||
msgstr "Localización"
 | 
					msgstr "Localización"
 | 
				
			||||||
@@ -202,14 +202,14 @@ msgstr "Localización"
 | 
				
			|||||||
msgid "Location:"
 | 
					msgid "Location:"
 | 
				
			||||||
msgstr "Localización:"
 | 
					msgstr "Localización:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
					msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			||||||
msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
					msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:339
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Fabricante"
 | 
					msgstr "Fabricante"
 | 
				
			||||||
@@ -293,13 +293,13 @@ msgstr "Notas"
 | 
				
			|||||||
msgid "Notes:"
 | 
					msgid "Notes:"
 | 
				
			||||||
msgstr "Notas:"
 | 
					msgstr "Notas:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:50
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "On the bookshelf"
 | 
					msgid "On the bookshelf"
 | 
				
			||||||
msgstr "En la estantería"
 | 
					msgstr "En la estantería"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:260
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Presión"
 | 
					msgstr "Presión"
 | 
				
			||||||
@@ -316,7 +316,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr "Precio pagado:"
 | 
					msgstr "Precio pagado:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:299
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr "Tipo de espoleta"
 | 
					msgstr "Tipo de espoleta"
 | 
				
			||||||
@@ -349,7 +349,7 @@ msgstr "Ajustes"
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr "Simple:"
 | 
					msgstr "Simple:"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:154
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr "Acero"
 | 
					msgstr "Acero"
 | 
				
			||||||
@@ -385,7 +385,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr "La página de seguimiento de armas autogestionada"
 | 
					msgstr "La página de seguimiento de armas autogestionada"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:319
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Trazadora"
 | 
					msgstr "Trazadora"
 | 
				
			||||||
@@ -393,7 +393,7 @@ msgstr "Trazadora"
 | 
				
			|||||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
					#: lib/cannery_web/components/container_table_component.ex:48
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:65
 | 
					#: lib/cannery_web/components/move_pack_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:108
 | 
					#: lib/cannery_web/components/pack_table_component.ex:108
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Type"
 | 
					msgid "Type"
 | 
				
			||||||
@@ -436,10 +436,10 @@ msgstr "Campo de tiro"
 | 
				
			|||||||
msgid "Range day"
 | 
					msgid "Range day"
 | 
				
			||||||
msgstr "Día de disparar"
 | 
					msgstr "Día de disparar"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:49
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:48
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:91
 | 
					#: lib/cannery_web/live/pack_live/show.ex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Date"
 | 
					msgid "Date"
 | 
				
			||||||
msgstr "Fecha"
 | 
					msgstr "Fecha"
 | 
				
			||||||
@@ -511,36 +511,36 @@ msgstr "Registro de tiros"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "$%{amount}"
 | 
					msgstr "$%{amount}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr "Bimetal"
 | 
					msgstr "Bimetal"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:159
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr "Tipo de camisa"
 | 
					msgstr "Tipo de camisa"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:282
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr "Velocidad de boca"
 | 
					msgstr "Velocidad de boca"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:247
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr "Granos de polvora por carga"
 | 
					msgstr "Granos de polvora por carga"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:239
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr "Tipo de polvora"
 | 
					msgstr "Tipo de polvora"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:346
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -564,7 +564,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr "Nueva contraseña"
 | 
					msgstr "Nueva contraseña"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:307
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Tipo de fuego"
 | 
					msgstr "Tipo de fuego"
 | 
				
			||||||
@@ -662,7 +662,7 @@ msgstr "Reestablecer contraseña"
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr "Tiros Récord"
 | 
					msgstr "Tiros Récord"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Copias"
 | 
					msgstr "Copias"
 | 
				
			||||||
@@ -1150,27 +1150,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:264
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:303
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1220,13 +1220,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:56
 | 
					#: lib/cannery_web/components/type_table_component.ex:56
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:89
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:88
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr "Latón"
 | 
					msgstr "Latón"
 | 
				
			||||||
@@ -1237,7 +1237,7 @@ msgid "Brass height:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:57
 | 
					#: lib/cannery_web/components/type_table_component.ex:57
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:95
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1247,13 +1247,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:48
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:47
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dimensions"
 | 
					msgid "Dimensions"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:269
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1264,7 +1264,7 @@ msgid "Dram equivalent:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:66
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1275,7 +1275,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:210
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1305,17 +1305,17 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr "Tipo de polvora"
 | 
					msgstr "Tipo de polvora"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr "Tipo de espoleta"
 | 
					msgstr "Tipo de espoleta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:109
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:108
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1331,7 +1331,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:218
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1342,7 +1342,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:194
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1353,7 +1353,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:203
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Tiros disparados"
 | 
					msgstr "Tiros disparados"
 | 
				
			||||||
@@ -1364,7 +1364,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr "Tiros disparados"
 | 
					msgstr "Tiros disparados"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:186
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1385,12 +1385,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:146
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:190
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1401,13 +1401,13 @@ msgid "Unfired length:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:55
 | 
					#: lib/cannery_web/components/type_table_component.ex:55
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:80
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:79
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Unfired shell length"
 | 
					msgid "Unfired shell length"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:179
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -128,13 +128,13 @@ msgstr "Contraseña cambiada exitosamente."
 | 
				
			|||||||
msgid "Please check your email to verify your account"
 | 
					msgid "Please check your email to verify your account"
 | 
				
			||||||
msgstr "Por favor chequea el correo para verificar tu cuenta"
 | 
					msgstr "Por favor chequea el correo para verificar tu cuenta"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:58
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Guardando..."
 | 
					msgstr "Guardando..."
 | 
				
			||||||
@@ -218,7 +218,7 @@ msgstr "%{name} eliminado exitosamente"
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr "Necesitará hacerlo"
 | 
					msgstr "Necesitará hacerlo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Creando..."
 | 
					msgstr "Creando..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -128,13 +128,13 @@ msgstr "Renvoyer les instructions de confirmation"
 | 
				
			|||||||
msgid "Reset password"
 | 
					msgid "Reset password"
 | 
				
			||||||
msgstr "Réinitialisé le mot de passe"
 | 
					msgstr "Réinitialisé le mot de passe"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:56
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:353
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Sauvegarder"
 | 
					msgstr "Sauvegarder"
 | 
				
			||||||
@@ -191,7 +191,7 @@ msgstr "Copier dans le presse-papier"
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr "ajouter un conteneur en premier"
 | 
					msgstr "ajouter un conteneur en premier"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:83
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr "Créer"
 | 
					msgstr "Créer"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,49 +44,49 @@ msgid "Background color"
 | 
				
			|||||||
msgstr "Couleur de fond"
 | 
					msgstr "Couleur de fond"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:327
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr "Vide"
 | 
					msgstr "Vide"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:174
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr "Cuivre"
 | 
					msgstr "Cuivre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr "Noyau de balle"
 | 
					msgstr "Noyau de balle"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr "Type de balle"
 | 
					msgstr "Type de balle"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:68
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Caliber"
 | 
					msgid "Caliber"
 | 
				
			||||||
msgstr "Calibre"
 | 
					msgstr "Calibre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:49
 | 
					#: lib/cannery_web/components/type_table_component.ex:49
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:51
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Cartridge"
 | 
					msgid "Cartridge"
 | 
				
			||||||
msgstr "Cartouche"
 | 
					msgstr "Cartouche"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:170
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr "Matériau de la caisse"
 | 
					msgstr "Matériau de la caisse"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:66
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:65
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Conteneur"
 | 
					msgstr "Conteneur"
 | 
				
			||||||
@@ -100,7 +100,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr "Conteneurs"
 | 
					msgstr "Conteneurs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:331
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Corrosive"
 | 
					msgstr "Corrosive"
 | 
				
			||||||
@@ -145,19 +145,19 @@ msgstr "Modifier l’invitation"
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr "Modifier le tag"
 | 
					msgstr "Modifier le tag"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr "FMJ"
 | 
					msgstr "FMJ"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:58
 | 
					#: lib/cannery_web/components/type_table_component.ex:58
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:112
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:111
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Grains"
 | 
					msgid "Grains"
 | 
				
			||||||
msgstr "Graines"
 | 
					msgstr "Graines"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:323
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Incendiaire"
 | 
					msgstr "Incendiaire"
 | 
				
			||||||
@@ -191,7 +191,7 @@ msgstr "Me garder authentifié durant 60 jours"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
					#: lib/cannery_web/components/container_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:66
 | 
					#: lib/cannery_web/components/move_pack_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Location"
 | 
					msgid "Location"
 | 
				
			||||||
msgstr "Localisation"
 | 
					msgstr "Localisation"
 | 
				
			||||||
@@ -202,14 +202,14 @@ msgstr "Localisation"
 | 
				
			|||||||
msgid "Location:"
 | 
					msgid "Location:"
 | 
				
			||||||
msgstr "Localisation :"
 | 
					msgstr "Localisation :"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
					msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			||||||
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
					msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:339
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Fabricant"
 | 
					msgstr "Fabricant"
 | 
				
			||||||
@@ -293,13 +293,13 @@ msgstr "Notes"
 | 
				
			|||||||
msgid "Notes:"
 | 
					msgid "Notes:"
 | 
				
			||||||
msgstr "Notes :"
 | 
					msgstr "Notes :"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:50
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "On the bookshelf"
 | 
					msgid "On the bookshelf"
 | 
				
			||||||
msgstr "Sur l’étagère"
 | 
					msgstr "Sur l’étagère"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:260
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Pression"
 | 
					msgstr "Pression"
 | 
				
			||||||
@@ -316,7 +316,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr "Prix payé :"
 | 
					msgstr "Prix payé :"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:299
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr "Type d’amorce"
 | 
					msgstr "Type d’amorce"
 | 
				
			||||||
@@ -349,7 +349,7 @@ msgstr "Paramètres"
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr "Simple :"
 | 
					msgstr "Simple :"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:154
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr "Acier"
 | 
					msgstr "Acier"
 | 
				
			||||||
@@ -386,7 +386,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr "Le site web de suivi d’arme à feux auto-hébergé"
 | 
					msgstr "Le site web de suivi d’arme à feux auto-hébergé"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:319
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Traceuse"
 | 
					msgstr "Traceuse"
 | 
				
			||||||
@@ -394,7 +394,7 @@ msgstr "Traceuse"
 | 
				
			|||||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
					#: lib/cannery_web/components/container_table_component.ex:48
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:65
 | 
					#: lib/cannery_web/components/move_pack_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:108
 | 
					#: lib/cannery_web/components/pack_table_component.ex:108
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Type"
 | 
					msgid "Type"
 | 
				
			||||||
@@ -437,10 +437,10 @@ msgstr "Portée"
 | 
				
			|||||||
msgid "Range day"
 | 
					msgid "Range day"
 | 
				
			||||||
msgstr "Journée de stand"
 | 
					msgstr "Journée de stand"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:49
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:48
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:91
 | 
					#: lib/cannery_web/live/pack_live/show.ex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Date"
 | 
					msgid "Date"
 | 
				
			||||||
msgstr "Date"
 | 
					msgstr "Date"
 | 
				
			||||||
@@ -512,36 +512,36 @@ msgstr "Évènements de tir"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "%{amount} $"
 | 
					msgstr "%{amount} $"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr "Bi-métal"
 | 
					msgstr "Bi-métal"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:159
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr "Type de douille"
 | 
					msgstr "Type de douille"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:282
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr "Vélocité du canon"
 | 
					msgstr "Vélocité du canon"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:247
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr "Graines de poudre par charge"
 | 
					msgstr "Graines de poudre par charge"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:239
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr "Type de poudre"
 | 
					msgstr "Type de poudre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:346
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr "UPC"
 | 
					msgstr "UPC"
 | 
				
			||||||
@@ -565,7 +565,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr "Nouveau mot de passe"
 | 
					msgstr "Nouveau mot de passe"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:307
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Type d’allumage"
 | 
					msgstr "Type d’allumage"
 | 
				
			||||||
@@ -663,7 +663,7 @@ msgstr "Réinitialiser votre mot de passe"
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr "Enregistrer des tirs"
 | 
					msgstr "Enregistrer des tirs"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Exemplaires"
 | 
					msgstr "Exemplaires"
 | 
				
			||||||
@@ -1151,27 +1151,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:264
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:303
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1221,13 +1221,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:56
 | 
					#: lib/cannery_web/components/type_table_component.ex:56
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:89
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:88
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr "Cuivre"
 | 
					msgstr "Cuivre"
 | 
				
			||||||
@@ -1238,7 +1238,7 @@ msgid "Brass height:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:57
 | 
					#: lib/cannery_web/components/type_table_component.ex:57
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:95
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1248,13 +1248,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:48
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:47
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dimensions"
 | 
					msgid "Dimensions"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:269
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1265,7 +1265,7 @@ msgid "Dram equivalent:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:66
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1276,7 +1276,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:210
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1306,17 +1306,17 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr "Type de poudre"
 | 
					msgstr "Type de poudre"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr "Type d’amorce"
 | 
					msgstr "Type d’amorce"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:109
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:108
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1332,7 +1332,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:218
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1343,7 +1343,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:194
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1354,7 +1354,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:203
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Tirs réalisés"
 | 
					msgstr "Tirs réalisés"
 | 
				
			||||||
@@ -1365,7 +1365,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr "Tirs réalisés"
 | 
					msgstr "Tirs réalisés"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:186
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1386,12 +1386,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:146
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:190
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1402,13 +1402,13 @@ msgid "Unfired length:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:55
 | 
					#: lib/cannery_web/components/type_table_component.ex:55
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:80
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:79
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Unfired shell length"
 | 
					msgid "Unfired shell length"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:179
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,13 +129,13 @@ msgstr "Mot de passe mis à jour avec succès."
 | 
				
			|||||||
msgid "Please check your email to verify your account"
 | 
					msgid "Please check your email to verify your account"
 | 
				
			||||||
msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
 | 
					msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:58
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Sauvegarde en cours…"
 | 
					msgstr "Sauvegarde en cours…"
 | 
				
			||||||
@@ -220,7 +220,7 @@ msgstr "%{name} retiré avec succès"
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr "Vous aurez besoin de"
 | 
					msgstr "Vous aurez besoin de"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Création en cours…"
 | 
					msgstr "Création en cours…"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -126,13 +126,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Reset password"
 | 
					msgid "Reset password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:56
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:55
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:35
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:44
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:353
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -189,7 +189,7 @@ msgstr ""
 | 
				
			|||||||
msgid "add a container first"
 | 
					msgid "add a container first"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:83
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -42,49 +42,49 @@ msgid "Background color"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:86
 | 
					#: lib/cannery_web/components/type_table_component.ex:86
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:327
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:175
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:174
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass"
 | 
					msgid "Brass"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:148
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet core"
 | 
					msgid "Bullet core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:59
 | 
					#: lib/cannery_web/components/type_table_component.ex:59
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:121
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bullet type"
 | 
					msgid "Bullet type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:68
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Caliber"
 | 
					msgid "Caliber"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:49
 | 
					#: lib/cannery_web/components/type_table_component.ex:49
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:51
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Cartridge"
 | 
					msgid "Cartridge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:66
 | 
					#: lib/cannery_web/components/type_table_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:170
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Case material"
 | 
					msgid "Case material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:64
 | 
					#: lib/cannery_web/components/move_pack_component.ex:64
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:76
 | 
					#: lib/cannery_web/components/pack_table_component.ex:76
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:66
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:65
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -98,7 +98,7 @@ msgid "Containers"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:87
 | 
					#: lib/cannery_web/components/type_table_component.ex:87
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:332
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:331
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -143,19 +143,19 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:135
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "FMJ"
 | 
					msgid "FMJ"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:58
 | 
					#: lib/cannery_web/components/type_table_component.ex:58
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:112
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:111
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Grains"
 | 
					msgid "Grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:85
 | 
					#: lib/cannery_web/components/type_table_component.ex:85
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:323
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -189,7 +189,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:47
 | 
					#: lib/cannery_web/components/container_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:66
 | 
					#: lib/cannery_web/components/move_pack_component.ex:66
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:46
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Location"
 | 
					msgid "Location"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -200,14 +200,14 @@ msgstr ""
 | 
				
			|||||||
msgid "Location:"
 | 
					msgid "Location:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:41
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Magazine, Clip, Ammo Box, etc"
 | 
					msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:336
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:340
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:339
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -291,13 +291,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Notes:"
 | 
					msgid "Notes:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:50
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "On the bookshelf"
 | 
					msgid "On the bookshelf"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:79
 | 
					#: lib/cannery_web/components/type_table_component.ex:79
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:260
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -314,7 +314,7 @@ msgid "Price paid:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:82
 | 
					#: lib/cannery_web/components/type_table_component.ex:82
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:300
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:299
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -345,7 +345,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:155
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:154
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -380,7 +380,7 @@ msgid "The self-hosted firearm tracker website"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:84
 | 
					#: lib/cannery_web/components/type_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:320
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:319
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -388,7 +388,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/container_table_component.ex:48
 | 
					#: lib/cannery_web/components/container_table_component.ex:48
 | 
				
			||||||
#: lib/cannery_web/components/move_pack_component.ex:65
 | 
					#: lib/cannery_web/components/move_pack_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:108
 | 
					#: lib/cannery_web/components/pack_table_component.ex:108
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:22
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Type"
 | 
					msgid "Type"
 | 
				
			||||||
@@ -431,10 +431,10 @@ msgstr ""
 | 
				
			|||||||
msgid "Range day"
 | 
					msgid "Range day"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:49
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:48
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:47
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:91
 | 
					#: lib/cannery_web/live/pack_live/show.ex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:40
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Date"
 | 
					msgid "Date"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -506,36 +506,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:164
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Bimetal"
 | 
					msgid "Bimetal"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:65
 | 
					#: lib/cannery_web/components/type_table_component.ex:65
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:160
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:159
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Jacket type"
 | 
					msgid "Jacket type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:81
 | 
					#: lib/cannery_web/components/type_table_component.ex:81
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:282
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Muzzle velocity"
 | 
					msgid "Muzzle velocity"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:75
 | 
					#: lib/cannery_web/components/type_table_component.ex:75
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:248
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:247
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder grains per charge"
 | 
					msgid "Powder grains per charge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:73
 | 
					#: lib/cannery_web/components/type_table_component.ex:73
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:240
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:239
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder type"
 | 
					msgid "Powder type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:346
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -559,7 +559,7 @@ msgid "New password"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:83
 | 
					#: lib/cannery_web/components/type_table_component.ex:83
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:308
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:307
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -657,7 +657,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:76
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:75
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1142,27 +1142,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:264
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:75
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "5.56x46mm NATO"
 | 
					msgid "5.56x46mm NATO"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:304
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:303
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:312
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1212,13 +1212,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:317
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:316
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Attributes"
 | 
					msgid "Attributes"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:56
 | 
					#: lib/cannery_web/components/type_table_component.ex:56
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:89
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:88
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1229,7 +1229,7 @@ msgid "Brass height:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:57
 | 
					#: lib/cannery_web/components/type_table_component.ex:57
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:96
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:95
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1239,13 +1239,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:48
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:47
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dimensions"
 | 
					msgid "Dimensions"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:80
 | 
					#: lib/cannery_web/components/type_table_component.ex:80
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:269
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1256,7 +1256,7 @@ msgid "Dram equivalent:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:51
 | 
					#: lib/cannery_web/components/type_table_component.ex:51
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:67
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:66
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1267,7 +1267,7 @@ msgid "Gauge:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:71
 | 
					#: lib/cannery_web/components/type_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:211
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:210
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1297,17 +1297,17 @@ msgstr ""
 | 
				
			|||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:237
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:236
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:296
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:109
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:108
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1323,7 +1323,7 @@ msgid "Rifle"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:72
 | 
					#: lib/cannery_web/components/type_table_component.ex:72
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:219
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:218
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1334,7 +1334,7 @@ msgid "Shot charge weight:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:69
 | 
					#: lib/cannery_web/components/type_table_component.ex:69
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:194
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1345,7 +1345,7 @@ msgid "Shot material:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:70
 | 
					#: lib/cannery_web/components/type_table_component.ex:70
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:203
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1356,7 +1356,7 @@ msgid "Shot size:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:68
 | 
					#: lib/cannery_web/components/type_table_component.ex:68
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:187
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:186
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1377,12 +1377,12 @@ msgid "Shotgun"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:61
 | 
					#: lib/cannery_web/components/type_table_component.ex:61
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:146
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Slug core"
 | 
					msgid "Slug core"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:190
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1393,13 +1393,13 @@ msgid "Unfired length:"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:55
 | 
					#: lib/cannery_web/components/type_table_component.ex:55
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:80
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:79
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Unfired shell length"
 | 
					msgid "Unfired shell length"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:67
 | 
					#: lib/cannery_web/components/type_table_component.ex:67
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:180
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:179
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -120,13 +120,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Please check your email to verify your account"
 | 
					msgid "Please check your email to verify your account"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:58
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -209,7 +209,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -109,13 +109,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Please check your email to verify your account"
 | 
					msgid "Please check your email to verify your account"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:58
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:37
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:91
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:46
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:355
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -198,7 +198,7 @@ msgstr ""
 | 
				
			|||||||
msgid "You'll need to"
 | 
					msgid "You'll need to"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:84
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user