From 2b81978adb655d4d9b24aae705c9dfa9294c05d2 Mon Sep 17 00:00:00 2001 From: shibao Date: Mon, 10 Apr 2023 20:08:37 -0400 Subject: [PATCH] make bullet type rifle/pistol type-only field --- CHANGELOG.md | 1 + lib/cannery/ammo/type.ex | 4 +- .../live/type_live/form_component.html.heex | 36 +++++----- priv/gettext/actions.pot | 2 +- priv/gettext/de/LC_MESSAGES/actions.po | 2 +- priv/gettext/de/LC_MESSAGES/default.po | 72 +++++++++---------- priv/gettext/de/LC_MESSAGES/prompts.po | 2 +- priv/gettext/default.pot | 72 +++++++++---------- priv/gettext/en/LC_MESSAGES/actions.po | 2 +- priv/gettext/en/LC_MESSAGES/default.po | 72 +++++++++---------- priv/gettext/en/LC_MESSAGES/prompts.po | 2 +- priv/gettext/es/LC_MESSAGES/actions.po | 2 +- priv/gettext/es/LC_MESSAGES/default.po | 72 +++++++++---------- priv/gettext/es/LC_MESSAGES/prompts.po | 2 +- priv/gettext/fr/LC_MESSAGES/actions.po | 2 +- priv/gettext/fr/LC_MESSAGES/default.po | 72 +++++++++---------- priv/gettext/fr/LC_MESSAGES/prompts.po | 2 +- priv/gettext/ga/LC_MESSAGES/actions.po | 2 +- priv/gettext/ga/LC_MESSAGES/default.po | 72 +++++++++---------- priv/gettext/ga/LC_MESSAGES/prompts.po | 2 +- priv/gettext/prompts.pot | 2 +- 21 files changed, 251 insertions(+), 246 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5aeeaa..5ea90c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - 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 # v0.9.1 - Rename ammo type's "type" to "class" to avoid confusion diff --git a/lib/cannery/ammo/type.ex b/lib/cannery/ammo/type.ex index 0ab1115..bdaef18 100644 --- a/lib/cannery/ammo/type.ex +++ b/lib/cannery/ammo/type.ex @@ -55,8 +55,6 @@ defmodule Cannery.Ammo.Type do field :class, Ecto.Enum, values: [:rifle, :shotgun, :pistol] # 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 diff --git a/lib/cannery_web/live/type_live/form_component.html.heex b/lib/cannery_web/live/type_live/form_component.html.heex index 765dfcc..d7b0de2 100644 --- a/lib/cannery_web/live/type_live/form_component.html.heex +++ b/lib/cannery_web/live/type_live/form_component.html.heex @@ -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 %> -

<%= gettext("Bullet type") %>

+ <%= 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 %> +

<%= gettext("Bullet type") %>

