Compare commits

...

3 Commits

Author SHA1 Message Date
abaccac9f0 use :rifle as default ammo type
All checks were successful
continuous-integration/drone/push Build is passing
2023-04-10 20:13:56 -04:00
2b81978adb make bullet type rifle/pistol type-only field 2023-04-10 20:13:55 -04:00
17bfe1a987 remove duplicate chamber size column 2023-04-10 20:13:38 -04:00
22 changed files with 470 additions and 470 deletions

View File

@ -2,6 +2,9 @@
- Add lot number to packs
- Don't show price paid and lot number columns when displaying packs if not used
- Fix additional shotgun fields not being exportable
- Fixes duplicate chamber size column for ammo types
- Hide bullet type field when editing/creating shotgun ammo types
- Fix ammo type creation not displaying all the necessary fields on first load
# v0.9.1
- Rename ammo type's "type" to "class" to avoid confusion

View File

@ -52,11 +52,9 @@ defmodule Cannery.Ammo.Type do
field :name, :string
field :desc, :string
field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol]
field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol], default: :rifle
# common fields
# https://shootersreference.com/reloadingdata/bullet_abbreviations/
field :bullet_type, :string
field :bullet_core, :string
# also gauge for shotguns
field :caliber, :string
@ -75,6 +73,8 @@ defmodule Cannery.Ammo.Type do
field :corrosive, :boolean, default: false
# rifle/pistol fields
# https://shootersreference.com/reloadingdata/bullet_abbreviations/
field :bullet_type, :string
field :cartridge, :string
field :jacket_type, :string
field :powder_grains_per_charge, :integer

View File

