forked from shibao/cannery
		
	add slimselect to select elements with user content
This commit is contained in:
		@@ -1,4 +1,5 @@
 | 
				
			|||||||
# v0.9.12
 | 
					# v0.9.12
 | 
				
			||||||
 | 
					- Add SlimSelect to select elements with user content
 | 
				
			||||||
- Fix registration page not offering all translations
 | 
					- Fix registration page not offering all translations
 | 
				
			||||||
- Update deps
 | 
					- Update deps
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -8,6 +8,8 @@ $fa-font-path: "@fortawesome/fontawesome-free/webfonts";
 | 
				
			|||||||
@import "@fortawesome/fontawesome-free/scss/solid";
 | 
					@import "@fortawesome/fontawesome-free/scss/solid";
 | 
				
			||||||
@import "@fortawesome/fontawesome-free/scss/brands";
 | 
					@import "@fortawesome/fontawesome-free/scss/brands";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@import "slim-select/styles";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@import "components";
 | 
					@import "components";
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* fix firefox scrollbars */
 | 
					/* fix firefox scrollbars */
 | 
				
			||||||
@@ -152,3 +154,57 @@ $fa-font-path: "@fortawesome/fontawesome-free/webfonts";
 | 
				
			|||||||
  0% { opacity: 1; }
 | 
					  0% { opacity: 1; }
 | 
				
			||||||
  100% { opacity: 0; }
 | 
					  100% { opacity: 0; }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-main {
 | 
				
			||||||
 | 
					  @apply input;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-main.input-primary {
 | 
				
			||||||
 | 
					  @apply border-primary-500 hover:border-primary-600 active:border-primary-600;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content {
 | 
				
			||||||
 | 
					  @apply input;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.input-primary {
 | 
				
			||||||
 | 
					  @apply border-primary-500 hover:border-primary-600 active:border-primary-600;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.ss-open-above {
 | 
				
			||||||
 | 
					  border-bottom-left-radius: 0px;
 | 
				
			||||||
 | 
					  border-bottom-right-radius: 0px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.ss-open-below {
 | 
				
			||||||
 | 
					  border-top-left-radius: 0px;
 | 
				
			||||||
 | 
					  border-top-right-radius: 0px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-search input[type="search"] {
 | 
				
			||||||
 | 
					  @apply input;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.input-primary .ss-search input[type="search"] {
 | 
				
			||||||
 | 
					  @apply border-primary-500 hover:border-primary-600 active:border-primary-600;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.ss-open-above .ss-search {
 | 
				
			||||||
 | 
					  padding: var(--ss-spacing-l) 0 0 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.ss-open-below .ss-search {
 | 
				
			||||||
 | 
					  padding: 0 0 var(--ss-spacing-l) 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.ss-open-above .ss-list > *:not(:first-child) {
 | 
				
			||||||
 | 
					  margin: var(--ss-spacing-l) 0 0 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content.ss-open-below .ss-list > *:not(:last-child) {
 | 
				
			||||||
 | 
					  margin: 0 0 var(--ss-spacing-l) 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.ss-content .ss-list .ss-option {
 | 
				
			||||||
 | 
					  border-radius: var(--ss-border-radius);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -24,15 +24,16 @@ import 'phoenix_html'
 | 
				
			|||||||
// Establish Phoenix Socket and LiveView configuration.
 | 
					// Establish Phoenix Socket and LiveView configuration.
 | 
				
			||||||
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 ShotLogChart from './shot_log_chart'
 | 
					 | 
				
			||||||
import Date from './date'
 | 
					import Date from './date'
 | 
				
			||||||
import DateTime from './datetime'
 | 
					import DateTime from './datetime'
 | 
				
			||||||
 | 
					import ShotLogChart from './shot_log_chart'
 | 
				
			||||||
 | 
					import SlimSelect from './slim_select'
 | 
				
			||||||
 | 
					import topbar from 'topbar'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
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, ShotLogChart }
 | 
					  hooks: { Date, DateTime, ShotLogChart, SlimSelect }
 | 
				
			||||||
})
 | 
					})
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Show progress bar on live navigation and form submits
 | 
					// Show progress bar on live navigation and form submits
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										23
									
								
								assets/js/slim_select.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								assets/js/slim_select.js
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
				
			|||||||
 | 
					import SlimSelect from 'slim-select'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export default {
 | 
				
			||||||
 | 
					  initalizeSlimSelect (el) {
 | 
				
			||||||
 | 
					    // eslint-disable-next-line no-new
 | 
				
			||||||
 | 
					    el.slimselect = new SlimSelect({ select: el })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const main = document.querySelector(`.ss-main[data-id="${el.dataset.id}"]`)
 | 
				
			||||||
 | 
					    main.setAttribute('id', `${el.dataset.id}-main`)
 | 
				
			||||||
 | 
					    main.setAttribute('phx-update', 'ignore')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    const content = document.querySelector(`.ss-content[data-id="${el.dataset.id}"]`)
 | 
				
			||||||
 | 
					    content.setAttribute('id', `${el.dataset.id}-content`)
 | 
				
			||||||
 | 
					    content.setAttribute('phx-update', 'ignore')
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  updated () {
 | 
				
			||||||
 | 
					    this.el.slimselect?.destroy()
 | 
				
			||||||
 | 
					    this.initalizeSlimSelect(this.el)
 | 
				
			||||||
 | 
					  },
 | 
				
			||||||
 | 
					  mounted () {
 | 
				
			||||||
 | 
					    this.initalizeSlimSelect(this.el)
 | 
				
			||||||
 | 
					  }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										7
									
								
								assets/package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										7
									
								
								assets/package-lock.json
									
									
									
										generated
									
									
									
								
							@@ -13,6 +13,7 @@
 | 
				
			|||||||
        "phoenix": "file:../deps/phoenix",
 | 
					        "phoenix": "file:../deps/phoenix",
 | 
				
			||||||
        "phoenix_html": "file:../deps/phoenix_html",
 | 
					        "phoenix_html": "file:../deps/phoenix_html",
 | 
				
			||||||
        "phoenix_live_view": "file:../deps/phoenix_live_view",
 | 
					        "phoenix_live_view": "file:../deps/phoenix_live_view",
 | 
				
			||||||
 | 
					        "slim-select": "^2.9.2",
 | 
				
			||||||
        "topbar": "^3.0.0"
 | 
					        "topbar": "^3.0.0"
 | 
				
			||||||
      },
 | 
					      },
 | 
				
			||||||
      "devDependencies": {
 | 
					      "devDependencies": {
 | 
				
			||||||
@@ -12197,6 +12198,12 @@
 | 
				
			|||||||
        "url": "https://github.com/sponsors/sindresorhus"
 | 
					        "url": "https://github.com/sponsors/sindresorhus"
 | 
				
			||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
 | 
					    "node_modules/slim-select": {
 | 
				
			||||||
 | 
					      "version": "2.9.2",
 | 
				
			||||||
 | 
					      "resolved": "https://registry.npmjs.org/slim-select/-/slim-select-2.9.2.tgz",
 | 
				
			||||||
 | 
					      "integrity": "sha512-3Kxgj7Nk7sHHEu8Xzq70pkNNNdKmOr3OwKOjqSzcGeJ9j2hCOxIvIdYcAqKUM1eRnl+3ycKKK/YrzsjxrxAoZg==",
 | 
				
			||||||
 | 
					      "license": "MIT"
 | 
				
			||||||
 | 
					    },
 | 
				
			||||||
    "node_modules/sockjs": {
 | 
					    "node_modules/sockjs": {
 | 
				
			||||||
      "version": "0.3.24",
 | 
					      "version": "0.3.24",
 | 
				
			||||||
      "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
 | 
					      "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,6 +20,7 @@
 | 
				
			|||||||
    "phoenix": "file:../deps/phoenix",
 | 
					    "phoenix": "file:../deps/phoenix",
 | 
				
			||||||
    "phoenix_html": "file:../deps/phoenix_html",
 | 
					    "phoenix_html": "file:../deps/phoenix_html",
 | 
				
			||||||
    "phoenix_live_view": "file:../deps/phoenix_live_view",
 | 
					    "phoenix_live_view": "file:../deps/phoenix_live_view",
 | 
				
			||||||
 | 
					    "slim-select": "^2.9.2",
 | 
				
			||||||
    "topbar": "^3.0.0"
 | 
					    "topbar": "^3.0.0"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  "devDependencies": {
 | 
					  "devDependencies": {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,7 +129,7 @@
 | 
				
			|||||||
        {"Français", "fr"},
 | 
					        {"Français", "fr"},
 | 
				
			||||||
        {"Español", "es"}
 | 
					        {"Español", "es"}
 | 
				
			||||||
      ],
 | 
					      ],
 | 
				
			||||||
      class: "mx-2 my-1 min-w-md input input-primary col-span-3"
 | 
					      class: "my-1 min-w-md input input-primary col-span-3"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :locale, "col-span-3") %>
 | 
					    <%= error_tag(f, :locale, "col-span-3") %>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,7 +44,9 @@
 | 
				
			|||||||
      phx-submit="save"
 | 
					      phx-submit="save"
 | 
				
			||||||
    >
 | 
					    >
 | 
				
			||||||
      <%= select(f, :tag_id, tag_options(@tags, @container),
 | 
					      <%= select(f, :tag_id, tag_options(@tags, @container),
 | 
				
			||||||
        class: "text-center col-span-2 input input-primary"
 | 
					        class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
 | 
					        id: "#{@id}-tag-select",
 | 
				
			||||||
 | 
					        phx_hook: "SlimSelect"
 | 
				
			||||||
      ) %>
 | 
					      ) %>
 | 
				
			||||||
      <%= error_tag(f, :tag_id, "col-span-3 text-center") %>
 | 
					      <%= error_tag(f, :tag_id, "col-span-3 text-center") %>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -21,7 +21,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    <%= label(f, :type_id, gettext("Type"), class: "title text-lg text-primary-600") %>
 | 
					    <%= label(f, :type_id, gettext("Type"), class: "title text-lg text-primary-600") %>
 | 
				
			||||||
    <%= select(f, :type_id, type_options(@types),
 | 
					    <%= select(f, :type_id, type_options(@types),
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary"
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
 | 
					      id: "pack-form-type-select",
 | 
				
			||||||
 | 
					      phx_hook: "SlimSelect"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :type_id, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :type_id, "col-span-3 text-center") %>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -66,7 +68,9 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    <%= label(f, :container, gettext("Container"), class: "title text-lg text-primary-600") %>
 | 
					    <%= label(f, :container, gettext("Container"), class: "title text-lg text-primary-600") %>
 | 
				
			||||||
    <%= select(f, :container_id, container_options(@containers),
 | 
					    <%= select(f, :container_id, container_options(@containers),
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary"
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
 | 
					      id: "pack-form-container-select",
 | 
				
			||||||
 | 
					      phx_hook: "SlimSelect"
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
    <%= error_tag(f, :container_id, "col-span-3 text-center") %>
 | 
					    <%= error_tag(f, :container_id, "col-span-3 text-center") %>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -22,7 +22,11 @@
 | 
				
			|||||||
    <%= select(
 | 
					    <%= select(
 | 
				
			||||||
      f,
 | 
					      f,
 | 
				
			||||||
      :class,
 | 
					      :class,
 | 
				
			||||||
      [{gettext("Rifle"), :rifle}, {gettext("Shotgun"), :shotgun}, {gettext("Pistol"), :pistol}],
 | 
					      [
 | 
				
			||||||
 | 
					        {gettext("Rifle"), :rifle},
 | 
				
			||||||
 | 
					        {gettext("Shotgun"), :shotgun},
 | 
				
			||||||
 | 
					        {gettext("Pistol"), :pistol}
 | 
				
			||||||
 | 
					      ],
 | 
				
			||||||
      class: "text-center col-span-2 input input-primary",
 | 
					      class: "text-center col-span-2 input input-primary",
 | 
				
			||||||
      maxlength: 255
 | 
					      maxlength: 255
 | 
				
			||||||
    ) %>
 | 
					    ) %>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -118,10 +118,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -136,7 +136,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,10 +131,10 @@ msgstr "Passwort zurücksetzen"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Speichern"
 | 
					msgstr "Speichern"
 | 
				
			||||||
@@ -149,7 +149,7 @@ msgstr "Anleitung zum Passwort zurücksetzen zusenden"
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr "Warum fügen Sie keine hinzu?"
 | 
					msgstr "Warum fügen Sie keine hinzu?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr "Hinzufügen"
 | 
					msgstr "Hinzufügen"
 | 
				
			||||||
@@ -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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, 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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, 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:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, 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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Behälter"
 | 
					msgstr "Behälter"
 | 
				
			||||||
@@ -100,13 +100,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Korrosiv"
 | 
					msgstr "Korrosiv"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr "Anzahl"
 | 
					msgstr "Anzahl"
 | 
				
			||||||
@@ -119,7 +119,7 @@ msgstr "Anzahl:"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
msgstr "Beschreibung"
 | 
					msgstr "Beschreibung"
 | 
				
			||||||
@@ -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:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Brandmunition"
 | 
					msgstr "Brandmunition"
 | 
				
			||||||
@@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
					msgstr "Magazin, Ladestreifen, Munitionskiste usw."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Hersteller"
 | 
					msgstr "Hersteller"
 | 
				
			||||||
@@ -229,7 +229,7 @@ msgstr "Meine coole Munitionskiste"
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr "Name"
 | 
					msgstr "Name"
 | 
				
			||||||
@@ -280,7 +280,7 @@ msgstr "Keine Tags"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -299,13 +299,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Druck"
 | 
					msgstr "Druck"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr "Kaufpreis"
 | 
					msgstr "Kaufpreis"
 | 
				
			||||||
@@ -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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, 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:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, 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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Leuchtspur"
 | 
					msgstr "Leuchtspur"
 | 
				
			||||||
@@ -501,36 +501,36 @@ msgstr "Schießkladde"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "$%{amount}"
 | 
					msgstr "$%{amount}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr "UPC"
 | 
					msgstr "UPC"
 | 
				
			||||||
@@ -554,7 +554,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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Patronenhülsenform"
 | 
					msgstr "Patronenhülsenform"
 | 
				
			||||||
@@ -653,7 +653,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:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Kopien"
 | 
					msgstr "Kopien"
 | 
				
			||||||
@@ -979,7 +979,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1119,27 +1119,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1189,13 +1189,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr "Messing"
 | 
					msgstr "Messing"
 | 
				
			||||||
@@ -1206,7 +1206,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1216,13 +1216,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1233,7 +1233,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1244,7 +1244,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1267,24 +1267,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, 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:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, 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:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1292,7 +1292,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1300,7 +1300,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1311,7 +1311,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1322,7 +1322,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Schüsse abgegeben"
 | 
					msgstr "Schüsse abgegeben"
 | 
				
			||||||
@@ -1333,7 +1333,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1346,7 +1346,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1354,12 +1354,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1370,13 +1370,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1433,7 +1433,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr "Art"
 | 
					msgstr "Art"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,10 +131,10 @@ msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Speichere..."
 | 
					msgstr "Speichere..."
 | 
				
			||||||
@@ -161,7 +161,7 @@ msgstr "%{name} erfolgreich hinzugefügt"
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr "%{tag_name} wurde von %{container_name} entfernt"
 | 
					msgstr "%{tag_name} wurde von %{container_name} entfernt"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr "Füge hinzu..."
 | 
					msgstr "Füge hinzu..."
 | 
				
			||||||
@@ -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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, 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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -96,13 +96,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -115,7 +115,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
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:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -225,7 +225,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -276,7 +276,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -295,13 +295,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, 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:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, 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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -495,36 +495,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -548,7 +548,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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -647,7 +647,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -973,7 +973,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1102,27 +1102,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1172,13 +1172,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1189,7 +1189,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1199,13 +1199,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1216,7 +1216,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1227,7 +1227,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1250,24 +1250,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1275,7 +1275,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1283,7 +1283,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1294,7 +1294,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1305,7 +1305,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1316,7 +1316,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1329,7 +1329,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1337,12 +1337,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1353,13 +1353,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1416,7 +1416,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -118,10 +118,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -136,7 +136,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, 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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -96,13 +96,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -115,7 +115,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
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:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -225,7 +225,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -276,7 +276,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -295,13 +295,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, 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:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, 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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -495,36 +495,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -548,7 +548,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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -647,7 +647,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -973,7 +973,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1102,27 +1102,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1172,13 +1172,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1189,7 +1189,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1199,13 +1199,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1216,7 +1216,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1227,7 +1227,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1250,24 +1250,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, 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:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, 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:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1275,7 +1275,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1283,7 +1283,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1294,7 +1294,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1305,7 +1305,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1316,7 +1316,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1329,7 +1329,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1337,12 +1337,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1353,13 +1353,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1416,7 +1416,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -112,10 +112,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -140,7 +140,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,10 +131,10 @@ msgstr "Resetear contraseña"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Guardar"
 | 
					msgstr "Guardar"
 | 
				
			||||||
@@ -149,7 +149,7 @@ msgstr "Enviar instrucciones para reestablecer contraseña"
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr "¿Por qué no añadir una?"
 | 
					msgstr "¿Por qué no añadir una?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr "Añadir"
 | 
					msgstr "Añadir"
 | 
				
			||||||
@@ -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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, 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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, 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:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, 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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Contenedor"
 | 
					msgstr "Contenedor"
 | 
				
			||||||
@@ -100,13 +100,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Corrosiva"
 | 
					msgstr "Corrosiva"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr "Cantidad"
 | 
					msgstr "Cantidad"
 | 
				
			||||||
@@ -119,7 +119,7 @@ msgstr "Cantidad:"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
msgstr "Descripción"
 | 
					msgstr "Descripción"
 | 
				
			||||||
@@ -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:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Incendiaria"
 | 
					msgstr "Incendiaria"
 | 
				
			||||||
@@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
					msgstr "Cargador, Clip, Caja de Munición, etc"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Fabricante"
 | 
					msgstr "Fabricante"
 | 
				
			||||||
@@ -229,7 +229,7 @@ msgstr "Mi lata de munición guapa"
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr "Nombre"
 | 
					msgstr "Nombre"
 | 
				
			||||||
@@ -280,7 +280,7 @@ msgstr "Sin etiquetas"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -299,13 +299,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Presión"
 | 
					msgstr "Presión"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr "Precio pagado"
 | 
					msgstr "Precio pagado"
 | 
				
			||||||
@@ -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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, 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:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, 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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Trazadora"
 | 
					msgstr "Trazadora"
 | 
				
			||||||
@@ -502,36 +502,36 @@ msgstr "Registro de tiros"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "$%{amount}"
 | 
					msgstr "$%{amount}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -555,7 +555,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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Tipo de fuego"
 | 
					msgstr "Tipo de fuego"
 | 
				
			||||||
@@ -654,7 +654,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:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Copias"
 | 
					msgstr "Copias"
 | 
				
			||||||
@@ -981,7 +981,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr "Nunca usada"
 | 
					msgstr "Nunca usada"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr "Comprada en"
 | 
					msgstr "Comprada en"
 | 
				
			||||||
@@ -1121,27 +1121,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1191,13 +1191,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr "Latón"
 | 
					msgstr "Latón"
 | 
				
			||||||
@@ -1208,7 +1208,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1218,13 +1218,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1235,7 +1235,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1246,7 +1246,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1269,24 +1269,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, 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:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, 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:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1294,7 +1294,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1302,7 +1302,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1313,7 +1313,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1324,7 +1324,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr "Tiros disparados"
 | 
					msgstr "Tiros disparados"
 | 
				
			||||||
@@ -1335,7 +1335,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1348,7 +1348,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1356,12 +1356,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1372,13 +1372,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1435,7 +1435,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr "Tipo"
 | 
					msgstr "Tipo"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,10 +131,10 @@ msgstr "Por favor chequea el correo para verificar tu cuenta"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Guardando..."
 | 
					msgstr "Guardando..."
 | 
				
			||||||
@@ -160,7 +160,7 @@ msgstr "%{name} añadido exitosamente"
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr "se ha removido %{tag_name} de %{container_name}"
 | 
					msgstr "se ha removido %{tag_name} de %{container_name}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr "Añadiendo..."
 | 
					msgstr "Añadiendo..."
 | 
				
			||||||
@@ -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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Creando..."
 | 
					msgstr "Creando..."
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -131,10 +131,10 @@ msgstr "Réinitialisé le mot de passe"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr "Sauvegarder"
 | 
					msgstr "Sauvegarder"
 | 
				
			||||||
@@ -149,7 +149,7 @@ msgstr "Envoyer les instructions pour réinitialiser le mot de passe"
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr "Pourquoi pas en ajouter un ?"
 | 
					msgstr "Pourquoi pas en ajouter un ?"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
msgstr "Ajouter"
 | 
					msgstr "Ajouter"
 | 
				
			||||||
@@ -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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, 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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, 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:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, 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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr "Conteneur"
 | 
					msgstr "Conteneur"
 | 
				
			||||||
@@ -100,13 +100,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr "Corrosive"
 | 
					msgstr "Corrosive"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr "Quantité"
 | 
					msgstr "Quantité"
 | 
				
			||||||
@@ -119,7 +119,7 @@ msgstr "Quantité :"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
msgstr "Description"
 | 
					msgstr "Description"
 | 
				
			||||||
@@ -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:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr "Incendiaire"
 | 
					msgstr "Incendiaire"
 | 
				
			||||||
@@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
					msgstr "Chargeur, lame-chargeur, boite de munition, etc."
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr "Fabricant"
 | 
					msgstr "Fabricant"
 | 
				
			||||||
@@ -229,7 +229,7 @@ msgstr "Ma superbe boite de munition"
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr "Nom"
 | 
					msgstr "Nom"
 | 
				
			||||||
@@ -280,7 +280,7 @@ msgstr "Aucun tag"
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -299,13 +299,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr "Pression"
 | 
					msgstr "Pression"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr "Prix payé"
 | 
					msgstr "Prix payé"
 | 
				
			||||||
@@ -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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, 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:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, 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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr "Traceuse"
 | 
					msgstr "Traceuse"
 | 
				
			||||||
@@ -503,36 +503,36 @@ msgstr "Évènements de tir"
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr "%{amount} $"
 | 
					msgstr "%{amount} $"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr "UPC"
 | 
					msgstr "UPC"
 | 
				
			||||||
@@ -556,7 +556,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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr "Type d’allumage"
 | 
					msgstr "Type d’allumage"
 | 
				
			||||||
@@ -655,7 +655,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:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr "Exemplaires"
 | 
					msgstr "Exemplaires"
 | 
				
			||||||
@@ -982,7 +982,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1122,27 +1122,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1192,13 +1192,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr "Cuivre"
 | 
					msgstr "Cuivre"
 | 
				
			||||||
@@ -1209,7 +1209,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1219,13 +1219,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1236,7 +1236,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1247,7 +1247,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1270,24 +1270,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, 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:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, 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:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1295,7 +1295,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1303,7 +1303,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1314,7 +1314,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1325,7 +1325,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, 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"
 | 
				
			||||||
@@ -1336,7 +1336,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1349,7 +1349,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1357,12 +1357,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1373,13 +1373,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1436,7 +1436,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr "Type"
 | 
					msgstr "Type"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -132,10 +132,10 @@ msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr "Sauvegarde en cours…"
 | 
					msgstr "Sauvegarde en cours…"
 | 
				
			||||||
@@ -162,7 +162,7 @@ msgstr "%{name} a été ajouté avec succès"
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr "%{tag_name} a été retiré de %{container_name}"
 | 
					msgstr "%{tag_name} a été retiré de %{container_name}"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
msgstr "Ajout en cours…"
 | 
					msgstr "Ajout 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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr "Création en cours…"
 | 
					msgstr "Création en cours…"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,10 +129,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -147,7 +147,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, 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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -98,13 +98,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -117,7 +117,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
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:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -206,8 +206,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -227,7 +227,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -278,7 +278,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -297,13 +297,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, 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:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, 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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -497,36 +497,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "UPC"
 | 
					msgid "UPC"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -550,7 +550,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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -649,7 +649,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -975,7 +975,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1113,27 +1113,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1183,13 +1183,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1200,7 +1200,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1210,13 +1210,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1227,7 +1227,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1238,7 +1238,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1261,24 +1261,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, 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:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, 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:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1286,7 +1286,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1294,7 +1294,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1305,7 +1305,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1316,7 +1316,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, elixir-autogen, elixir-format, fuzzy
 | 
					#, elixir-autogen, elixir-format, fuzzy
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1327,7 +1327,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1340,7 +1340,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1348,12 +1348,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1364,13 +1364,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1427,7 +1427,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -123,10 +123,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -151,7 +151,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -129,10 +129,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:57
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:96
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:45
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:41
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:382
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:386
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Save"
 | 
					msgid "Save"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -147,7 +147,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Why not add one?"
 | 
					msgid "Why not add one?"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Add"
 | 
					msgid "Add"
 | 
				
			||||||
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:85
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:89
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Create"
 | 
					msgid "Create"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -51,49 +51,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:354
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:358
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Blank"
 | 
					msgid "Blank"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:191
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:195
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:159
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:163
 | 
				
			||||||
#, 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:132
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:136
 | 
				
			||||||
#, 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:70
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:74
 | 
				
			||||||
#, 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:53
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:57
 | 
				
			||||||
#, 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:184
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:188
 | 
				
			||||||
#, 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:67
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:69
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Container"
 | 
					msgid "Container"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -107,13 +107,13 @@ 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:358
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:362
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Corrosive"
 | 
					msgid "Corrosive"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:104
 | 
					#: lib/cannery_web/components/pack_table_component.ex:104
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:28
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Count"
 | 
					msgid "Count"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -126,7 +126,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/container_table_component.ex:46
 | 
					#: lib/cannery_web/components/container_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:30
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:43
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Description"
 | 
					msgid "Description"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -152,19 +152,19 @@ msgstr ""
 | 
				
			|||||||
msgid "Edit Tag"
 | 
					msgid "Edit Tag"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:147
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:151
 | 
				
			||||||
#, 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:122
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:126
 | 
				
			||||||
#, 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:350
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:354
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Incendiary"
 | 
					msgid "Incendiary"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -215,8 +215,8 @@ msgid "Magazine, Clip, Ammo Box, etc"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/type_table_component.ex:88
 | 
					#: lib/cannery_web/components/type_table_component.ex:88
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:363
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:367
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:366
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:370
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Manufacturer"
 | 
					msgid "Manufacturer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -236,7 +236,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:21
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:31
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:35
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Name"
 | 
					msgid "Name"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -287,7 +287,7 @@ msgstr ""
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
					#: lib/cannery_web/components/shot_record_table_component.ex:46
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/show.ex:90
 | 
					#: lib/cannery_web/live/pack_live/show.ex:90
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:30
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -306,13 +306,13 @@ 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:283
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:287
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pressure"
 | 
					msgid "Pressure"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:92
 | 
					#: lib/cannery_web/components/pack_table_component.ex:92
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:35
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:37
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Price paid"
 | 
					msgid "Price paid"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -323,7 +323,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:324
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:328
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer type"
 | 
					msgid "Primer type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -354,7 +354,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Simple:"
 | 
					msgid "Simple:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:167
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:171
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Steel"
 | 
					msgid "Steel"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -389,7 +389,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:346
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:350
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Tracer"
 | 
					msgid "Tracer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -506,36 +506,36 @@ msgstr ""
 | 
				
			|||||||
msgid "$%{amount}"
 | 
					msgid "$%{amount}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:177
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:181
 | 
				
			||||||
#, 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:172
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:176
 | 
				
			||||||
#, 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:307
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:311
 | 
				
			||||||
#, 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:270
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:274
 | 
				
			||||||
#, 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:261
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:265
 | 
				
			||||||
#, 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:374
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:378
 | 
				
			||||||
#, 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:333
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:337
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Firing type"
 | 
					msgid "Firing type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -658,7 +658,7 @@ msgstr ""
 | 
				
			|||||||
msgid "Record Shots"
 | 
					msgid "Record Shots"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:77
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:81
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Copies"
 | 
					msgid "Copies"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -984,7 +984,7 @@ msgid "Never used"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:71
 | 
					#: lib/cannery_web/components/pack_table_component.ex:71
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:50
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Purchased on"
 | 
					msgid "Purchased on"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1113,27 +1113,27 @@ msgstr ""
 | 
				
			|||||||
msgid "Password"
 | 
					msgid "Password"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:288
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:292
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "+P"
 | 
					msgid "+P"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:78
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:82
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid ".223"
 | 
					msgid ".223"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:58
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:62
 | 
				
			||||||
#, 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:329
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:333
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Boxer"
 | 
					msgid "Boxer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:338
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:342
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Centerfire"
 | 
					msgid "Centerfire"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1183,13 +1183,13 @@ msgstr ""
 | 
				
			|||||||
msgid "All"
 | 
					msgid "All"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:343
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:347
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "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:93
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:97
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Brass height"
 | 
					msgid "Brass height"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1200,7 +1200,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:103
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:107
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Chamber size"
 | 
					msgid "Chamber size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1210,13 +1210,13 @@ msgstr ""
 | 
				
			|||||||
msgid "Chamber size:"
 | 
					msgid "Chamber size:"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:49
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:53
 | 
				
			||||||
#, 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:293
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:297
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Dram equivalent"
 | 
					msgid "Dram equivalent"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1227,7 +1227,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:69
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:73
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Gauge"
 | 
					msgid "Gauge"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1238,7 +1238,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:231
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:235
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Load grains"
 | 
					msgid "Load grains"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1261,24 +1261,24 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:100
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:94
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:28
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:56
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Pistol"
 | 
					msgid "Pistol"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:258
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:262
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Powder"
 | 
					msgid "Powder"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:321
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:325
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Primer"
 | 
					msgid "Primer"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:119
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:123
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Projectile"
 | 
					msgid "Projectile"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1286,7 +1286,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:98
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:92
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:26
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:38
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:54
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1294,7 +1294,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:239
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:243
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot charge weight"
 | 
					msgid "Shot charge weight"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1305,7 +1305,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:213
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:217
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot material"
 | 
					msgid "Shot material"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1316,7 +1316,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:223
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:227
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot size"
 | 
					msgid "Shot size"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1327,7 +1327,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:204
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:208
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Shot type"
 | 
					msgid "Shot type"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1340,7 +1340,7 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
					#: lib/cannery_web/live/container_live/show.html.heex:99
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
					#: lib/cannery_web/live/pack_live/index.html.heex:60
 | 
				
			||||||
#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
					#: lib/cannery_web/live/range_live/index.html.heex:93
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:25
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:27
 | 
				
			||||||
#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
					#: lib/cannery_web/live/type_live/index.html.heex:39
 | 
				
			||||||
#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
					#: lib/cannery_web/live/type_live/show.html.heex:52
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
@@ -1348,12 +1348,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:158
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:162
 | 
				
			||||||
#, 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:209
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:213
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Target, bird, buck, etc"
 | 
					msgid "Target, bird, buck, etc"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1364,13 +1364,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:83
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:87
 | 
				
			||||||
#, 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:196
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:200
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Wadding"
 | 
					msgid "Wadding"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -1427,7 +1427,7 @@ msgid "No Types"
 | 
				
			|||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/components/pack_table_component.ex:84
 | 
					#: lib/cannery_web/components/pack_table_component.ex:84
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:42
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:44
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Lot number"
 | 
					msgid "Lot number"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -123,10 +123,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -151,7 +151,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -112,10 +112,10 @@ msgstr ""
 | 
				
			|||||||
#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
					#: lib/cannery_web/components/add_shot_record_component.html.heex:59
 | 
				
			||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
					#: lib/cannery_web/live/container_live/form_component.html.heex:61
 | 
				
			||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
					#: lib/cannery_web/live/invite_live/form_component.html.heex:40
 | 
				
			||||||
#: lib/cannery_web/live/pack_live/form_component.html.heex:93
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:97
 | 
				
			||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
					#: lib/cannery_web/live/range_live/form_component.html.heex:47
 | 
				
			||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
					#: lib/cannery_web/live/tag_live/form_component.html.heex:43
 | 
				
			||||||
#: lib/cannery_web/live/type_live/form_component.html.heex:383
 | 
					#: lib/cannery_web/live/type_live/form_component.html.heex:387
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Saving..."
 | 
					msgid "Saving..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
@@ -140,7 +140,7 @@ msgstr ""
 | 
				
			|||||||
msgid "%{tag_name} has been removed from %{container_name}"
 | 
					msgid "%{tag_name} has been removed from %{container_name}"
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53
 | 
					#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Adding..."
 | 
					msgid "Adding..."
 | 
				
			||||||
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:86
 | 
					#: lib/cannery_web/live/pack_live/form_component.html.heex:90
 | 
				
			||||||
#, elixir-autogen, elixir-format
 | 
					#, elixir-autogen, elixir-format
 | 
				
			||||||
msgid "Creating..."
 | 
					msgid "Creating..."
 | 
				
			||||||
msgstr ""
 | 
					msgstr ""
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user