- <.link - href="https://shootersreference.com/reloadingdata/bullet_abbreviations/" - class="link" - target="_blank" - rel="noopener noreferrer" - > - - + <.link + href="https://shootersreference.com/reloadingdata/bullet_abbreviations/" + class="link" + target="_blank" + rel="noopener noreferrer" + > + + + <% 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, diff --git a/priv/gettext/actions.pot b/priv/gettext/actions.pot index db4fcb7..6de2acf 100644 --- a/priv/gettext/actions.pot +++ b/priv/gettext/actions.pot @@ -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 "" diff --git a/priv/gettext/de/LC_MESSAGES/actions.po b/priv/gettext/de/LC_MESSAGES/actions.po index 5142edd..6ffba69 100644 --- a/priv/gettext/de/LC_MESSAGES/actions.po +++ b/priv/gettext/de/LC_MESSAGES/actions.po @@ -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" diff --git a/priv/gettext/de/LC_MESSAGES/default.po b/priv/gettext/de/LC_MESSAGES/default.po index e4c0a5a..433c35f 100644 --- a/priv/gettext/de/LC_MESSAGES/default.po +++ b/priv/gettext/de/LC_MESSAGES/default.po @@ -44,24 +44,24 @@ msgid "Background color" msgstr "Hintergrundfarbe" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format 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:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:144 +#: lib/cannery_web/live/type_live/form_component.html.heex:148 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "Projektilkern" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:121 +#: lib/cannery_web/live/type_live/form_component.html.heex:122 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Patronenart" @@ -79,7 +79,7 @@ msgid "Cartridge" msgstr "Patrone" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Case material" msgstr "Gehäusematerial" @@ -100,7 +100,7 @@ msgid "Containers" msgstr "Behälter" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:332 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Korrosiv" @@ -145,7 +145,7 @@ 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" @@ -157,7 +157,7 @@ msgid "Grains" msgstr "Körner" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:324 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Brandmunition" @@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "Magazin, Ladestreifen, Munitionskiste usw." #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 -#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: 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" @@ -299,7 +299,7 @@ msgid "On the bookshelf" msgstr "Auf dem Bücherregal" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:257 +#: lib/cannery_web/live/type_live/form_component.html.heex:261 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "Druck" @@ -316,7 +316,7 @@ msgid "Price paid:" msgstr "Kaufpreis:" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:296 +#: lib/cannery_web/live/type_live/form_component.html.heex:300 #, elixir-autogen, elixir-format 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" @@ -384,7 +384,7 @@ msgid "The self-hosted firearm tracker website" msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen" #: lib/cannery_web/components/type_table_component.ex:84 -#: lib/cannery_web/live/type_live/form_component.html.heex:316 +#: lib/cannery_web/live/type_live/form_component.html.heex:320 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Leuchtspur" @@ -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:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:156 +#: lib/cannery_web/live/type_live/form_component.html.heex:160 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "Patronenhülse" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:279 +#: lib/cannery_web/live/type_live/form_component.html.heex:283 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "Mündungsgeschwindigkeit" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:244 +#: lib/cannery_web/live/type_live/form_component.html.heex:248 #, elixir-autogen, elixir-format msgid "Powder grains per charge" msgstr "Pulverkörner pro Ladung" #: lib/cannery_web/components/type_table_component.ex:73 -#: lib/cannery_web/live/type_live/form_component.html.heex:236 +#: lib/cannery_web/live/type_live/form_component.html.heex:240 #, elixir-autogen, elixir-format 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" @@ -563,7 +563,7 @@ msgid "New password" msgstr "Neues Passwort" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:308 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Patronenhülsenform" @@ -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 "" @@ -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 "" @@ -1251,7 +1251,7 @@ msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:266 +#: lib/cannery_web/live/type_live/form_component.html.heex:270 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1273,7 +1273,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:207 +#: lib/cannery_web/live/type_live/form_component.html.heex:211 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1303,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,7 +1329,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:215 +#: lib/cannery_web/live/type_live/form_component.html.heex:219 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1340,7 +1340,7 @@ msgid "Shot charge weight:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:69 -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1351,7 +1351,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:200 +#: lib/cannery_web/live/type_live/form_component.html.heex:204 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "Schüsse abgegeben" @@ -1362,7 +1362,7 @@ msgid "Shot size:" msgstr "Schüsse abgegeben" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:183 +#: lib/cannery_web/live/type_live/form_component.html.heex:187 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1383,12 +1383,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:143 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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,7 +1405,7 @@ msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:176 +#: lib/cannery_web/live/type_live/form_component.html.heex:180 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/prompts.po b/priv/gettext/de/LC_MESSAGES/prompts.po index be8346b..7a82354 100644 --- a/priv/gettext/de/LC_MESSAGES/prompts.po +++ b/priv/gettext/de/LC_MESSAGES/prompts.po @@ -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..." diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 838ac5a..a0fc437 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -40,24 +40,24 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format 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:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:144 +#: lib/cannery_web/live/type_live/form_component.html.heex:148 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:121 +#: lib/cannery_web/live/type_live/form_component.html.heex:122 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" @@ -75,7 +75,7 @@ msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Case material" msgstr "" @@ -96,7 +96,7 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:332 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" @@ -141,7 +141,7 @@ 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 "" @@ -153,7 +153,7 @@ msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:324 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 -#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: 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 "" @@ -295,7 +295,7 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:257 +#: lib/cannery_web/live/type_live/form_component.html.heex:261 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" @@ -312,7 +312,7 @@ msgid "Price paid:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:296 +#: lib/cannery_web/live/type_live/form_component.html.heex:300 #, elixir-autogen, elixir-format 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 "" @@ -378,7 +378,7 @@ msgid "The self-hosted firearm tracker website" msgstr "" #: lib/cannery_web/components/type_table_component.ex:84 -#: lib/cannery_web/live/type_live/form_component.html.heex:316 +#: lib/cannery_web/live/type_live/form_component.html.heex:320 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -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:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:156 +#: lib/cannery_web/live/type_live/form_component.html.heex:160 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:279 +#: lib/cannery_web/live/type_live/form_component.html.heex:283 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:244 +#: lib/cannery_web/live/type_live/form_component.html.heex:248 #, elixir-autogen, elixir-format msgid "Powder grains per charge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:73 -#: lib/cannery_web/live/type_live/form_component.html.heex:236 +#: lib/cannery_web/live/type_live/form_component.html.heex:240 #, elixir-autogen, elixir-format 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 "" @@ -557,7 +557,7 @@ msgid "New password" msgstr "" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:308 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -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 "" @@ -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 "" @@ -1234,7 +1234,7 @@ msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:266 +#: lib/cannery_web/live/type_live/form_component.html.heex:270 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1256,7 +1256,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:207 +#: lib/cannery_web/live/type_live/form_component.html.heex:211 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1286,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,7 +1312,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:215 +#: lib/cannery_web/live/type_live/form_component.html.heex:219 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1323,7 +1323,7 @@ msgid "Shot charge weight:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:69 -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1334,7 +1334,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:200 +#: lib/cannery_web/live/type_live/form_component.html.heex:204 #, elixir-autogen, elixir-format msgid "Shot size" msgstr "" @@ -1345,7 +1345,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:183 +#: lib/cannery_web/live/type_live/form_component.html.heex:187 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1366,12 +1366,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:143 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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,7 +1388,7 @@ msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:176 +#: lib/cannery_web/live/type_live/form_component.html.heex:180 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/actions.po b/priv/gettext/en/LC_MESSAGES/actions.po index 8c61a89..c58bd28 100644 --- a/priv/gettext/en/LC_MESSAGES/actions.po +++ b/priv/gettext/en/LC_MESSAGES/actions.po @@ -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 "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index 4fc060e..efac611 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -40,24 +40,24 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format 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:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:144 +#: lib/cannery_web/live/type_live/form_component.html.heex:148 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:121 +#: lib/cannery_web/live/type_live/form_component.html.heex:122 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" @@ -75,7 +75,7 @@ msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Case material" msgstr "" @@ -96,7 +96,7 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:332 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" @@ -141,7 +141,7 @@ 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 "" @@ -153,7 +153,7 @@ msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:324 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 -#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: 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 "" @@ -295,7 +295,7 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:257 +#: lib/cannery_web/live/type_live/form_component.html.heex:261 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" @@ -312,7 +312,7 @@ msgid "Price paid:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:296 +#: lib/cannery_web/live/type_live/form_component.html.heex:300 #, elixir-autogen, elixir-format 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 "" @@ -378,7 +378,7 @@ msgid "The self-hosted firearm tracker website" msgstr "" #: lib/cannery_web/components/type_table_component.ex:84 -#: lib/cannery_web/live/type_live/form_component.html.heex:316 +#: lib/cannery_web/live/type_live/form_component.html.heex:320 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -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:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:156 +#: lib/cannery_web/live/type_live/form_component.html.heex:160 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:279 +#: lib/cannery_web/live/type_live/form_component.html.heex:283 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:244 +#: lib/cannery_web/live/type_live/form_component.html.heex:248 #, elixir-autogen, elixir-format msgid "Powder grains per charge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:73 -#: lib/cannery_web/live/type_live/form_component.html.heex:236 +#: lib/cannery_web/live/type_live/form_component.html.heex:240 #, elixir-autogen, elixir-format 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 "" @@ -557,7 +557,7 @@ msgid "New password" msgstr "" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:308 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -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 "" @@ -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 "" @@ -1234,7 +1234,7 @@ msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:266 +#: lib/cannery_web/live/type_live/form_component.html.heex:270 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1256,7 +1256,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:207 +#: lib/cannery_web/live/type_live/form_component.html.heex:211 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1286,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,7 +1312,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:215 +#: lib/cannery_web/live/type_live/form_component.html.heex:219 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1323,7 +1323,7 @@ msgid "Shot charge weight:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:69 -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1334,7 +1334,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:200 +#: lib/cannery_web/live/type_live/form_component.html.heex:204 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "" @@ -1345,7 +1345,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:183 +#: lib/cannery_web/live/type_live/form_component.html.heex:187 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1366,12 +1366,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:143 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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,7 +1388,7 @@ msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:176 +#: lib/cannery_web/live/type_live/form_component.html.heex:180 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/prompts.po b/priv/gettext/en/LC_MESSAGES/prompts.po index 0d4d45d..2eee401 100644 --- a/priv/gettext/en/LC_MESSAGES/prompts.po +++ b/priv/gettext/en/LC_MESSAGES/prompts.po @@ -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 "" diff --git a/priv/gettext/es/LC_MESSAGES/actions.po b/priv/gettext/es/LC_MESSAGES/actions.po index a05f604..e62ba2f 100644 --- a/priv/gettext/es/LC_MESSAGES/actions.po +++ b/priv/gettext/es/LC_MESSAGES/actions.po @@ -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" diff --git a/priv/gettext/es/LC_MESSAGES/default.po b/priv/gettext/es/LC_MESSAGES/default.po index b285256..454ec42 100644 --- a/priv/gettext/es/LC_MESSAGES/default.po +++ b/priv/gettext/es/LC_MESSAGES/default.po @@ -44,24 +44,24 @@ msgid "Background color" msgstr "Color de fondo" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format 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:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:144 +#: lib/cannery_web/live/type_live/form_component.html.heex:148 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "Núcleo de bala" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:121 +#: lib/cannery_web/live/type_live/form_component.html.heex:122 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Tipo de bala" @@ -79,7 +79,7 @@ msgid "Cartridge" msgstr "Cartucho" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Case material" msgstr "Material del casquillo" @@ -100,7 +100,7 @@ msgid "Containers" msgstr "Contenedores" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:332 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Corrosiva" @@ -145,7 +145,7 @@ 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" @@ -157,7 +157,7 @@ msgid "Grains" msgstr "Grano" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:324 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Incendiaria" @@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "Cargador, Clip, Caja de Munición, etc" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 -#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: 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" @@ -299,7 +299,7 @@ msgid "On the bookshelf" msgstr "En la estantería" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:257 +#: lib/cannery_web/live/type_live/form_component.html.heex:261 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "Presión" @@ -316,7 +316,7 @@ msgid "Price paid:" msgstr "Precio pagado:" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:296 +#: lib/cannery_web/live/type_live/form_component.html.heex:300 #, elixir-autogen, elixir-format 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" @@ -385,7 +385,7 @@ msgid "The self-hosted firearm tracker website" msgstr "La página de seguimiento de armas autogestionada" #: lib/cannery_web/components/type_table_component.ex:84 -#: lib/cannery_web/live/type_live/form_component.html.heex:316 +#: lib/cannery_web/live/type_live/form_component.html.heex:320 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Trazadora" @@ -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:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:156 +#: lib/cannery_web/live/type_live/form_component.html.heex:160 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "Tipo de camisa" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:279 +#: lib/cannery_web/live/type_live/form_component.html.heex:283 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "Velocidad de boca" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:244 +#: lib/cannery_web/live/type_live/form_component.html.heex:248 #, elixir-autogen, elixir-format msgid "Powder grains per charge" msgstr "Granos de polvora por carga" #: lib/cannery_web/components/type_table_component.ex:73 -#: lib/cannery_web/live/type_live/form_component.html.heex:236 +#: lib/cannery_web/live/type_live/form_component.html.heex:240 #, elixir-autogen, elixir-format 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 "" @@ -564,7 +564,7 @@ msgid "New password" msgstr "Nueva contraseña" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:308 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Tipo de fuego" @@ -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 "" @@ -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 "" @@ -1253,7 +1253,7 @@ msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:266 +#: lib/cannery_web/live/type_live/form_component.html.heex:270 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1275,7 +1275,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:207 +#: lib/cannery_web/live/type_live/form_component.html.heex:211 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1305,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,7 +1331,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:215 +#: lib/cannery_web/live/type_live/form_component.html.heex:219 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1342,7 +1342,7 @@ msgid "Shot charge weight:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:69 -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1353,7 +1353,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:200 +#: lib/cannery_web/live/type_live/form_component.html.heex:204 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "Tiros disparados" @@ -1364,7 +1364,7 @@ msgid "Shot size:" msgstr "Tiros disparados" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:183 +#: lib/cannery_web/live/type_live/form_component.html.heex:187 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1385,12 +1385,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:143 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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,7 +1407,7 @@ msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:176 +#: lib/cannery_web/live/type_live/form_component.html.heex:180 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/prompts.po b/priv/gettext/es/LC_MESSAGES/prompts.po index 0e14a16..23ce457 100644 --- a/priv/gettext/es/LC_MESSAGES/prompts.po +++ b/priv/gettext/es/LC_MESSAGES/prompts.po @@ -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..." diff --git a/priv/gettext/fr/LC_MESSAGES/actions.po b/priv/gettext/fr/LC_MESSAGES/actions.po index 14cfd03..6f6111c 100644 --- a/priv/gettext/fr/LC_MESSAGES/actions.po +++ b/priv/gettext/fr/LC_MESSAGES/actions.po @@ -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" diff --git a/priv/gettext/fr/LC_MESSAGES/default.po b/priv/gettext/fr/LC_MESSAGES/default.po index becdd0f..8cf04ee 100644 --- a/priv/gettext/fr/LC_MESSAGES/default.po +++ b/priv/gettext/fr/LC_MESSAGES/default.po @@ -44,24 +44,24 @@ msgid "Background color" msgstr "Couleur de fond" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format 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:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:144 +#: lib/cannery_web/live/type_live/form_component.html.heex:148 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "Noyau de balle" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:121 +#: lib/cannery_web/live/type_live/form_component.html.heex:122 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Type de balle" @@ -79,7 +79,7 @@ msgid "Cartridge" msgstr "Cartouche" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Case material" msgstr "Matériau de la caisse" @@ -100,7 +100,7 @@ msgid "Containers" msgstr "Conteneurs" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:332 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Corrosive" @@ -145,7 +145,7 @@ msgstr "Modifier l’invitation" 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" @@ -157,7 +157,7 @@ msgid "Grains" msgstr "Graines" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:324 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Incendiaire" @@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "Chargeur, lame-chargeur, boite de munition, etc." #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 -#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: 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" @@ -299,7 +299,7 @@ msgid "On the bookshelf" msgstr "Sur l’étagère" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:257 +#: lib/cannery_web/live/type_live/form_component.html.heex:261 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "Pression" @@ -316,7 +316,7 @@ msgid "Price paid:" msgstr "Prix payé :" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:296 +#: lib/cannery_web/live/type_live/form_component.html.heex:300 #, elixir-autogen, elixir-format msgid "Primer type" msgstr "Type d’amorce" @@ -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" @@ -386,7 +386,7 @@ msgid "The self-hosted firearm tracker website" msgstr "Le site web de suivi d’arme à feux auto-hébergé" #: lib/cannery_web/components/type_table_component.ex:84 -#: lib/cannery_web/live/type_live/form_component.html.heex:316 +#: lib/cannery_web/live/type_live/form_component.html.heex:320 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Traceuse" @@ -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:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:156 +#: lib/cannery_web/live/type_live/form_component.html.heex:160 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "Type de douille" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:279 +#: lib/cannery_web/live/type_live/form_component.html.heex:283 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "Vélocité du canon" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:244 +#: lib/cannery_web/live/type_live/form_component.html.heex:248 #, elixir-autogen, elixir-format msgid "Powder grains per charge" msgstr "Graines de poudre par charge" #: lib/cannery_web/components/type_table_component.ex:73 -#: lib/cannery_web/live/type_live/form_component.html.heex:236 +#: lib/cannery_web/live/type_live/form_component.html.heex:240 #, elixir-autogen, elixir-format 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" @@ -565,7 +565,7 @@ msgid "New password" msgstr "Nouveau mot de passe" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:308 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Type d’allumage" @@ -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 "" @@ -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 "" @@ -1254,7 +1254,7 @@ msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:266 +#: lib/cannery_web/live/type_live/form_component.html.heex:270 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1276,7 +1276,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:207 +#: lib/cannery_web/live/type_live/form_component.html.heex:211 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1306,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 d’amorce" @@ -1332,7 +1332,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:215 +#: lib/cannery_web/live/type_live/form_component.html.heex:219 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1343,7 +1343,7 @@ msgid "Shot charge weight:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:69 -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1354,7 +1354,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:200 +#: lib/cannery_web/live/type_live/form_component.html.heex:204 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "Tirs réalisés" @@ -1365,7 +1365,7 @@ msgid "Shot size:" msgstr "Tirs réalisés" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:183 +#: lib/cannery_web/live/type_live/form_component.html.heex:187 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1386,12 +1386,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:143 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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,7 +1408,7 @@ msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:176 +#: lib/cannery_web/live/type_live/form_component.html.heex:180 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/fr/LC_MESSAGES/prompts.po b/priv/gettext/fr/LC_MESSAGES/prompts.po index dd39548..8003340 100644 --- a/priv/gettext/fr/LC_MESSAGES/prompts.po +++ b/priv/gettext/fr/LC_MESSAGES/prompts.po @@ -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…" diff --git a/priv/gettext/ga/LC_MESSAGES/actions.po b/priv/gettext/ga/LC_MESSAGES/actions.po index d721dd1..2eb28be 100644 --- a/priv/gettext/ga/LC_MESSAGES/actions.po +++ b/priv/gettext/ga/LC_MESSAGES/actions.po @@ -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 "" diff --git a/priv/gettext/ga/LC_MESSAGES/default.po b/priv/gettext/ga/LC_MESSAGES/default.po index 07c7eec..43f9a5e 100644 --- a/priv/gettext/ga/LC_MESSAGES/default.po +++ b/priv/gettext/ga/LC_MESSAGES/default.po @@ -42,24 +42,24 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format 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:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:144 +#: lib/cannery_web/live/type_live/form_component.html.heex:148 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:121 +#: lib/cannery_web/live/type_live/form_component.html.heex:122 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" @@ -77,7 +77,7 @@ msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Case material" msgstr "" @@ -98,7 +98,7 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:332 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" @@ -143,7 +143,7 @@ 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 "" @@ -155,7 +155,7 @@ msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:324 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -206,8 +206,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 -#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: 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 "" @@ -297,7 +297,7 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:257 +#: lib/cannery_web/live/type_live/form_component.html.heex:261 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" @@ -314,7 +314,7 @@ msgid "Price paid:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:296 +#: lib/cannery_web/live/type_live/form_component.html.heex:300 #, elixir-autogen, elixir-format 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 "" @@ -380,7 +380,7 @@ msgid "The self-hosted firearm tracker website" msgstr "" #: lib/cannery_web/components/type_table_component.ex:84 -#: lib/cannery_web/live/type_live/form_component.html.heex:316 +#: lib/cannery_web/live/type_live/form_component.html.heex:320 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -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:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:156 +#: lib/cannery_web/live/type_live/form_component.html.heex:160 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:279 +#: lib/cannery_web/live/type_live/form_component.html.heex:283 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:244 +#: lib/cannery_web/live/type_live/form_component.html.heex:248 #, elixir-autogen, elixir-format msgid "Powder grains per charge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:73 -#: lib/cannery_web/live/type_live/form_component.html.heex:236 +#: lib/cannery_web/live/type_live/form_component.html.heex:240 #, elixir-autogen, elixir-format 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 "" @@ -559,7 +559,7 @@ msgid "New password" msgstr "" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:308 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -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 "" @@ -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 "" @@ -1245,7 +1245,7 @@ msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:266 +#: lib/cannery_web/live/type_live/form_component.html.heex:270 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1267,7 +1267,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:207 +#: lib/cannery_web/live/type_live/form_component.html.heex:211 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1297,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,7 +1323,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:215 +#: lib/cannery_web/live/type_live/form_component.html.heex:219 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1334,7 +1334,7 @@ msgid "Shot charge weight:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:69 -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1345,7 +1345,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:200 +#: lib/cannery_web/live/type_live/form_component.html.heex:204 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "" @@ -1356,7 +1356,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:183 +#: lib/cannery_web/live/type_live/form_component.html.heex:187 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1377,12 +1377,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:143 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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,7 +1399,7 @@ msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:176 +#: lib/cannery_web/live/type_live/form_component.html.heex:180 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/ga/LC_MESSAGES/prompts.po b/priv/gettext/ga/LC_MESSAGES/prompts.po index 18c3938..91f9ed4 100644 --- a/priv/gettext/ga/LC_MESSAGES/prompts.po +++ b/priv/gettext/ga/LC_MESSAGES/prompts.po @@ -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 "" diff --git a/priv/gettext/prompts.pot b/priv/gettext/prompts.pot index b9824b0..5f8260f 100644 --- a/priv/gettext/prompts.pot +++ b/priv/gettext/prompts.pot @@ -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 ""