@ -55,7 +55,6 @@ defmodule CanneryWeb.Components.TypeTableComponent do
%{label: gettext("Unfired shell length"), key: :unfired_length, type: :string},
%{label: gettext("Brass height"), key: :brass_height, type: :string},
%{label: gettext("Chamber size"), key: :chamber_size, type: :string},
%{label: gettext("Chamber size"), key: :chamber_size, type: :string},
%{label: gettext("Grains"), key: :grains, type: :string},
%{label: gettext("Bullet type"), key: :bullet_type, type: :string},
%{

View File

@ -117,24 +117,28 @@
) %>
<%= error_tag(f, :grains, "col-span-3 text-center") %>
<%= label f, :bullet_type, class: "flex title text-lg text-primary-600 space-x-2" do %>
<p><%= gettext("Bullet type") %></p>
<%= if Changeset.get_field(@changeset, :class) in [:rifle, :pistol] do %>
<%= label f, :bullet_type, class: "flex title text-lg text-primary-600 space-x-2" do %>
<p><%= gettext("Bullet type") %></p>
<.link
href="https://shootersreference.com/reloadingdata/bullet_abbreviations/"
class="link"
target="_blank"
rel="noopener noreferrer"
>
<i class="fas fa-md fa-external-link-alt"></i>
</.link>
<.link
href="https://shootersreference.com/reloadingdata/bullet_abbreviations/"
class="link"
target="_blank"
rel="noopener noreferrer"
>
<i class="fas fa-md fa-external-link-alt"></i>
</.link>
<% end %>
<%= text_input(f, :bullet_type,
class: "text-center col-span-2 input input-primary",
maxlength: 255,
placeholder: gettext("FMJ")
) %>
<%= error_tag(f, :bullet_type, "col-span-3 text-center") %>
<% else %>
<%= hidden_input(f, :bullet_type, value: nil) %>
<% end %>
<%= text_input(f, :bullet_type,
class: "text-center col-span-2 input input-primary",
maxlength: 255,
placeholder: gettext("FMJ")
) %>
<%= error_tag(f, :bullet_type, "col-span-3 text-center") %>
<%= label(
f,

View File

@ -121,7 +121,7 @@ msgstr ""
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
#: lib/cannery_web/live/range_live/form_component.html.heex:45
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
#: lib/cannery_web/live/type_live/form_component.html.heex:350
#: lib/cannery_web/live/type_live/form_component.html.heex:354
#, elixir-autogen, elixir-format
msgid "Save"
msgstr ""

View File

@ -134,7 +134,7 @@ msgstr "Passwort zurücksetzen"
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
#: lib/cannery_web/live/range_live/form_component.html.heex:45
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
#: lib/cannery_web/live/type_live/form_component.html.heex:350
#: lib/cannery_web/live/type_live/form_component.html.heex:354
#, elixir-autogen, elixir-format
msgid "Save"
msgstr "Speichern"

View File

@ -43,25 +43,25 @@ msgstr "Munition"
msgid "Background color"
msgstr "Hintergrundfarbe"
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#, elixir-autogen, elixir-format
msgid "Blank"
msgstr "Knallpatrone"
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#: lib/cannery_web/live/type_live/form_component.html.heex:175
#, elixir-autogen, elixir-format
msgid "Brass"
msgstr "Messing"
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:144
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:148
#, elixir-autogen, elixir-format
msgid "Bullet core"
msgstr "Projektilkern"
#: lib/cannery_web/components/type_table_component.ex:60
#: lib/cannery_web/live/type_live/form_component.html.heex:121
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/live/type_live/form_component.html.heex:122
#, elixir-autogen, elixir-format
msgid "Bullet type"
msgstr "Patronenart"
@ -78,8 +78,8 @@ msgstr "Kaliber"
msgid "Cartridge"
msgstr "Patrone"
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:167
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#, elixir-autogen, elixir-format
msgid "Case material"
msgstr "Gehäusematerial"
@ -99,8 +99,8 @@ msgstr "Behälter"
msgid "Containers"
msgstr "Behälter"
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:332
#, elixir-autogen, elixir-format
msgid "Corrosive"
msgstr "Korrosiv"
@ -145,19 +145,19 @@ msgstr "Einladung bearbeiten"
msgid "Edit Tag"
msgstr "Tag bearbeiten"
#: lib/cannery_web/live/type_live/form_component.html.heex:135
#: lib/cannery_web/live/type_live/form_component.html.heex:136
#, elixir-autogen, elixir-format
msgid "FMJ"
msgstr "VM"
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:112
#, elixir-autogen, elixir-format
msgid "Grains"
msgstr "Körner"
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#, elixir-autogen, elixir-format
msgid "Incendiary"
msgstr "Brandmunition"
@ -207,9 +207,9 @@ msgstr "Standort:"
msgid "Magazine, Clip, Ammo Box, etc"
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
#: lib/cannery_web/components/type_table_component.ex:89
#: lib/cannery_web/live/type_live/form_component.html.heex:333
#: lib/cannery_web/live/type_live/form_component.html.heex:336
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:337
#: lib/cannery_web/live/type_live/form_component.html.heex:340
#, elixir-autogen, elixir-format
msgid "Manufacturer"
msgstr "Hersteller"
@ -225,7 +225,7 @@ msgid "My cool ammo can"
msgstr "Meine coole Munitionskiste"
#: lib/cannery_web/components/container_table_component.ex:45
#: lib/cannery_web/components/type_table_component.ex:153
#: lib/cannery_web/components/type_table_component.ex:152
#: 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/tag_live/form_component.html.heex:21
@ -298,8 +298,8 @@ msgstr "Bemerkungen:"
msgid "On the bookshelf"
msgstr "Auf dem Bücherregal"
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:257
#: lib/cannery_web/components/type_table_component.ex:79
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#, elixir-autogen, elixir-format
msgid "Pressure"
msgstr "Druck"
@ -315,8 +315,8 @@ msgstr "Kaufpreis"
msgid "Price paid:"
msgstr "Kaufpreis:"
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:296
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#, elixir-autogen, elixir-format
msgid "Primer type"
msgstr "Zündertyp"
@ -349,7 +349,7 @@ msgstr "Einstellungen"
msgid "Simple:"
msgstr "Einfach:"
#: lib/cannery_web/live/type_live/form_component.html.heex:151
#: lib/cannery_web/live/type_live/form_component.html.heex:155
#, elixir-autogen, elixir-format
msgid "Steel"
msgstr "Stahl"
@ -383,8 +383,8 @@ msgstr "Textfarbe"
msgid "The self-hosted firearm tracker website"
msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:316
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#, elixir-autogen, elixir-format
msgid "Tracer"
msgstr "Leuchtspur"
@ -502,7 +502,7 @@ msgstr "Schießkladde"
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
#: lib/cannery_web/components/pack_table_component.ex:176
#: lib/cannery_web/components/pack_table_component.ex:259
#: lib/cannery_web/components/type_table_component.ex:261
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/live/pack_live/show.html.heex:37
#: lib/cannery_web/live/pack_live/show.html.heex:42
#: lib/cannery_web/live/type_live/show.html.heex:150
@ -510,36 +510,36 @@ msgstr "Schießkladde"
msgid "$%{amount}"
msgstr "$%{amount}"
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#: lib/cannery_web/live/type_live/form_component.html.heex:164
#, elixir-autogen, elixir-format
msgid "Bimetal"
msgstr "Bimetall"
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:156
#: lib/cannery_web/components/type_table_component.ex:65
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#, elixir-autogen, elixir-format
msgid "Jacket type"
msgstr "Patronenhülse"
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:279
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:283
#, elixir-autogen, elixir-format
msgid "Muzzle velocity"
msgstr "Mündungsgeschwindigkeit"
#: lib/cannery_web/components/type_table_component.ex:76
#: lib/cannery_web/live/type_live/form_component.html.heex:244
#: lib/cannery_web/components/type_table_component.ex:75
#: lib/cannery_web/live/type_live/form_component.html.heex:248
#, elixir-autogen, elixir-format
msgid "Powder grains per charge"
msgstr "Pulverkörner pro Ladung"
#: lib/cannery_web/components/type_table_component.ex:74
#: lib/cannery_web/live/type_live/form_component.html.heex:236
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:240
#, elixir-autogen, elixir-format
msgid "Powder type"
msgstr "Pulverart"
#: lib/cannery_web/live/type_live/form_component.html.heex:343
#: lib/cannery_web/live/type_live/form_component.html.heex:347
#, elixir-autogen, elixir-format
msgid "UPC"
msgstr "UPC"
@ -562,8 +562,8 @@ msgstr "Derzeitiges Passwort"
msgid "New password"
msgstr "Neues Passwort"
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#, elixir-autogen, elixir-format
msgid "Firing type"
msgstr "Patronenhülsenform"
@ -594,7 +594,7 @@ msgstr "Patronen:"
#: lib/cannery_web/components/pack_table_component.ex:173
#: lib/cannery_web/components/pack_table_component.ex:255
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/components/type_table_component.ex:259
#: lib/cannery_web/live/type_live/show.html.heex:154
#, elixir-autogen, elixir-format
msgid "No cost information"
@ -792,13 +792,13 @@ msgid "Rounds shot: %{count}"
msgstr "Patronen abgefeuert"
#: lib/cannery_web/components/container_table_component.ex:64
#: lib/cannery_web/components/type_table_component.ex:123
#: lib/cannery_web/components/type_table_component.ex:122
#, elixir-autogen, elixir-format, fuzzy
msgid "Packs"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:65
#: lib/cannery_web/components/type_table_component.ex:144
#: lib/cannery_web/components/type_table_component.ex:143
#, elixir-autogen, elixir-format, fuzzy
msgid "Rounds"
msgstr "Patronen:"
@ -810,7 +810,7 @@ msgstr "Patronen:"
msgid "View as table"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:108
#: lib/cannery_web/components/type_table_component.ex:107
#, elixir-autogen, elixir-format
msgid "Total ever packs"
msgstr ""
@ -820,7 +820,7 @@ msgstr ""
msgid "Total ever packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:129
#: lib/cannery_web/components/type_table_component.ex:128
#, elixir-autogen, elixir-format, fuzzy
msgid "Total ever rounds"
msgstr "Summe aller Patronen"
@ -830,7 +830,7 @@ msgstr "Summe aller Patronen"
msgid "Total ever rounds:"
msgstr "Summe abgegebener Schüsse:"
#: lib/cannery_web/components/type_table_component.ex:116
#: lib/cannery_web/components/type_table_component.ex:115
#, elixir-autogen, elixir-format
msgid "Used packs"
msgstr ""
@ -840,7 +840,7 @@ msgstr ""
msgid "Used packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:137
#: lib/cannery_web/components/type_table_component.ex:136
#, elixir-autogen, elixir-format, fuzzy
msgid "Used rounds"
msgstr ""
@ -950,7 +950,7 @@ msgstr "Leuchtspur"
msgid "UPC:"
msgstr "UPC"
#: lib/cannery_web/components/type_table_component.ex:102
#: lib/cannery_web/components/type_table_component.ex:101
#: lib/cannery_web/live/type_live/show.html.heex:146
#, elixir-autogen, elixir-format
msgid "Average CPR"
@ -1148,7 +1148,7 @@ msgstr ""
msgid "Password"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#: lib/cannery_web/live/type_live/form_component.html.heex:265
#, elixir-autogen, elixir-format
msgid "+P"
msgstr ""
@ -1163,12 +1163,12 @@ msgstr ""
msgid "5.56x46mm NATO"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#, elixir-autogen, elixir-format
msgid "Boxer"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#: lib/cannery_web/live/type_live/form_component.html.heex:312
#, elixir-autogen, elixir-format
msgid "Centerfire"
msgstr ""
@ -1183,7 +1183,7 @@ msgstr ""
#: lib/cannery_web/components/move_pack_component.ex:68
#: lib/cannery_web/components/pack_table_component.ex:62
#: lib/cannery_web/components/shot_record_table_component.ex:48
#: lib/cannery_web/components/type_table_component.ex:100
#: lib/cannery_web/components/type_table_component.ex:99
#: lib/cannery_web/live/pack_live/show.ex:93
#, elixir-autogen, elixir-format
msgid "Actions"
@ -1218,7 +1218,7 @@ msgstr ""
msgid "All"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:313
#: lib/cannery_web/live/type_live/form_component.html.heex:317
#, elixir-autogen, elixir-format
msgid "Attributes"
msgstr ""
@ -1235,7 +1235,6 @@ msgid "Brass height:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:57
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:96
#, elixir-autogen, elixir-format
msgid "Chamber size"
@ -1251,8 +1250,8 @@ msgstr ""
msgid "Dimensions"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:266
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:270
#, elixir-autogen, elixir-format
msgid "Dram equivalent"
msgstr ""
@ -1273,8 +1272,8 @@ msgstr ""
msgid "Gauge:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:207
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:211
#, elixir-autogen, elixir-format
msgid "Load grains"
msgstr ""
@ -1304,12 +1303,12 @@ msgstr ""
msgid "Pistol"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:233
#: lib/cannery_web/live/type_live/form_component.html.heex:237
#, elixir-autogen, elixir-format, fuzzy
msgid "Powder"
msgstr "Pulverart"
#: lib/cannery_web/live/type_live/form_component.html.heex:293
#: lib/cannery_web/live/type_live/form_component.html.heex:297
#, elixir-autogen, elixir-format, fuzzy
msgid "Primer"
msgstr "Zündertyp"
@ -1329,8 +1328,8 @@ msgstr ""
msgid "Rifle"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:215
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:219
#, elixir-autogen, elixir-format
msgid "Shot charge weight"
msgstr ""
@ -1340,8 +1339,8 @@ msgstr ""
msgid "Shot charge weight:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:195
#, elixir-autogen, elixir-format
msgid "Shot material"
msgstr ""
@ -1351,8 +1350,8 @@ msgstr ""
msgid "Shot material:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:200
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:204
#, elixir-autogen, elixir-format, fuzzy
msgid "Shot size"
msgstr "Schüsse abgegeben"
@ -1362,8 +1361,8 @@ msgstr "Schüsse abgegeben"
msgid "Shot size:"
msgstr "Schüsse abgegeben"
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:183
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#, elixir-autogen, elixir-format
msgid "Shot type"
msgstr ""
@ -1383,13 +1382,13 @@ msgstr ""
msgid "Shotgun"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:143
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:147
#, elixir-autogen, elixir-format
msgid "Slug core"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#, elixir-autogen, elixir-format
msgid "Target, bird, buck, etc"
msgstr ""
@ -1405,8 +1404,8 @@ msgstr ""
msgid "Unfired shell length"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:176
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:180
#, elixir-autogen, elixir-format
msgid "Wadding"
msgstr ""
@ -1416,7 +1415,7 @@ msgstr ""
msgid "Wadding:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:150
#: lib/cannery_web/components/type_table_component.ex:149
#: lib/cannery_web/live/container_live/show.html.heex:97
#: lib/cannery_web/live/pack_live/index.html.heex:50
#: lib/cannery_web/live/range_live/index.html.heex:86

View File

@ -134,7 +134,7 @@ msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
#: lib/cannery_web/live/range_live/form_component.html.heex:47
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
#: lib/cannery_web/live/type_live/form_component.html.heex:351
#: lib/cannery_web/live/type_live/form_component.html.heex:355
#, elixir-autogen, elixir-format
msgid "Saving..."
msgstr "Speichere..."

View File

@ -39,25 +39,25 @@ msgstr ""
msgid "Background color"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#, elixir-autogen, elixir-format
msgid "Blank"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#: lib/cannery_web/live/type_live/form_component.html.heex:175
#, elixir-autogen, elixir-format
msgid "Brass"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:144
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:148
#, elixir-autogen, elixir-format
msgid "Bullet core"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:60
#: lib/cannery_web/live/type_live/form_component.html.heex:121
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/live/type_live/form_component.html.heex:122
#, elixir-autogen, elixir-format
msgid "Bullet type"
msgstr ""
@ -74,8 +74,8 @@ msgstr ""
msgid "Cartridge"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:167
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#, elixir-autogen, elixir-format
msgid "Case material"
msgstr ""
@ -95,8 +95,8 @@ msgstr ""
msgid "Containers"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:332
#, elixir-autogen, elixir-format
msgid "Corrosive"
msgstr ""
@ -141,19 +141,19 @@ msgstr ""
msgid "Edit Tag"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:135
#: lib/cannery_web/live/type_live/form_component.html.heex:136
#, elixir-autogen, elixir-format
msgid "FMJ"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:112
#, elixir-autogen, elixir-format
msgid "Grains"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#, elixir-autogen, elixir-format
msgid "Incendiary"
msgstr ""
@ -203,9 +203,9 @@ msgstr ""
msgid "Magazine, Clip, Ammo Box, etc"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:89
#: lib/cannery_web/live/type_live/form_component.html.heex:333
#: lib/cannery_web/live/type_live/form_component.html.heex:336
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:337
#: lib/cannery_web/live/type_live/form_component.html.heex:340
#, elixir-autogen, elixir-format
msgid "Manufacturer"
msgstr ""
@ -221,7 +221,7 @@ msgid "My cool ammo can"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:45
#: lib/cannery_web/components/type_table_component.ex:153
#: lib/cannery_web/components/type_table_component.ex:152
#: 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/tag_live/form_component.html.heex:21
@ -294,8 +294,8 @@ msgstr ""
msgid "On the bookshelf"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:257
#: lib/cannery_web/components/type_table_component.ex:79
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#, elixir-autogen, elixir-format
msgid "Pressure"
msgstr ""
@ -311,8 +311,8 @@ msgstr ""
msgid "Price paid:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:296
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#, elixir-autogen, elixir-format
msgid "Primer type"
msgstr ""
@ -343,7 +343,7 @@ msgstr ""
msgid "Simple:"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:151
#: lib/cannery_web/live/type_live/form_component.html.heex:155
#, elixir-autogen, elixir-format
msgid "Steel"
msgstr ""
@ -377,8 +377,8 @@ msgstr ""
msgid "The self-hosted firearm tracker website"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:316
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#, elixir-autogen, elixir-format
msgid "Tracer"
msgstr ""
@ -496,7 +496,7 @@ msgstr ""
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
#: lib/cannery_web/components/pack_table_component.ex:176
#: lib/cannery_web/components/pack_table_component.ex:259
#: lib/cannery_web/components/type_table_component.ex:261
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/live/pack_live/show.html.heex:37
#: lib/cannery_web/live/pack_live/show.html.heex:42
#: lib/cannery_web/live/type_live/show.html.heex:150
@ -504,36 +504,36 @@ msgstr ""
msgid "$%{amount}"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#: lib/cannery_web/live/type_live/form_component.html.heex:164
#, elixir-autogen, elixir-format
msgid "Bimetal"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:156
#: lib/cannery_web/components/type_table_component.ex:65
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#, elixir-autogen, elixir-format
msgid "Jacket type"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:279
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:283
#, elixir-autogen, elixir-format
msgid "Muzzle velocity"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:76
#: lib/cannery_web/live/type_live/form_component.html.heex:244
#: lib/cannery_web/components/type_table_component.ex:75
#: lib/cannery_web/live/type_live/form_component.html.heex:248
#, elixir-autogen, elixir-format
msgid "Powder grains per charge"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:74
#: lib/cannery_web/live/type_live/form_component.html.heex:236
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:240
#, elixir-autogen, elixir-format
msgid "Powder type"
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
msgid "UPC"
msgstr ""
@ -556,8 +556,8 @@ msgstr ""
msgid "New password"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#, elixir-autogen, elixir-format
msgid "Firing type"
msgstr ""
@ -588,7 +588,7 @@ msgstr ""
#: lib/cannery_web/components/pack_table_component.ex:173
#: lib/cannery_web/components/pack_table_component.ex:255
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/components/type_table_component.ex:259
#: lib/cannery_web/live/type_live/show.html.heex:154
#, elixir-autogen, elixir-format
msgid "No cost information"
@ -786,13 +786,13 @@ msgid "Rounds shot: %{count}"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:64
#: lib/cannery_web/components/type_table_component.ex:123
#: lib/cannery_web/components/type_table_component.ex:122
#, elixir-autogen, elixir-format
msgid "Packs"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:65
#: lib/cannery_web/components/type_table_component.ex:144
#: lib/cannery_web/components/type_table_component.ex:143
#, elixir-autogen, elixir-format
msgid "Rounds"
msgstr ""
@ -804,7 +804,7 @@ msgstr ""
msgid "View as table"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:108
#: lib/cannery_web/components/type_table_component.ex:107
#, elixir-autogen, elixir-format
msgid "Total ever packs"
msgstr ""
@ -814,7 +814,7 @@ msgstr ""
msgid "Total ever packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:129
#: lib/cannery_web/components/type_table_component.ex:128
#, elixir-autogen, elixir-format
msgid "Total ever rounds"
msgstr ""
@ -824,7 +824,7 @@ msgstr ""
msgid "Total ever rounds:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:116
#: lib/cannery_web/components/type_table_component.ex:115
#, elixir-autogen, elixir-format
msgid "Used packs"
msgstr ""
@ -834,7 +834,7 @@ msgstr ""
msgid "Used packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:137
#: lib/cannery_web/components/type_table_component.ex:136
#, elixir-autogen, elixir-format
msgid "Used rounds"
msgstr ""
@ -944,7 +944,7 @@ msgstr ""
msgid "UPC:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:102
#: lib/cannery_web/components/type_table_component.ex:101
#: lib/cannery_web/live/type_live/show.html.heex:146
#, elixir-autogen, elixir-format
msgid "Average CPR"
@ -1131,7 +1131,7 @@ msgstr ""
msgid "Password"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#: lib/cannery_web/live/type_live/form_component.html.heex:265
#, elixir-autogen, elixir-format
msgid "+P"
msgstr ""
@ -1146,12 +1146,12 @@ msgstr ""
msgid "5.56x46mm NATO"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#, elixir-autogen, elixir-format
msgid "Boxer"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#: lib/cannery_web/live/type_live/form_component.html.heex:312
#, elixir-autogen, elixir-format
msgid "Centerfire"
msgstr ""
@ -1166,7 +1166,7 @@ msgstr ""
#: lib/cannery_web/components/move_pack_component.ex:68
#: lib/cannery_web/components/pack_table_component.ex:62
#: lib/cannery_web/components/shot_record_table_component.ex:48
#: lib/cannery_web/components/type_table_component.ex:100
#: lib/cannery_web/components/type_table_component.ex:99
#: lib/cannery_web/live/pack_live/show.ex:93
#, elixir-autogen, elixir-format
msgid "Actions"
@ -1201,7 +1201,7 @@ msgstr ""
msgid "All"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:313
#: lib/cannery_web/live/type_live/form_component.html.heex:317
#, elixir-autogen, elixir-format
msgid "Attributes"
msgstr ""
@ -1218,7 +1218,6 @@ msgid "Brass height:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:57
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:96
#, elixir-autogen, elixir-format
msgid "Chamber size"
@ -1234,8 +1233,8 @@ msgstr ""
msgid "Dimensions"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:266
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:270
#, elixir-autogen, elixir-format
msgid "Dram equivalent"
msgstr ""
@ -1256,8 +1255,8 @@ msgstr ""
msgid "Gauge:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:207
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:211
#, elixir-autogen, elixir-format
msgid "Load grains"
msgstr ""
@ -1287,12 +1286,12 @@ msgstr ""
msgid "Pistol"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:233
#: lib/cannery_web/live/type_live/form_component.html.heex:237
#, elixir-autogen, elixir-format
msgid "Powder"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:293
#: lib/cannery_web/live/type_live/form_component.html.heex:297
#, elixir-autogen, elixir-format
msgid "Primer"
msgstr ""
@ -1312,8 +1311,8 @@ msgstr ""
msgid "Rifle"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:215
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:219
#, elixir-autogen, elixir-format
msgid "Shot charge weight"
msgstr ""
@ -1323,8 +1322,8 @@ msgstr ""
msgid "Shot charge weight:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:195
#, elixir-autogen, elixir-format
msgid "Shot material"
msgstr ""
@ -1334,8 +1333,8 @@ msgstr ""
msgid "Shot material:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:200
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:204
#, elixir-autogen, elixir-format
msgid "Shot size"
msgstr ""
@ -1345,8 +1344,8 @@ msgstr ""
msgid "Shot size:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:183
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#, elixir-autogen, elixir-format
msgid "Shot type"
msgstr ""
@ -1366,13 +1365,13 @@ msgstr ""
msgid "Shotgun"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:143
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:147
#, elixir-autogen, elixir-format
msgid "Slug core"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#, elixir-autogen, elixir-format
msgid "Target, bird, buck, etc"
msgstr ""
@ -1388,8 +1387,8 @@ msgstr ""
msgid "Unfired shell length"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:176
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:180
#, elixir-autogen, elixir-format
msgid "Wadding"
msgstr ""
@ -1399,7 +1398,7 @@ msgstr ""
msgid "Wadding:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:150
#: lib/cannery_web/components/type_table_component.ex:149
#: lib/cannery_web/live/container_live/show.html.heex:97
#: lib/cannery_web/live/pack_live/index.html.heex:50
#: lib/cannery_web/live/range_live/index.html.heex:86

View File

@ -121,7 +121,7 @@ msgstr ""
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
#: lib/cannery_web/live/range_live/form_component.html.heex:45
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
#: lib/cannery_web/live/type_live/form_component.html.heex:350
#: lib/cannery_web/live/type_live/form_component.html.heex:354
#, elixir-autogen, elixir-format
msgid "Save"
msgstr ""

View File

@ -39,25 +39,25 @@ msgstr ""
msgid "Background color"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#, elixir-autogen, elixir-format
msgid "Blank"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#: lib/cannery_web/live/type_live/form_component.html.heex:175
#, elixir-autogen, elixir-format
msgid "Brass"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:144
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:148
#, elixir-autogen, elixir-format
msgid "Bullet core"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:60
#: lib/cannery_web/live/type_live/form_component.html.heex:121
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/live/type_live/form_component.html.heex:122
#, elixir-autogen, elixir-format
msgid "Bullet type"
msgstr ""
@ -74,8 +74,8 @@ msgstr ""
msgid "Cartridge"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:167
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#, elixir-autogen, elixir-format
msgid "Case material"
msgstr ""
@ -95,8 +95,8 @@ msgstr ""
msgid "Containers"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:332
#, elixir-autogen, elixir-format
msgid "Corrosive"
msgstr ""
@ -141,19 +141,19 @@ msgstr ""
msgid "Edit Tag"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:135
#: lib/cannery_web/live/type_live/form_component.html.heex:136
#, elixir-autogen, elixir-format
msgid "FMJ"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:112
#, elixir-autogen, elixir-format
msgid "Grains"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#, elixir-autogen, elixir-format
msgid "Incendiary"
msgstr ""
@ -203,9 +203,9 @@ msgstr ""
msgid "Magazine, Clip, Ammo Box, etc"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:89
#: lib/cannery_web/live/type_live/form_component.html.heex:333
#: lib/cannery_web/live/type_live/form_component.html.heex:336
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:337
#: lib/cannery_web/live/type_live/form_component.html.heex:340
#, elixir-autogen, elixir-format
msgid "Manufacturer"
msgstr ""
@ -221,7 +221,7 @@ msgid "My cool ammo can"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:45
#: lib/cannery_web/components/type_table_component.ex:153
#: lib/cannery_web/components/type_table_component.ex:152
#: 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/tag_live/form_component.html.heex:21
@ -294,8 +294,8 @@ msgstr ""
msgid "On the bookshelf"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:257
#: lib/cannery_web/components/type_table_component.ex:79
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#, elixir-autogen, elixir-format
msgid "Pressure"
msgstr ""
@ -311,8 +311,8 @@ msgstr ""
msgid "Price paid:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:296
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#, elixir-autogen, elixir-format
msgid "Primer type"
msgstr ""
@ -343,7 +343,7 @@ msgstr ""
msgid "Simple:"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:151
#: lib/cannery_web/live/type_live/form_component.html.heex:155
#, elixir-autogen, elixir-format
msgid "Steel"
msgstr ""
@ -377,8 +377,8 @@ msgstr ""
msgid "The self-hosted firearm tracker website"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:316
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#, elixir-autogen, elixir-format
msgid "Tracer"
msgstr ""
@ -496,7 +496,7 @@ msgstr ""
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
#: lib/cannery_web/components/pack_table_component.ex:176
#: lib/cannery_web/components/pack_table_component.ex:259
#: lib/cannery_web/components/type_table_component.ex:261
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/live/pack_live/show.html.heex:37
#: lib/cannery_web/live/pack_live/show.html.heex:42
#: lib/cannery_web/live/type_live/show.html.heex:150
@ -504,36 +504,36 @@ msgstr ""
msgid "$%{amount}"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#: lib/cannery_web/live/type_live/form_component.html.heex:164
#, elixir-autogen, elixir-format
msgid "Bimetal"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:156
#: lib/cannery_web/components/type_table_component.ex:65
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#, elixir-autogen, elixir-format
msgid "Jacket type"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:279
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:283
#, elixir-autogen, elixir-format
msgid "Muzzle velocity"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:76
#: lib/cannery_web/live/type_live/form_component.html.heex:244
#: lib/cannery_web/components/type_table_component.ex:75
#: lib/cannery_web/live/type_live/form_component.html.heex:248
#, elixir-autogen, elixir-format
msgid "Powder grains per charge"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:74
#: lib/cannery_web/live/type_live/form_component.html.heex:236
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:240
#, elixir-autogen, elixir-format
msgid "Powder type"
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
msgid "UPC"
msgstr ""
@ -556,8 +556,8 @@ msgstr ""
msgid "New password"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#, elixir-autogen, elixir-format
msgid "Firing type"
msgstr ""
@ -588,7 +588,7 @@ msgstr ""
#: lib/cannery_web/components/pack_table_component.ex:173
#: lib/cannery_web/components/pack_table_component.ex:255
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/components/type_table_component.ex:259
#: lib/cannery_web/live/type_live/show.html.heex:154
#, elixir-autogen, elixir-format
msgid "No cost information"
@ -786,13 +786,13 @@ msgid "Rounds shot: %{count}"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:64
#: lib/cannery_web/components/type_table_component.ex:123
#: lib/cannery_web/components/type_table_component.ex:122
#, elixir-autogen, elixir-format, fuzzy
msgid "Packs"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:65
#: lib/cannery_web/components/type_table_component.ex:144
#: lib/cannery_web/components/type_table_component.ex:143
#, elixir-autogen, elixir-format, fuzzy
msgid "Rounds"
msgstr ""
@ -804,7 +804,7 @@ msgstr ""
msgid "View as table"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:108
#: lib/cannery_web/components/type_table_component.ex:107
#, elixir-autogen, elixir-format
msgid "Total ever packs"
msgstr ""
@ -814,7 +814,7 @@ msgstr ""
msgid "Total ever packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:129
#: lib/cannery_web/components/type_table_component.ex:128
#, elixir-autogen, elixir-format, fuzzy
msgid "Total ever rounds"
msgstr ""
@ -824,7 +824,7 @@ msgstr ""
msgid "Total ever rounds:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:116
#: lib/cannery_web/components/type_table_component.ex:115
#, elixir-autogen, elixir-format
msgid "Used packs"
msgstr ""
@ -834,7 +834,7 @@ msgstr ""
msgid "Used packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:137
#: lib/cannery_web/components/type_table_component.ex:136
#, elixir-autogen, elixir-format, fuzzy
msgid "Used rounds"
msgstr ""
@ -944,7 +944,7 @@ msgstr ""
msgid "UPC:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:102
#: lib/cannery_web/components/type_table_component.ex:101
#: lib/cannery_web/live/type_live/show.html.heex:146
#, elixir-autogen, elixir-format
msgid "Average CPR"
@ -1131,7 +1131,7 @@ msgstr ""
msgid "Password"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#: lib/cannery_web/live/type_live/form_component.html.heex:265
#, elixir-autogen, elixir-format
msgid "+P"
msgstr ""
@ -1146,12 +1146,12 @@ msgstr ""
msgid "5.56x46mm NATO"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#, elixir-autogen, elixir-format
msgid "Boxer"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#: lib/cannery_web/live/type_live/form_component.html.heex:312
#, elixir-autogen, elixir-format
msgid "Centerfire"
msgstr ""
@ -1166,7 +1166,7 @@ msgstr ""
#: lib/cannery_web/components/move_pack_component.ex:68
#: lib/cannery_web/components/pack_table_component.ex:62
#: lib/cannery_web/components/shot_record_table_component.ex:48
#: lib/cannery_web/components/type_table_component.ex:100
#: lib/cannery_web/components/type_table_component.ex:99
#: lib/cannery_web/live/pack_live/show.ex:93
#, elixir-autogen, elixir-format
msgid "Actions"
@ -1201,7 +1201,7 @@ msgstr ""
msgid "All"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:313
#: lib/cannery_web/live/type_live/form_component.html.heex:317
#, elixir-autogen, elixir-format
msgid "Attributes"
msgstr ""
@ -1218,7 +1218,6 @@ msgid "Brass height:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:57
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:96
#, elixir-autogen, elixir-format
msgid "Chamber size"
@ -1234,8 +1233,8 @@ msgstr ""
msgid "Dimensions"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:266
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:270
#, elixir-autogen, elixir-format
msgid "Dram equivalent"
msgstr ""
@ -1256,8 +1255,8 @@ msgstr ""
msgid "Gauge:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:207
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:211
#, elixir-autogen, elixir-format
msgid "Load grains"
msgstr ""
@ -1287,12 +1286,12 @@ msgstr ""
msgid "Pistol"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:233
#: lib/cannery_web/live/type_live/form_component.html.heex:237
#, elixir-autogen, elixir-format, fuzzy
msgid "Powder"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:293
#: lib/cannery_web/live/type_live/form_component.html.heex:297
#, elixir-autogen, elixir-format, fuzzy
msgid "Primer"
msgstr ""
@ -1312,8 +1311,8 @@ msgstr ""
msgid "Rifle"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:215
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:219
#, elixir-autogen, elixir-format
msgid "Shot charge weight"
msgstr ""
@ -1323,8 +1322,8 @@ msgstr ""
msgid "Shot charge weight:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:195
#, elixir-autogen, elixir-format
msgid "Shot material"
msgstr ""
@ -1334,8 +1333,8 @@ msgstr ""
msgid "Shot material:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:200
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:204
#, elixir-autogen, elixir-format, fuzzy
msgid "Shot size"
msgstr ""
@ -1345,8 +1344,8 @@ msgstr ""
msgid "Shot size:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:183
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#, elixir-autogen, elixir-format
msgid "Shot type"
msgstr ""
@ -1366,13 +1365,13 @@ msgstr ""
msgid "Shotgun"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:143
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:147
#, elixir-autogen, elixir-format
msgid "Slug core"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#, elixir-autogen, elixir-format
msgid "Target, bird, buck, etc"
msgstr ""
@ -1388,8 +1387,8 @@ msgstr ""
msgid "Unfired shell length"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:176
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:180
#, elixir-autogen, elixir-format
msgid "Wadding"
msgstr ""
@ -1399,7 +1398,7 @@ msgstr ""
msgid "Wadding:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:150
#: lib/cannery_web/components/type_table_component.ex:149
#: lib/cannery_web/live/container_live/show.html.heex:97
#: lib/cannery_web/live/pack_live/index.html.heex:50
#: lib/cannery_web/live/range_live/index.html.heex:86

View File

@ -115,7 +115,7 @@ msgstr ""
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
#: lib/cannery_web/live/range_live/form_component.html.heex:47
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
#: lib/cannery_web/live/type_live/form_component.html.heex:351
#: lib/cannery_web/live/type_live/form_component.html.heex:355
#, elixir-autogen, elixir-format
msgid "Saving..."
msgstr ""

View File

@ -134,7 +134,7 @@ msgstr "Resetear contraseña"
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
#: lib/cannery_web/live/range_live/form_component.html.heex:45
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
#: lib/cannery_web/live/type_live/form_component.html.heex:350
#: lib/cannery_web/live/type_live/form_component.html.heex:354
#, elixir-autogen, elixir-format
msgid "Save"
msgstr "Guardar"

View File

@ -43,25 +43,25 @@ msgstr "Munición"
msgid "Background color"
msgstr "Color de fondo"
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#, elixir-autogen, elixir-format
msgid "Blank"
msgstr "Fogueo"
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#: lib/cannery_web/live/type_live/form_component.html.heex:175
#, elixir-autogen, elixir-format
msgid "Brass"
msgstr "Latón"
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:144
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:148
#, elixir-autogen, elixir-format
msgid "Bullet core"
msgstr "Núcleo de bala"
#: lib/cannery_web/components/type_table_component.ex:60
#: lib/cannery_web/live/type_live/form_component.html.heex:121
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/live/type_live/form_component.html.heex:122
#, elixir-autogen, elixir-format
msgid "Bullet type"
msgstr "Tipo de bala"
@ -78,8 +78,8 @@ msgstr "Calibre"
msgid "Cartridge"
msgstr "Cartucho"
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:167
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#, elixir-autogen, elixir-format
msgid "Case material"
msgstr "Material del casquillo"
@ -99,8 +99,8 @@ msgstr "Contenedor"
msgid "Containers"
msgstr "Contenedores"
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:332
#, elixir-autogen, elixir-format
msgid "Corrosive"
msgstr "Corrosiva"
@ -145,19 +145,19 @@ msgstr "Editar Invitación"
msgid "Edit Tag"
msgstr "Editar Etiqueta"
#: lib/cannery_web/live/type_live/form_component.html.heex:135
#: lib/cannery_web/live/type_live/form_component.html.heex:136
#, elixir-autogen, elixir-format
msgid "FMJ"
msgstr "Bala encamisada"
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:112
#, elixir-autogen, elixir-format
msgid "Grains"
msgstr "Grano"
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#, elixir-autogen, elixir-format
msgid "Incendiary"
msgstr "Incendiaria"
@ -207,9 +207,9 @@ msgstr "Localización:"
msgid "Magazine, Clip, Ammo Box, etc"
msgstr "Cargador, Clip, Caja de Munición, etc"
#: lib/cannery_web/components/type_table_component.ex:89
#: lib/cannery_web/live/type_live/form_component.html.heex:333
#: lib/cannery_web/live/type_live/form_component.html.heex:336
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:337
#: lib/cannery_web/live/type_live/form_component.html.heex:340
#, elixir-autogen, elixir-format
msgid "Manufacturer"
msgstr "Fabricante"
@ -225,7 +225,7 @@ msgid "My cool ammo can"
msgstr "Mi lata de munición guapa"
#: lib/cannery_web/components/container_table_component.ex:45
#: lib/cannery_web/components/type_table_component.ex:153
#: lib/cannery_web/components/type_table_component.ex:152
#: 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/tag_live/form_component.html.heex:21
@ -298,8 +298,8 @@ msgstr "Notas:"
msgid "On the bookshelf"
msgstr "En la estantería"
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:257
#: lib/cannery_web/components/type_table_component.ex:79
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#, elixir-autogen, elixir-format
msgid "Pressure"
msgstr "Presión"
@ -315,8 +315,8 @@ msgstr "Precio pagado"
msgid "Price paid:"
msgstr "Precio pagado:"
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:296
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#, elixir-autogen, elixir-format
msgid "Primer type"
msgstr "Tipo de espoleta"
@ -349,7 +349,7 @@ msgstr "Ajustes"
msgid "Simple:"
msgstr "Simple:"
#: lib/cannery_web/live/type_live/form_component.html.heex:151
#: lib/cannery_web/live/type_live/form_component.html.heex:155
#, elixir-autogen, elixir-format
msgid "Steel"
msgstr "Acero"
@ -384,8 +384,8 @@ msgstr "Color del texto"
msgid "The self-hosted firearm tracker website"
msgstr "La página de seguimiento de armas autogestionada"
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:316
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#, elixir-autogen, elixir-format
msgid "Tracer"
msgstr "Trazadora"
@ -503,7 +503,7 @@ msgstr "Registro de tiros"
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
#: lib/cannery_web/components/pack_table_component.ex:176
#: lib/cannery_web/components/pack_table_component.ex:259
#: lib/cannery_web/components/type_table_component.ex:261
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/live/pack_live/show.html.heex:37
#: lib/cannery_web/live/pack_live/show.html.heex:42
#: lib/cannery_web/live/type_live/show.html.heex:150
@ -511,36 +511,36 @@ msgstr "Registro de tiros"
msgid "$%{amount}"
msgstr "$%{amount}"
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#: lib/cannery_web/live/type_live/form_component.html.heex:164
#, elixir-autogen, elixir-format
msgid "Bimetal"
msgstr "Bimetal"
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:156
#: lib/cannery_web/components/type_table_component.ex:65
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#, elixir-autogen, elixir-format
msgid "Jacket type"
msgstr "Tipo de camisa"
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:279
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:283
#, elixir-autogen, elixir-format
msgid "Muzzle velocity"
msgstr "Velocidad de boca"
#: lib/cannery_web/components/type_table_component.ex:76
#: lib/cannery_web/live/type_live/form_component.html.heex:244
#: lib/cannery_web/components/type_table_component.ex:75
#: lib/cannery_web/live/type_live/form_component.html.heex:248
#, elixir-autogen, elixir-format
msgid "Powder grains per charge"
msgstr "Granos de polvora por carga"
#: lib/cannery_web/components/type_table_component.ex:74
#: lib/cannery_web/live/type_live/form_component.html.heex:236
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:240
#, elixir-autogen, elixir-format
msgid "Powder type"
msgstr "Tipo de polvora"
#: lib/cannery_web/live/type_live/form_component.html.heex:343
#: lib/cannery_web/live/type_live/form_component.html.heex:347
#, elixir-autogen, elixir-format
msgid "UPC"
msgstr ""
@ -563,8 +563,8 @@ msgstr "Contraseña actual"
msgid "New password"
msgstr "Nueva contraseña"
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#, elixir-autogen, elixir-format
msgid "Firing type"
msgstr "Tipo de fuego"
@ -595,7 +595,7 @@ msgstr "Balas:"
#: lib/cannery_web/components/pack_table_component.ex:173
#: lib/cannery_web/components/pack_table_component.ex:255
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/components/type_table_component.ex:259
#: lib/cannery_web/live/type_live/show.html.heex:154
#, elixir-autogen, elixir-format
msgid "No cost information"
@ -794,13 +794,13 @@ msgid "Rounds shot: %{count}"
msgstr "Balas disparadas: %{count}"
#: lib/cannery_web/components/container_table_component.ex:64
#: lib/cannery_web/components/type_table_component.ex:123
#: lib/cannery_web/components/type_table_component.ex:122
#, elixir-autogen, elixir-format, fuzzy
msgid "Packs"
msgstr "Paquetes"
#: lib/cannery_web/components/container_table_component.ex:65
#: lib/cannery_web/components/type_table_component.ex:144
#: lib/cannery_web/components/type_table_component.ex:143
#, elixir-autogen, elixir-format, fuzzy
msgid "Rounds"
msgstr "Balas"
@ -812,7 +812,7 @@ msgstr "Balas"
msgid "View as table"
msgstr "Ver como tabla"
#: lib/cannery_web/components/type_table_component.ex:108
#: lib/cannery_web/components/type_table_component.ex:107
#, elixir-autogen, elixir-format
msgid "Total ever packs"
msgstr "Paquetes totales"
@ -822,7 +822,7 @@ msgstr "Paquetes totales"
msgid "Total ever packs:"
msgstr "Paquetes totales:"
#: lib/cannery_web/components/type_table_component.ex:129
#: lib/cannery_web/components/type_table_component.ex:128
#, elixir-autogen, elixir-format, fuzzy
msgid "Total ever rounds"
msgstr "Balas totales"
@ -832,7 +832,7 @@ msgstr "Balas totales"
msgid "Total ever rounds:"
msgstr "Balas totales:"
#: lib/cannery_web/components/type_table_component.ex:116
#: lib/cannery_web/components/type_table_component.ex:115
#, elixir-autogen, elixir-format
msgid "Used packs"
msgstr "Paquetes usados"
@ -842,7 +842,7 @@ msgstr "Paquetes usados"
msgid "Used packs:"
msgstr "Paquetes usados:"
#: lib/cannery_web/components/type_table_component.ex:137
#: lib/cannery_web/components/type_table_component.ex:136
#, elixir-autogen, elixir-format, fuzzy
msgid "Used rounds"
msgstr "Balas usadas"
@ -952,7 +952,7 @@ msgstr "Trazadora:"
msgid "UPC:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:102
#: lib/cannery_web/components/type_table_component.ex:101
#: lib/cannery_web/live/type_live/show.html.heex:146
#, elixir-autogen, elixir-format
msgid "Average CPR"
@ -1150,7 +1150,7 @@ msgstr ""
msgid "Password"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#: lib/cannery_web/live/type_live/form_component.html.heex:265
#, elixir-autogen, elixir-format
msgid "+P"
msgstr ""
@ -1165,12 +1165,12 @@ msgstr ""
msgid "5.56x46mm NATO"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#, elixir-autogen, elixir-format
msgid "Boxer"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#: lib/cannery_web/live/type_live/form_component.html.heex:312
#, elixir-autogen, elixir-format
msgid "Centerfire"
msgstr ""
@ -1185,7 +1185,7 @@ msgstr ""
#: lib/cannery_web/components/move_pack_component.ex:68
#: lib/cannery_web/components/pack_table_component.ex:62
#: lib/cannery_web/components/shot_record_table_component.ex:48
#: lib/cannery_web/components/type_table_component.ex:100
#: lib/cannery_web/components/type_table_component.ex:99
#: lib/cannery_web/live/pack_live/show.ex:93
#, elixir-autogen, elixir-format
msgid "Actions"
@ -1220,7 +1220,7 @@ msgstr ""
msgid "All"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:313
#: lib/cannery_web/live/type_live/form_component.html.heex:317
#, elixir-autogen, elixir-format
msgid "Attributes"
msgstr ""
@ -1237,7 +1237,6 @@ msgid "Brass height:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:57
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:96
#, elixir-autogen, elixir-format
msgid "Chamber size"
@ -1253,8 +1252,8 @@ msgstr ""
msgid "Dimensions"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:266
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:270
#, elixir-autogen, elixir-format
msgid "Dram equivalent"
msgstr ""
@ -1275,8 +1274,8 @@ msgstr ""
msgid "Gauge:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:207
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:211
#, elixir-autogen, elixir-format
msgid "Load grains"
msgstr ""
@ -1306,12 +1305,12 @@ msgstr ""
msgid "Pistol"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:233
#: lib/cannery_web/live/type_live/form_component.html.heex:237
#, elixir-autogen, elixir-format, fuzzy
msgid "Powder"
msgstr "Tipo de polvora"
#: lib/cannery_web/live/type_live/form_component.html.heex:293
#: lib/cannery_web/live/type_live/form_component.html.heex:297
#, elixir-autogen, elixir-format, fuzzy
msgid "Primer"
msgstr "Tipo de espoleta"
@ -1331,8 +1330,8 @@ msgstr ""
msgid "Rifle"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:215
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:219
#, elixir-autogen, elixir-format
msgid "Shot charge weight"
msgstr ""
@ -1342,8 +1341,8 @@ msgstr ""
msgid "Shot charge weight:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:195
#, elixir-autogen, elixir-format
msgid "Shot material"
msgstr ""
@ -1353,8 +1352,8 @@ msgstr ""
msgid "Shot material:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:200
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:204
#, elixir-autogen, elixir-format, fuzzy
msgid "Shot size"
msgstr "Tiros disparados"
@ -1364,8 +1363,8 @@ msgstr "Tiros disparados"
msgid "Shot size:"
msgstr "Tiros disparados"
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:183
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#, elixir-autogen, elixir-format
msgid "Shot type"
msgstr ""
@ -1385,13 +1384,13 @@ msgstr ""
msgid "Shotgun"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:143
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:147
#, elixir-autogen, elixir-format
msgid "Slug core"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#, elixir-autogen, elixir-format
msgid "Target, bird, buck, etc"
msgstr ""
@ -1407,8 +1406,8 @@ msgstr ""
msgid "Unfired shell length"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:176
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:180
#, elixir-autogen, elixir-format
msgid "Wadding"
msgstr ""
@ -1418,7 +1417,7 @@ msgstr ""
msgid "Wadding:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:150
#: lib/cannery_web/components/type_table_component.ex:149
#: lib/cannery_web/live/container_live/show.html.heex:97
#: lib/cannery_web/live/pack_live/index.html.heex:50
#: lib/cannery_web/live/range_live/index.html.heex:86

View File

@ -134,7 +134,7 @@ msgstr "Por favor chequea el correo para verificar tu cuenta"
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
#: lib/cannery_web/live/range_live/form_component.html.heex:47
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
#: lib/cannery_web/live/type_live/form_component.html.heex:351
#: lib/cannery_web/live/type_live/form_component.html.heex:355
#, elixir-autogen, elixir-format
msgid "Saving..."
msgstr "Guardando..."

View File

@ -134,7 +134,7 @@ msgstr "Réinitialisé le mot de passe"
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
#: lib/cannery_web/live/range_live/form_component.html.heex:45
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
#: lib/cannery_web/live/type_live/form_component.html.heex:350
#: lib/cannery_web/live/type_live/form_component.html.heex:354
#, elixir-autogen, elixir-format
msgid "Save"
msgstr "Sauvegarder"

View File

@ -43,25 +43,25 @@ msgstr "Munition"
msgid "Background color"
msgstr "Couleur de fond"
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#, elixir-autogen, elixir-format
msgid "Blank"
msgstr "Vide"
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#: lib/cannery_web/live/type_live/form_component.html.heex:175
#, elixir-autogen, elixir-format
msgid "Brass"
msgstr "Cuivre"
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:144
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:148
#, elixir-autogen, elixir-format
msgid "Bullet core"
msgstr "Noyau de balle"
#: lib/cannery_web/components/type_table_component.ex:60
#: lib/cannery_web/live/type_live/form_component.html.heex:121
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/live/type_live/form_component.html.heex:122
#, elixir-autogen, elixir-format
msgid "Bullet type"
msgstr "Type de balle"
@ -78,8 +78,8 @@ msgstr "Calibre"
msgid "Cartridge"
msgstr "Cartouche"
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:167
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#, elixir-autogen, elixir-format
msgid "Case material"
msgstr "Matériau de la caisse"
@ -99,8 +99,8 @@ msgstr "Conteneur"
msgid "Containers"
msgstr "Conteneurs"
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:332
#, elixir-autogen, elixir-format
msgid "Corrosive"
msgstr "Corrosive"
@ -145,19 +145,19 @@ msgstr "Modifier linvitation"
msgid "Edit Tag"
msgstr "Modifier le tag"
#: lib/cannery_web/live/type_live/form_component.html.heex:135
#: lib/cannery_web/live/type_live/form_component.html.heex:136
#, elixir-autogen, elixir-format
msgid "FMJ"
msgstr "FMJ"
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:112
#, elixir-autogen, elixir-format
msgid "Grains"
msgstr "Graines"
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#, elixir-autogen, elixir-format
msgid "Incendiary"
msgstr "Incendiaire"
@ -207,9 +207,9 @@ msgstr "Localisation:"
msgid "Magazine, Clip, Ammo Box, etc"
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
#: lib/cannery_web/components/type_table_component.ex:89
#: lib/cannery_web/live/type_live/form_component.html.heex:333
#: lib/cannery_web/live/type_live/form_component.html.heex:336
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:337
#: lib/cannery_web/live/type_live/form_component.html.heex:340
#, elixir-autogen, elixir-format
msgid "Manufacturer"
msgstr "Fabricant"
@ -225,7 +225,7 @@ msgid "My cool ammo can"
msgstr "Ma superbe boite de munition"
#: lib/cannery_web/components/container_table_component.ex:45
#: lib/cannery_web/components/type_table_component.ex:153
#: lib/cannery_web/components/type_table_component.ex:152
#: 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/tag_live/form_component.html.heex:21
@ -298,8 +298,8 @@ msgstr "Notes:"
msgid "On the bookshelf"
msgstr "Sur létagère"
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:257
#: lib/cannery_web/components/type_table_component.ex:79
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#, elixir-autogen, elixir-format
msgid "Pressure"
msgstr "Pression"
@ -315,8 +315,8 @@ msgstr "Prix payé"
msgid "Price paid:"
msgstr "Prix payé:"
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:296
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#, elixir-autogen, elixir-format
msgid "Primer type"
msgstr "Type damorce"
@ -349,7 +349,7 @@ msgstr "Paramètres"
msgid "Simple:"
msgstr "Simple:"
#: lib/cannery_web/live/type_live/form_component.html.heex:151
#: lib/cannery_web/live/type_live/form_component.html.heex:155
#, elixir-autogen, elixir-format
msgid "Steel"
msgstr "Acier"
@ -385,8 +385,8 @@ msgstr "Couleur du texte"
msgid "The self-hosted firearm tracker website"
msgstr "Le site web de suivi darme à feux auto-hébergé"
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:316
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#, elixir-autogen, elixir-format
msgid "Tracer"
msgstr "Traceuse"
@ -504,7 +504,7 @@ msgstr "Évènements de tir"
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
#: lib/cannery_web/components/pack_table_component.ex:176
#: lib/cannery_web/components/pack_table_component.ex:259
#: lib/cannery_web/components/type_table_component.ex:261
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/live/pack_live/show.html.heex:37
#: lib/cannery_web/live/pack_live/show.html.heex:42
#: lib/cannery_web/live/type_live/show.html.heex:150
@ -512,36 +512,36 @@ msgstr "Évènements de tir"
msgid "$%{amount}"
msgstr "%{amount}$"
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#: lib/cannery_web/live/type_live/form_component.html.heex:164
#, elixir-autogen, elixir-format
msgid "Bimetal"
msgstr "Bi-métal"
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:156
#: lib/cannery_web/components/type_table_component.ex:65
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#, elixir-autogen, elixir-format
msgid "Jacket type"
msgstr "Type de douille"
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:279
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:283
#, elixir-autogen, elixir-format
msgid "Muzzle velocity"
msgstr "Vélocité du canon"
#: lib/cannery_web/components/type_table_component.ex:76
#: lib/cannery_web/live/type_live/form_component.html.heex:244
#: lib/cannery_web/components/type_table_component.ex:75
#: lib/cannery_web/live/type_live/form_component.html.heex:248
#, elixir-autogen, elixir-format
msgid "Powder grains per charge"
msgstr "Graines de poudre par charge"
#: lib/cannery_web/components/type_table_component.ex:74
#: lib/cannery_web/live/type_live/form_component.html.heex:236
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:240
#, elixir-autogen, elixir-format
msgid "Powder type"
msgstr "Type de poudre"
#: lib/cannery_web/live/type_live/form_component.html.heex:343
#: lib/cannery_web/live/type_live/form_component.html.heex:347
#, elixir-autogen, elixir-format
msgid "UPC"
msgstr "UPC"
@ -564,8 +564,8 @@ msgstr "Mot de passe actuel"
msgid "New password"
msgstr "Nouveau mot de passe"
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#, elixir-autogen, elixir-format
msgid "Firing type"
msgstr "Type dallumage"
@ -596,7 +596,7 @@ msgstr "Cartouches:"
#: lib/cannery_web/components/pack_table_component.ex:173
#: lib/cannery_web/components/pack_table_component.ex:255
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/components/type_table_component.ex:259
#: lib/cannery_web/live/type_live/show.html.heex:154
#, elixir-autogen, elixir-format
msgid "No cost information"
@ -795,13 +795,13 @@ msgid "Rounds shot: %{count}"
msgstr "Cartouches tirées"
#: lib/cannery_web/components/container_table_component.ex:64
#: lib/cannery_web/components/type_table_component.ex:123
#: lib/cannery_web/components/type_table_component.ex:122
#, elixir-autogen, elixir-format, fuzzy
msgid "Packs"
msgstr "Packages:"
#: lib/cannery_web/components/container_table_component.ex:65
#: lib/cannery_web/components/type_table_component.ex:144
#: lib/cannery_web/components/type_table_component.ex:143
#, elixir-autogen, elixir-format, fuzzy
msgid "Rounds"
msgstr "Cartouches:"
@ -813,7 +813,7 @@ msgstr "Cartouches:"
msgid "View as table"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:108
#: lib/cannery_web/components/type_table_component.ex:107
#, elixir-autogen, elixir-format
msgid "Total ever packs"
msgstr ""
@ -823,7 +823,7 @@ msgstr ""
msgid "Total ever packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:129
#: lib/cannery_web/components/type_table_component.ex:128
#, elixir-autogen, elixir-format, fuzzy
msgid "Total ever rounds"
msgstr "Quantité de cartouches"
@ -833,7 +833,7 @@ msgstr "Quantité de cartouches"
msgid "Total ever rounds:"
msgstr "Nombre totale de cartouches tirées:"
#: lib/cannery_web/components/type_table_component.ex:116
#: lib/cannery_web/components/type_table_component.ex:115
#, elixir-autogen, elixir-format
msgid "Used packs"
msgstr ""
@ -843,7 +843,7 @@ msgstr ""
msgid "Used packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:137
#: lib/cannery_web/components/type_table_component.ex:136
#, elixir-autogen, elixir-format, fuzzy
msgid "Used rounds"
msgstr ""
@ -953,7 +953,7 @@ msgstr "Traceuse"
msgid "UPC:"
msgstr "UPC"
#: lib/cannery_web/components/type_table_component.ex:102
#: lib/cannery_web/components/type_table_component.ex:101
#: lib/cannery_web/live/type_live/show.html.heex:146
#, elixir-autogen, elixir-format
msgid "Average CPR"
@ -1151,7 +1151,7 @@ msgstr ""
msgid "Password"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#: lib/cannery_web/live/type_live/form_component.html.heex:265
#, elixir-autogen, elixir-format
msgid "+P"
msgstr ""
@ -1166,12 +1166,12 @@ msgstr ""
msgid "5.56x46mm NATO"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#, elixir-autogen, elixir-format
msgid "Boxer"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#: lib/cannery_web/live/type_live/form_component.html.heex:312
#, elixir-autogen, elixir-format
msgid "Centerfire"
msgstr ""
@ -1186,7 +1186,7 @@ msgstr ""
#: lib/cannery_web/components/move_pack_component.ex:68
#: lib/cannery_web/components/pack_table_component.ex:62
#: lib/cannery_web/components/shot_record_table_component.ex:48
#: lib/cannery_web/components/type_table_component.ex:100
#: lib/cannery_web/components/type_table_component.ex:99
#: lib/cannery_web/live/pack_live/show.ex:93
#, elixir-autogen, elixir-format
msgid "Actions"
@ -1221,7 +1221,7 @@ msgstr ""
msgid "All"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:313
#: lib/cannery_web/live/type_live/form_component.html.heex:317
#, elixir-autogen, elixir-format
msgid "Attributes"
msgstr ""
@ -1238,7 +1238,6 @@ msgid "Brass height:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:57
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:96
#, elixir-autogen, elixir-format
msgid "Chamber size"
@ -1254,8 +1253,8 @@ msgstr ""
msgid "Dimensions"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:266
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:270
#, elixir-autogen, elixir-format
msgid "Dram equivalent"
msgstr ""
@ -1276,8 +1275,8 @@ msgstr ""
msgid "Gauge:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:207
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:211
#, elixir-autogen, elixir-format
msgid "Load grains"
msgstr ""
@ -1307,12 +1306,12 @@ msgstr ""
msgid "Pistol"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:233
#: lib/cannery_web/live/type_live/form_component.html.heex:237
#, elixir-autogen, elixir-format, fuzzy
msgid "Powder"
msgstr "Type de poudre"
#: lib/cannery_web/live/type_live/form_component.html.heex:293
#: lib/cannery_web/live/type_live/form_component.html.heex:297
#, elixir-autogen, elixir-format, fuzzy
msgid "Primer"
msgstr "Type damorce"
@ -1332,8 +1331,8 @@ msgstr ""
msgid "Rifle"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:215
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:219
#, elixir-autogen, elixir-format
msgid "Shot charge weight"
msgstr ""
@ -1343,8 +1342,8 @@ msgstr ""
msgid "Shot charge weight:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:195
#, elixir-autogen, elixir-format
msgid "Shot material"
msgstr ""
@ -1354,8 +1353,8 @@ msgstr ""
msgid "Shot material:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:200
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:204
#, elixir-autogen, elixir-format, fuzzy
msgid "Shot size"
msgstr "Tirs réalisés"
@ -1365,8 +1364,8 @@ msgstr "Tirs réalisés"
msgid "Shot size:"
msgstr "Tirs réalisés"
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:183
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#, elixir-autogen, elixir-format
msgid "Shot type"
msgstr ""
@ -1386,13 +1385,13 @@ msgstr ""
msgid "Shotgun"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:143
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:147
#, elixir-autogen, elixir-format
msgid "Slug core"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#, elixir-autogen, elixir-format
msgid "Target, bird, buck, etc"
msgstr ""
@ -1408,8 +1407,8 @@ msgstr ""
msgid "Unfired shell length"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:176
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:180
#, elixir-autogen, elixir-format
msgid "Wadding"
msgstr ""
@ -1419,7 +1418,7 @@ msgstr ""
msgid "Wadding:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:150
#: lib/cannery_web/components/type_table_component.ex:149
#: lib/cannery_web/live/container_live/show.html.heex:97
#: lib/cannery_web/live/pack_live/index.html.heex:50
#: lib/cannery_web/live/range_live/index.html.heex:86

View File

@ -135,7 +135,7 @@ msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
#: lib/cannery_web/live/range_live/form_component.html.heex:47
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
#: lib/cannery_web/live/type_live/form_component.html.heex:351
#: lib/cannery_web/live/type_live/form_component.html.heex:355
#, elixir-autogen, elixir-format
msgid "Saving..."
msgstr "Sauvegarde en cours…"

View File

@ -132,7 +132,7 @@ msgstr ""
#: lib/cannery_web/live/pack_live/form_component.html.heex:91
#: lib/cannery_web/live/range_live/form_component.html.heex:45
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
#: lib/cannery_web/live/type_live/form_component.html.heex:350
#: lib/cannery_web/live/type_live/form_component.html.heex:354
#, elixir-autogen, elixir-format
msgid "Save"
msgstr ""

View File

@ -41,25 +41,25 @@ msgstr ""
msgid "Background color"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#, elixir-autogen, elixir-format
msgid "Blank"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#: lib/cannery_web/live/type_live/form_component.html.heex:175
#, elixir-autogen, elixir-format
msgid "Brass"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:144
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:148
#, elixir-autogen, elixir-format
msgid "Bullet core"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:60
#: lib/cannery_web/live/type_live/form_component.html.heex:121
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/live/type_live/form_component.html.heex:122
#, elixir-autogen, elixir-format
msgid "Bullet type"
msgstr ""
@ -76,8 +76,8 @@ msgstr ""
msgid "Cartridge"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:167
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:171
#, elixir-autogen, elixir-format
msgid "Case material"
msgstr ""
@ -97,8 +97,8 @@ msgstr ""
msgid "Containers"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:328
#: lib/cannery_web/components/type_table_component.ex:87
#: lib/cannery_web/live/type_live/form_component.html.heex:332
#, elixir-autogen, elixir-format
msgid "Corrosive"
msgstr ""
@ -143,19 +143,19 @@ msgstr ""
msgid "Edit Tag"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:135
#: lib/cannery_web/live/type_live/form_component.html.heex:136
#, elixir-autogen, elixir-format
msgid "FMJ"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:59
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:112
#, elixir-autogen, elixir-format
msgid "Grains"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:86
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:324
#, elixir-autogen, elixir-format
msgid "Incendiary"
msgstr ""
@ -205,9 +205,9 @@ msgstr ""
msgid "Magazine, Clip, Ammo Box, etc"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:89
#: lib/cannery_web/live/type_live/form_component.html.heex:333
#: lib/cannery_web/live/type_live/form_component.html.heex:336
#: lib/cannery_web/components/type_table_component.ex:88
#: lib/cannery_web/live/type_live/form_component.html.heex:337
#: lib/cannery_web/live/type_live/form_component.html.heex:340
#, elixir-autogen, elixir-format
msgid "Manufacturer"
msgstr ""
@ -223,7 +223,7 @@ msgid "My cool ammo can"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:45
#: lib/cannery_web/components/type_table_component.ex:153
#: lib/cannery_web/components/type_table_component.ex:152
#: 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/tag_live/form_component.html.heex:21
@ -296,8 +296,8 @@ msgstr ""
msgid "On the bookshelf"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:257
#: lib/cannery_web/components/type_table_component.ex:79
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#, elixir-autogen, elixir-format
msgid "Pressure"
msgstr ""
@ -313,8 +313,8 @@ msgstr ""
msgid "Price paid:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:296
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#, elixir-autogen, elixir-format
msgid "Primer type"
msgstr ""
@ -345,7 +345,7 @@ msgstr ""
msgid "Simple:"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:151
#: lib/cannery_web/live/type_live/form_component.html.heex:155
#, elixir-autogen, elixir-format
msgid "Steel"
msgstr ""
@ -379,8 +379,8 @@ msgstr ""
msgid "The self-hosted firearm tracker website"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:85
#: lib/cannery_web/live/type_live/form_component.html.heex:316
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:320
#, elixir-autogen, elixir-format
msgid "Tracer"
msgstr ""
@ -498,7 +498,7 @@ msgstr ""
#: lib/cannery_web/components/core_components/pack_card.html.heex:47
#: lib/cannery_web/components/pack_table_component.ex:176
#: lib/cannery_web/components/pack_table_component.ex:259
#: lib/cannery_web/components/type_table_component.ex:261
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/live/pack_live/show.html.heex:37
#: lib/cannery_web/live/pack_live/show.html.heex:42
#: lib/cannery_web/live/type_live/show.html.heex:150
@ -506,36 +506,36 @@ msgstr ""
msgid "$%{amount}"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#: lib/cannery_web/live/type_live/form_component.html.heex:164
#, elixir-autogen, elixir-format
msgid "Bimetal"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:66
#: lib/cannery_web/live/type_live/form_component.html.heex:156
#: lib/cannery_web/components/type_table_component.ex:65
#: lib/cannery_web/live/type_live/form_component.html.heex:160
#, elixir-autogen, elixir-format
msgid "Jacket type"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:82
#: lib/cannery_web/live/type_live/form_component.html.heex:279
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:283
#, elixir-autogen, elixir-format
msgid "Muzzle velocity"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:76
#: lib/cannery_web/live/type_live/form_component.html.heex:244
#: lib/cannery_web/components/type_table_component.ex:75
#: lib/cannery_web/live/type_live/form_component.html.heex:248
#, elixir-autogen, elixir-format
msgid "Powder grains per charge"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:74
#: lib/cannery_web/live/type_live/form_component.html.heex:236
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:240
#, elixir-autogen, elixir-format
msgid "Powder type"
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
msgid "UPC"
msgstr ""
@ -558,8 +558,8 @@ msgstr ""
msgid "New password"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:84
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#: lib/cannery_web/components/type_table_component.ex:83
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#, elixir-autogen, elixir-format
msgid "Firing type"
msgstr ""
@ -590,7 +590,7 @@ msgstr ""
#: lib/cannery_web/components/pack_table_component.ex:173
#: lib/cannery_web/components/pack_table_component.ex:255
#: lib/cannery_web/components/type_table_component.ex:260
#: lib/cannery_web/components/type_table_component.ex:259
#: lib/cannery_web/live/type_live/show.html.heex:154
#, elixir-autogen, elixir-format
msgid "No cost information"
@ -788,13 +788,13 @@ msgid "Rounds shot: %{count}"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:64
#: lib/cannery_web/components/type_table_component.ex:123
#: lib/cannery_web/components/type_table_component.ex:122
#, elixir-autogen, elixir-format, fuzzy
msgid "Packs"
msgstr ""
#: lib/cannery_web/components/container_table_component.ex:65
#: lib/cannery_web/components/type_table_component.ex:144
#: lib/cannery_web/components/type_table_component.ex:143
#, elixir-autogen, elixir-format, fuzzy
msgid "Rounds"
msgstr ""
@ -806,7 +806,7 @@ msgstr ""
msgid "View as table"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:108
#: lib/cannery_web/components/type_table_component.ex:107
#, elixir-autogen, elixir-format
msgid "Total ever packs"
msgstr ""
@ -816,7 +816,7 @@ msgstr ""
msgid "Total ever packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:129
#: lib/cannery_web/components/type_table_component.ex:128
#, elixir-autogen, elixir-format, fuzzy
msgid "Total ever rounds"
msgstr ""
@ -826,7 +826,7 @@ msgstr ""
msgid "Total ever rounds:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:116
#: lib/cannery_web/components/type_table_component.ex:115
#, elixir-autogen, elixir-format
msgid "Used packs"
msgstr ""
@ -836,7 +836,7 @@ msgstr ""
msgid "Used packs:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:137
#: lib/cannery_web/components/type_table_component.ex:136
#, elixir-autogen, elixir-format, fuzzy
msgid "Used rounds"
msgstr ""
@ -946,7 +946,7 @@ msgstr ""
msgid "UPC:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:102
#: lib/cannery_web/components/type_table_component.ex:101
#: lib/cannery_web/live/type_live/show.html.heex:146
#, elixir-autogen, elixir-format
msgid "Average CPR"
@ -1142,7 +1142,7 @@ msgstr ""
msgid "Password"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:261
#: lib/cannery_web/live/type_live/form_component.html.heex:265
#, elixir-autogen, elixir-format
msgid "+P"
msgstr ""
@ -1157,12 +1157,12 @@ msgstr ""
msgid "5.56x46mm NATO"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:300
#: lib/cannery_web/live/type_live/form_component.html.heex:304
#, elixir-autogen, elixir-format
msgid "Boxer"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:308
#: lib/cannery_web/live/type_live/form_component.html.heex:312
#, elixir-autogen, elixir-format
msgid "Centerfire"
msgstr ""
@ -1177,7 +1177,7 @@ msgstr ""
#: lib/cannery_web/components/move_pack_component.ex:68
#: lib/cannery_web/components/pack_table_component.ex:62
#: lib/cannery_web/components/shot_record_table_component.ex:48
#: lib/cannery_web/components/type_table_component.ex:100
#: lib/cannery_web/components/type_table_component.ex:99
#: lib/cannery_web/live/pack_live/show.ex:93
#, elixir-autogen, elixir-format
msgid "Actions"
@ -1212,7 +1212,7 @@ msgstr ""
msgid "All"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:313
#: lib/cannery_web/live/type_live/form_component.html.heex:317
#, elixir-autogen, elixir-format
msgid "Attributes"
msgstr ""
@ -1229,7 +1229,6 @@ msgid "Brass height:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:57
#: lib/cannery_web/components/type_table_component.ex:58
#: lib/cannery_web/live/type_live/form_component.html.heex:96
#, elixir-autogen, elixir-format
msgid "Chamber size"
@ -1245,8 +1244,8 @@ msgstr ""
msgid "Dimensions"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:81
#: lib/cannery_web/live/type_live/form_component.html.heex:266
#: lib/cannery_web/components/type_table_component.ex:80
#: lib/cannery_web/live/type_live/form_component.html.heex:270
#, elixir-autogen, elixir-format
msgid "Dram equivalent"
msgstr ""
@ -1267,8 +1266,8 @@ msgstr ""
msgid "Gauge:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:207
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:211
#, elixir-autogen, elixir-format
msgid "Load grains"
msgstr ""
@ -1298,12 +1297,12 @@ msgstr ""
msgid "Pistol"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:233
#: lib/cannery_web/live/type_live/form_component.html.heex:237
#, elixir-autogen, elixir-format, fuzzy
msgid "Powder"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:293
#: lib/cannery_web/live/type_live/form_component.html.heex:297
#, elixir-autogen, elixir-format, fuzzy
msgid "Primer"
msgstr ""
@ -1323,8 +1322,8 @@ msgstr ""
msgid "Rifle"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:73
#: lib/cannery_web/live/type_live/form_component.html.heex:215
#: lib/cannery_web/components/type_table_component.ex:72
#: lib/cannery_web/live/type_live/form_component.html.heex:219
#, elixir-autogen, elixir-format
msgid "Shot charge weight"
msgstr ""
@ -1334,8 +1333,8 @@ msgstr ""
msgid "Shot charge weight:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:195
#, elixir-autogen, elixir-format
msgid "Shot material"
msgstr ""
@ -1345,8 +1344,8 @@ msgstr ""
msgid "Shot material:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:71
#: lib/cannery_web/live/type_live/form_component.html.heex:200
#: lib/cannery_web/components/type_table_component.ex:70
#: lib/cannery_web/live/type_live/form_component.html.heex:204
#, elixir-autogen, elixir-format, fuzzy
msgid "Shot size"
msgstr ""
@ -1356,8 +1355,8 @@ msgstr ""
msgid "Shot size:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:69
#: lib/cannery_web/live/type_live/form_component.html.heex:183
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#, elixir-autogen, elixir-format
msgid "Shot type"
msgstr ""
@ -1377,13 +1376,13 @@ msgstr ""
msgid "Shotgun"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:62
#: lib/cannery_web/live/type_live/form_component.html.heex:143
#: lib/cannery_web/components/type_table_component.ex:61
#: lib/cannery_web/live/type_live/form_component.html.heex:147
#, elixir-autogen, elixir-format
msgid "Slug core"
msgstr ""
#: lib/cannery_web/live/type_live/form_component.html.heex:187
#: lib/cannery_web/live/type_live/form_component.html.heex:191
#, elixir-autogen, elixir-format
msgid "Target, bird, buck, etc"
msgstr ""
@ -1399,8 +1398,8 @@ msgstr ""
msgid "Unfired shell length"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:68
#: lib/cannery_web/live/type_live/form_component.html.heex:176
#: lib/cannery_web/components/type_table_component.ex:67
#: lib/cannery_web/live/type_live/form_component.html.heex:180
#, elixir-autogen, elixir-format
msgid "Wadding"
msgstr ""
@ -1410,7 +1409,7 @@ msgstr ""
msgid "Wadding:"
msgstr ""
#: lib/cannery_web/components/type_table_component.ex:150
#: lib/cannery_web/components/type_table_component.ex:149
#: lib/cannery_web/live/container_live/show.html.heex:97
#: lib/cannery_web/live/pack_live/index.html.heex:50
#: lib/cannery_web/live/range_live/index.html.heex:86

View File

@ -126,7 +126,7 @@ msgstr ""
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
#: lib/cannery_web/live/range_live/form_component.html.heex:47
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
#: lib/cannery_web/live/type_live/form_component.html.heex:351
#: lib/cannery_web/live/type_live/form_component.html.heex:355
#, elixir-autogen, elixir-format
msgid "Saving..."
msgstr ""

View File

@ -115,7 +115,7 @@ msgstr ""
#: lib/cannery_web/live/pack_live/form_component.html.heex:92
#: lib/cannery_web/live/range_live/form_component.html.heex:47
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
#: lib/cannery_web/live/type_live/form_component.html.heex:351
#: lib/cannery_web/live/type_live/form_component.html.heex:355
#, elixir-autogen, elixir-format
msgid "Saving..."
msgstr ""