diff --git a/assets/js/app.js b/assets/js/app.js index 309a40f..dbdc58d 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -25,7 +25,6 @@ import 'phoenix_html' import { Socket } from 'phoenix' import { LiveSocket } from 'phoenix_live_view' import topbar from 'topbar' -import MaintainAttrs from './maintain_attrs' import ShotLogChart from './shot_log_chart' import Date from './date' import DateTime from './datetime' @@ -33,7 +32,7 @@ import DateTime from './datetime' const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content') const liveSocket = new LiveSocket('/live', Socket, { params: { _csrf_token: csrfToken }, - hooks: { Date, DateTime, MaintainAttrs, ShotLogChart } + hooks: { Date, DateTime, ShotLogChart } }) // Show progress bar on live navigation and form submits diff --git a/assets/js/maintain_attrs.js b/assets/js/maintain_attrs.js deleted file mode 100644 index 7e4f65b..0000000 --- a/assets/js/maintain_attrs.js +++ /dev/null @@ -1,11 +0,0 @@ -// maintain user adjusted attributes, like textbox length on phoenix liveview -// update. https://github.com/phoenixframework/phoenix_live_view/issues/1011 - -export default { - attrs () { - const attrs = this.el.getAttribute('data-attrs') - if (attrs) { return attrs.split(', ') } else { return [] } - }, - beforeUpdate () { this.prevAttrs = this.attrs().map(name => [name, this.el.getAttribute(name)]) }, - updated () { this.prevAttrs.forEach(([name, val]) => this.el.setAttribute(name, val)) } -} diff --git a/lib/cannery_web/components/add_shot_record_component.html.heex b/lib/cannery_web/components/add_shot_record_component.html.heex index 7c27dc6..50c7266 100644 --- a/lib/cannery_web/components/add_shot_record_component.html.heex +++ b/lib/cannery_web/components/add_shot_record_component.html.heex @@ -41,7 +41,6 @@ class: "input input-primary col-span-2", maxlength: 255, placeholder: gettext("Really great weather"), - phx_hook: "MaintainAttrs", phx_update: "ignore" ) %> <%= error_tag(f, :notes, "col-span-3") %> diff --git a/lib/cannery_web/live/container_live/form_component.html.heex b/lib/cannery_web/live/container_live/form_component.html.heex index 75ddc76..369e3c7 100644 --- a/lib/cannery_web/live/container_live/form_component.html.heex +++ b/lib/cannery_web/live/container_live/form_component.html.heex @@ -31,7 +31,6 @@ id: "container-form-desc", class: "input input-primary col-span-2", placeholder: gettext("Metal ammo can with the anime girl sticker"), - phx_hook: "MaintainAttrs", phx_update: "ignore" ) %> <%= error_tag(f, :desc, "col-span-3 text-center") %> @@ -49,7 +48,6 @@ id: "container-form-location", class: "input input-primary col-span-2", placeholder: gettext("On the bookshelf"), - phx_hook: "MaintainAttrs", phx_update: "ignore" ) %> <%= error_tag(f, :location, "col-span-3 text-center") %> diff --git a/lib/cannery_web/live/pack_live/form_component.html.heex b/lib/cannery_web/live/pack_live/form_component.html.heex index b51202c..d0682d4 100644 --- a/lib/cannery_web/live/pack_live/form_component.html.heex +++ b/lib/cannery_web/live/pack_live/form_component.html.heex @@ -58,7 +58,6 @@ <%= textarea(f, :notes, id: "pack-form-notes", class: "text-center col-span-2 input input-primary", - phx_hook: "MaintainAttrs", phx_update: "ignore" ) %> <%= error_tag(f, :notes, "col-span-3 text-center") %> diff --git a/lib/cannery_web/live/range_live/form_component.html.heex b/lib/cannery_web/live/range_live/form_component.html.heex index d51154e..ba81100 100644 --- a/lib/cannery_web/live/range_live/form_component.html.heex +++ b/lib/cannery_web/live/range_live/form_component.html.heex @@ -33,7 +33,6 @@ class: "input input-primary col-span-2", maxlength: 255, placeholder: gettext("Really great weather"), - phx_hook: "MaintainAttrs", phx_update: "ignore" ) %> <%= error_tag(f, :notes, "col-span-3") %> 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 d7b0de2..fdc9652 100644 --- a/lib/cannery_web/live/type_live/form_component.html.heex +++ b/lib/cannery_web/live/type_live/form_component.html.heex @@ -39,7 +39,6 @@ <%= textarea(f, :desc, id: "type-form-desc", class: "text-center col-span-2 input input-primary", - phx_hook: "MaintainAttrs", phx_update: "ignore" ) %> <%= error_tag(f, :desc, "col-span-3 text-center") %> diff --git a/priv/gettext/actions.pot b/priv/gettext/actions.pot index c49954b..61f1a84 100644 --- a/priv/gettext/actions.pot +++ b/priv/gettext/actions.pot @@ -115,13 +115,13 @@ msgstr "" msgid "Reset password" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:57 -#: lib/cannery_web/live/container_live/form_component.html.heex:57 +#: lib/cannery_web/components/add_shot_record_component.html.heex:56 +#: lib/cannery_web/live/container_live/form_component.html.heex:55 #: lib/cannery_web/live/invite_live/form_component.html.heex:35 -#: lib/cannery_web/live/pack_live/form_component.html.heex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:45 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 +#: lib/cannery_web/live/range_live/form_component.html.heex:44 #: lib/cannery_web/live/tag_live/form_component.html.heex:37 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:353 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -178,7 +178,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:84 +#: lib/cannery_web/live/pack_live/form_component.html.heex:83 #, elixir-autogen, elixir-format msgid "Create" msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/actions.po b/priv/gettext/de/LC_MESSAGES/actions.po index 1081a35..cfd844d 100644 --- a/priv/gettext/de/LC_MESSAGES/actions.po +++ b/priv/gettext/de/LC_MESSAGES/actions.po @@ -128,13 +128,13 @@ msgstr "Bestätigungsmail erneut senden" msgid "Reset password" msgstr "Passwort zurücksetzen" -#: lib/cannery_web/components/add_shot_record_component.html.heex:57 -#: lib/cannery_web/live/container_live/form_component.html.heex:57 +#: lib/cannery_web/components/add_shot_record_component.html.heex:56 +#: lib/cannery_web/live/container_live/form_component.html.heex:55 #: lib/cannery_web/live/invite_live/form_component.html.heex:35 -#: lib/cannery_web/live/pack_live/form_component.html.heex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:45 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 +#: lib/cannery_web/live/range_live/form_component.html.heex:44 #: lib/cannery_web/live/tag_live/form_component.html.heex:37 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:353 #, elixir-autogen, elixir-format msgid "Save" msgstr "Speichern" @@ -191,7 +191,7 @@ msgstr "In die Zwischenablage kopieren" msgid "add a container first" msgstr "Zuerst einen Behälter hinzufügen" -#: lib/cannery_web/live/pack_live/form_component.html.heex:84 +#: lib/cannery_web/live/pack_live/form_component.html.heex:83 #, elixir-autogen, elixir-format msgid "Create" msgstr "Erstellen" diff --git a/priv/gettext/de/LC_MESSAGES/default.po b/priv/gettext/de/LC_MESSAGES/default.po index 65ccb54..7bb44c4 100644 --- a/priv/gettext/de/LC_MESSAGES/default.po +++ b/priv/gettext/de/LC_MESSAGES/default.po @@ -44,49 +44,49 @@ msgid "Background color" msgstr "Hintergrundfarbe" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:327 #, elixir-autogen, elixir-format msgid "Blank" msgstr "Knallpatrone" -#: lib/cannery_web/live/type_live/form_component.html.heex:175 +#: lib/cannery_web/live/type_live/form_component.html.heex:174 #, elixir-autogen, elixir-format msgid "Brass" msgstr "Messing" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:148 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "Projektilkern" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:121 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Patronenart" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:68 +#: lib/cannery_web/live/type_live/form_component.html.heex:67 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "Kaliber" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:52 +#: lib/cannery_web/live/type_live/form_component.html.heex:51 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "Patrone" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:171 +#: lib/cannery_web/live/type_live/form_component.html.heex:170 #, elixir-autogen, elixir-format msgid "Case material" msgstr "Gehäusematerial" #: lib/cannery_web/components/move_pack_component.ex:64 #: lib/cannery_web/components/pack_table_component.ex:76 -#: lib/cannery_web/live/pack_live/form_component.html.heex:66 +#: lib/cannery_web/live/pack_live/form_component.html.heex:65 #, elixir-autogen, elixir-format msgid "Container" msgstr "Behälter" @@ -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:332 +#: lib/cannery_web/live/type_live/form_component.html.heex:331 #, 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:136 +#: lib/cannery_web/live/type_live/form_component.html.heex:135 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "VM" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:112 +#: lib/cannery_web/live/type_live/form_component.html.heex:111 #, elixir-autogen, elixir-format msgid "Grains" msgstr "Körner" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:323 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Brandmunition" @@ -191,7 +191,7 @@ msgstr "Für 60 Tage eingeloggt bleiben" #: lib/cannery_web/components/container_table_component.ex:47 #: lib/cannery_web/components/move_pack_component.ex:66 -#: lib/cannery_web/live/container_live/form_component.html.heex:47 +#: lib/cannery_web/live/container_live/form_component.html.heex:46 #, elixir-autogen, elixir-format msgid "Location" msgstr "Standort" @@ -202,14 +202,14 @@ msgstr "Standort" msgid "Location:" msgstr "Standort:" -#: lib/cannery_web/live/container_live/form_component.html.heex:42 +#: lib/cannery_web/live/container_live/form_component.html.heex:41 #, elixir-autogen, elixir-format 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:337 -#: lib/cannery_web/live/type_live/form_component.html.heex:340 +#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: lib/cannery_web/live/type_live/form_component.html.heex:339 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "Hersteller" @@ -293,13 +293,13 @@ msgstr "Bemerkungen" msgid "Notes:" msgstr "Bemerkungen:" -#: lib/cannery_web/live/container_live/form_component.html.heex:51 +#: lib/cannery_web/live/container_live/form_component.html.heex:50 #, elixir-autogen, elixir-format 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:260 #, 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:300 +#: lib/cannery_web/live/type_live/form_component.html.heex:299 #, 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:155 +#: lib/cannery_web/live/type_live/form_component.html.heex:154 #, 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:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:319 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Leuchtspur" @@ -392,7 +392,7 @@ msgstr "Leuchtspur" #: lib/cannery_web/components/container_table_component.ex:48 #: lib/cannery_web/components/move_pack_component.ex:65 #: lib/cannery_web/components/pack_table_component.ex:108 -#: lib/cannery_web/live/container_live/form_component.html.heex:39 +#: lib/cannery_web/live/container_live/form_component.html.heex:38 #: lib/cannery_web/live/pack_live/form_component.html.heex:22 #, elixir-autogen, elixir-format msgid "Type" @@ -435,10 +435,10 @@ msgstr "Schießplatz" msgid "Range day" msgstr "Range Day" -#: lib/cannery_web/components/add_shot_record_component.html.heex:49 +#: lib/cannery_web/components/add_shot_record_component.html.heex:48 #: lib/cannery_web/components/shot_record_table_component.ex:47 #: lib/cannery_web/live/pack_live/show.ex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:41 +#: lib/cannery_web/live/range_live/form_component.html.heex:40 #, elixir-autogen, elixir-format msgid "Date" msgstr "Datum" @@ -510,36 +510,36 @@ msgstr "Schießkladde" msgid "$%{amount}" msgstr "$%{amount}" -#: lib/cannery_web/live/type_live/form_component.html.heex:164 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "Bimetall" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:160 +#: lib/cannery_web/live/type_live/form_component.html.heex:159 #, elixir-autogen, elixir-format 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:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:282 #, 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:248 +#: lib/cannery_web/live/type_live/form_component.html.heex:247 #, 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:240 +#: lib/cannery_web/live/type_live/form_component.html.heex:239 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "Pulverart" -#: lib/cannery_web/live/type_live/form_component.html.heex:347 +#: lib/cannery_web/live/type_live/form_component.html.heex:346 #, elixir-autogen, elixir-format 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:308 +#: lib/cannery_web/live/type_live/form_component.html.heex:307 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Patronenhülsenform" @@ -661,7 +661,7 @@ msgstr "Passwort zurücksetzen" msgid "Record Shots" msgstr "Schüsse dokumentieren" -#: lib/cannery_web/live/pack_live/form_component.html.heex:76 +#: lib/cannery_web/live/pack_live/form_component.html.heex:75 #, elixir-autogen, elixir-format msgid "Copies" msgstr "Kopien" @@ -1148,27 +1148,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:265 +#: lib/cannery_web/live/type_live/form_component.html.heex:264 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:75 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:56 +#: lib/cannery_web/live/type_live/form_component.html.heex:55 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:303 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:312 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1218,13 +1218,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:317 +#: lib/cannery_web/live/type_live/form_component.html.heex:316 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:89 +#: lib/cannery_web/live/type_live/form_component.html.heex:88 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "Messing" @@ -1235,7 +1235,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:96 +#: lib/cannery_web/live/type_live/form_component.html.heex:95 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1245,13 +1245,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:48 +#: lib/cannery_web/live/type_live/form_component.html.heex:47 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:269 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1262,7 +1262,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:67 +#: lib/cannery_web/live/type_live/form_component.html.heex:66 #, elixir-autogen, elixir-format msgid "Gauge" 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:211 +#: lib/cannery_web/live/type_live/form_component.html.heex:210 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1303,17 +1303,17 @@ msgstr "" msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:237 +#: lib/cannery_web/live/type_live/form_component.html.heex:236 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "Pulverart" -#: lib/cannery_web/live/type_live/form_component.html.heex:297 +#: lib/cannery_web/live/type_live/form_component.html.heex:296 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "Zündertyp" -#: lib/cannery_web/live/type_live/form_component.html.heex:109 +#: lib/cannery_web/live/type_live/form_component.html.heex:108 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -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:219 +#: lib/cannery_web/live/type_live/form_component.html.heex:218 #, 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:195 +#: lib/cannery_web/live/type_live/form_component.html.heex:194 #, 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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:203 #, 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:187 +#: lib/cannery_web/live/type_live/form_component.html.heex:186 #, 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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:146 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:190 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1399,13 +1399,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:80 +#: lib/cannery_web/live/type_live/form_component.html.heex:79 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:180 +#: lib/cannery_web/live/type_live/form_component.html.heex:179 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/prompts.po b/priv/gettext/de/LC_MESSAGES/prompts.po index c440701..108f8e6 100644 --- a/priv/gettext/de/LC_MESSAGES/prompts.po +++ b/priv/gettext/de/LC_MESSAGES/prompts.po @@ -128,13 +128,13 @@ msgstr "Passwort erfolgreich geändert." msgid "Please check your email to verify your account" msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto" -#: lib/cannery_web/components/add_shot_record_component.html.heex:59 -#: lib/cannery_web/live/container_live/form_component.html.heex:59 +#: lib/cannery_web/components/add_shot_record_component.html.heex:58 +#: lib/cannery_web/live/container_live/form_component.html.heex:57 #: lib/cannery_web/live/invite_live/form_component.html.heex:37 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 -#: lib/cannery_web/live/range_live/form_component.html.heex:47 +#: lib/cannery_web/live/pack_live/form_component.html.heex:91 +#: lib/cannery_web/live/range_live/form_component.html.heex:46 #: lib/cannery_web/live/tag_live/form_component.html.heex:39 -#: lib/cannery_web/live/type_live/form_component.html.heex:355 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "Speichere..." @@ -219,7 +219,7 @@ msgstr "%{name} erfolgreich entfernt" msgid "You'll need to" msgstr "Sie müssen" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:84 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "Erstellen..." diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 50685ee..68c38ba 100644 --- a/priv/gettext/default.pot +++ b/priv/gettext/default.pot @@ -40,49 +40,49 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:327 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:175 +#: lib/cannery_web/live/type_live/form_component.html.heex:174 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:148 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:121 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:68 +#: lib/cannery_web/live/type_live/form_component.html.heex:67 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:52 +#: lib/cannery_web/live/type_live/form_component.html.heex:51 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:171 +#: lib/cannery_web/live/type_live/form_component.html.heex:170 #, elixir-autogen, elixir-format msgid "Case material" msgstr "" #: lib/cannery_web/components/move_pack_component.ex:64 #: lib/cannery_web/components/pack_table_component.ex:76 -#: lib/cannery_web/live/pack_live/form_component.html.heex:66 +#: lib/cannery_web/live/pack_live/form_component.html.heex:65 #, elixir-autogen, elixir-format msgid "Container" 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:332 +#: lib/cannery_web/live/type_live/form_component.html.heex:331 #, 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:136 +#: lib/cannery_web/live/type_live/form_component.html.heex:135 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:112 +#: lib/cannery_web/live/type_live/form_component.html.heex:111 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:323 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -187,7 +187,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:47 #: lib/cannery_web/components/move_pack_component.ex:66 -#: lib/cannery_web/live/container_live/form_component.html.heex:47 +#: lib/cannery_web/live/container_live/form_component.html.heex:46 #, elixir-autogen, elixir-format msgid "Location" msgstr "" @@ -198,14 +198,14 @@ msgstr "" msgid "Location:" msgstr "" -#: lib/cannery_web/live/container_live/form_component.html.heex:42 +#: lib/cannery_web/live/container_live/form_component.html.heex:41 #, elixir-autogen, elixir-format 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:337 -#: lib/cannery_web/live/type_live/form_component.html.heex:340 +#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: lib/cannery_web/live/type_live/form_component.html.heex:339 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -289,13 +289,13 @@ msgstr "" msgid "Notes:" msgstr "" -#: lib/cannery_web/live/container_live/form_component.html.heex:51 +#: lib/cannery_web/live/container_live/form_component.html.heex:50 #, elixir-autogen, elixir-format msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:260 #, elixir-autogen, elixir-format 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:300 +#: lib/cannery_web/live/type_live/form_component.html.heex:299 #, 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:155 +#: lib/cannery_web/live/type_live/form_component.html.heex:154 #, 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:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:319 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -386,7 +386,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:48 #: lib/cannery_web/components/move_pack_component.ex:65 #: lib/cannery_web/components/pack_table_component.ex:108 -#: lib/cannery_web/live/container_live/form_component.html.heex:39 +#: lib/cannery_web/live/container_live/form_component.html.heex:38 #: lib/cannery_web/live/pack_live/form_component.html.heex:22 #, elixir-autogen, elixir-format msgid "Type" @@ -429,10 +429,10 @@ msgstr "" msgid "Range day" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:49 +#: lib/cannery_web/components/add_shot_record_component.html.heex:48 #: lib/cannery_web/components/shot_record_table_component.ex:47 #: lib/cannery_web/live/pack_live/show.ex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:41 +#: lib/cannery_web/live/range_live/form_component.html.heex:40 #, elixir-autogen, elixir-format msgid "Date" msgstr "" @@ -504,36 +504,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:164 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:160 +#: lib/cannery_web/live/type_live/form_component.html.heex:159 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:282 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:248 +#: lib/cannery_web/live/type_live/form_component.html.heex:247 #, elixir-autogen, elixir-format 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:240 +#: lib/cannery_web/live/type_live/form_component.html.heex:239 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:347 +#: lib/cannery_web/live/type_live/form_component.html.heex:346 #, elixir-autogen, elixir-format 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:308 +#: lib/cannery_web/live/type_live/form_component.html.heex:307 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -655,7 +655,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:76 +#: lib/cannery_web/live/pack_live/form_component.html.heex:75 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -1131,27 +1131,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:265 +#: lib/cannery_web/live/type_live/form_component.html.heex:264 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:75 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:56 +#: lib/cannery_web/live/type_live/form_component.html.heex:55 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:303 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:312 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1201,13 +1201,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:317 +#: lib/cannery_web/live/type_live/form_component.html.heex:316 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:89 +#: lib/cannery_web/live/type_live/form_component.html.heex:88 #, elixir-autogen, elixir-format msgid "Brass height" msgstr "" @@ -1218,7 +1218,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:96 +#: lib/cannery_web/live/type_live/form_component.html.heex:95 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1228,13 +1228,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:48 +#: lib/cannery_web/live/type_live/form_component.html.heex:47 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:269 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1245,7 +1245,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:67 +#: lib/cannery_web/live/type_live/form_component.html.heex:66 #, elixir-autogen, elixir-format msgid "Gauge" 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:211 +#: lib/cannery_web/live/type_live/form_component.html.heex:210 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1286,17 +1286,17 @@ msgstr "" msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:237 +#: lib/cannery_web/live/type_live/form_component.html.heex:236 #, elixir-autogen, elixir-format msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:297 +#: lib/cannery_web/live/type_live/form_component.html.heex:296 #, elixir-autogen, elixir-format msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:109 +#: lib/cannery_web/live/type_live/form_component.html.heex:108 #, elixir-autogen, elixir-format msgid "Projectile" 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:219 +#: lib/cannery_web/live/type_live/form_component.html.heex:218 #, 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:195 +#: lib/cannery_web/live/type_live/form_component.html.heex:194 #, 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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:203 #, 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:187 +#: lib/cannery_web/live/type_live/form_component.html.heex:186 #, 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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:146 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:190 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1382,13 +1382,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:80 +#: lib/cannery_web/live/type_live/form_component.html.heex:79 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:180 +#: lib/cannery_web/live/type_live/form_component.html.heex:179 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/actions.po b/priv/gettext/en/LC_MESSAGES/actions.po index 70bfc44..876f859 100644 --- a/priv/gettext/en/LC_MESSAGES/actions.po +++ b/priv/gettext/en/LC_MESSAGES/actions.po @@ -115,13 +115,13 @@ msgstr "" msgid "Reset password" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:57 -#: lib/cannery_web/live/container_live/form_component.html.heex:57 +#: lib/cannery_web/components/add_shot_record_component.html.heex:56 +#: lib/cannery_web/live/container_live/form_component.html.heex:55 #: lib/cannery_web/live/invite_live/form_component.html.heex:35 -#: lib/cannery_web/live/pack_live/form_component.html.heex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:45 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 +#: lib/cannery_web/live/range_live/form_component.html.heex:44 #: lib/cannery_web/live/tag_live/form_component.html.heex:37 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:353 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -178,7 +178,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:84 +#: lib/cannery_web/live/pack_live/form_component.html.heex:83 #, elixir-autogen, elixir-format, fuzzy msgid "Create" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index c663e1e..a92bd51 100644 --- a/priv/gettext/en/LC_MESSAGES/default.po +++ b/priv/gettext/en/LC_MESSAGES/default.po @@ -40,49 +40,49 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:327 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:175 +#: lib/cannery_web/live/type_live/form_component.html.heex:174 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:148 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:121 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:68 +#: lib/cannery_web/live/type_live/form_component.html.heex:67 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:52 +#: lib/cannery_web/live/type_live/form_component.html.heex:51 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:171 +#: lib/cannery_web/live/type_live/form_component.html.heex:170 #, elixir-autogen, elixir-format msgid "Case material" msgstr "" #: lib/cannery_web/components/move_pack_component.ex:64 #: lib/cannery_web/components/pack_table_component.ex:76 -#: lib/cannery_web/live/pack_live/form_component.html.heex:66 +#: lib/cannery_web/live/pack_live/form_component.html.heex:65 #, elixir-autogen, elixir-format msgid "Container" 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:332 +#: lib/cannery_web/live/type_live/form_component.html.heex:331 #, 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:136 +#: lib/cannery_web/live/type_live/form_component.html.heex:135 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:112 +#: lib/cannery_web/live/type_live/form_component.html.heex:111 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:323 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -187,7 +187,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:47 #: lib/cannery_web/components/move_pack_component.ex:66 -#: lib/cannery_web/live/container_live/form_component.html.heex:47 +#: lib/cannery_web/live/container_live/form_component.html.heex:46 #, elixir-autogen, elixir-format msgid "Location" msgstr "" @@ -198,14 +198,14 @@ msgstr "" msgid "Location:" msgstr "" -#: lib/cannery_web/live/container_live/form_component.html.heex:42 +#: lib/cannery_web/live/container_live/form_component.html.heex:41 #, elixir-autogen, elixir-format 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:337 -#: lib/cannery_web/live/type_live/form_component.html.heex:340 +#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: lib/cannery_web/live/type_live/form_component.html.heex:339 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -289,13 +289,13 @@ msgstr "" msgid "Notes:" msgstr "" -#: lib/cannery_web/live/container_live/form_component.html.heex:51 +#: lib/cannery_web/live/container_live/form_component.html.heex:50 #, elixir-autogen, elixir-format msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:260 #, elixir-autogen, elixir-format 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:300 +#: lib/cannery_web/live/type_live/form_component.html.heex:299 #, 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:155 +#: lib/cannery_web/live/type_live/form_component.html.heex:154 #, 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:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:319 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -386,7 +386,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:48 #: lib/cannery_web/components/move_pack_component.ex:65 #: lib/cannery_web/components/pack_table_component.ex:108 -#: lib/cannery_web/live/container_live/form_component.html.heex:39 +#: lib/cannery_web/live/container_live/form_component.html.heex:38 #: lib/cannery_web/live/pack_live/form_component.html.heex:22 #, elixir-autogen, elixir-format msgid "Type" @@ -429,10 +429,10 @@ msgstr "" msgid "Range day" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:49 +#: lib/cannery_web/components/add_shot_record_component.html.heex:48 #: lib/cannery_web/components/shot_record_table_component.ex:47 #: lib/cannery_web/live/pack_live/show.ex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:41 +#: lib/cannery_web/live/range_live/form_component.html.heex:40 #, elixir-autogen, elixir-format msgid "Date" msgstr "" @@ -504,36 +504,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:164 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:160 +#: lib/cannery_web/live/type_live/form_component.html.heex:159 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:282 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:248 +#: lib/cannery_web/live/type_live/form_component.html.heex:247 #, elixir-autogen, elixir-format 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:240 +#: lib/cannery_web/live/type_live/form_component.html.heex:239 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:347 +#: lib/cannery_web/live/type_live/form_component.html.heex:346 #, elixir-autogen, elixir-format 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:308 +#: lib/cannery_web/live/type_live/form_component.html.heex:307 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -655,7 +655,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:76 +#: lib/cannery_web/live/pack_live/form_component.html.heex:75 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -1131,27 +1131,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:265 +#: lib/cannery_web/live/type_live/form_component.html.heex:264 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:75 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:56 +#: lib/cannery_web/live/type_live/form_component.html.heex:55 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:303 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:312 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1201,13 +1201,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:317 +#: lib/cannery_web/live/type_live/form_component.html.heex:316 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:89 +#: lib/cannery_web/live/type_live/form_component.html.heex:88 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "" @@ -1218,7 +1218,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:96 +#: lib/cannery_web/live/type_live/form_component.html.heex:95 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1228,13 +1228,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:48 +#: lib/cannery_web/live/type_live/form_component.html.heex:47 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:269 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1245,7 +1245,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:67 +#: lib/cannery_web/live/type_live/form_component.html.heex:66 #, elixir-autogen, elixir-format msgid "Gauge" 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:211 +#: lib/cannery_web/live/type_live/form_component.html.heex:210 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1286,17 +1286,17 @@ msgstr "" msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:237 +#: lib/cannery_web/live/type_live/form_component.html.heex:236 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:297 +#: lib/cannery_web/live/type_live/form_component.html.heex:296 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:109 +#: lib/cannery_web/live/type_live/form_component.html.heex:108 #, elixir-autogen, elixir-format msgid "Projectile" 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:219 +#: lib/cannery_web/live/type_live/form_component.html.heex:218 #, 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:195 +#: lib/cannery_web/live/type_live/form_component.html.heex:194 #, 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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:203 #, 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:187 +#: lib/cannery_web/live/type_live/form_component.html.heex:186 #, 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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:146 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:190 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1382,13 +1382,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:80 +#: lib/cannery_web/live/type_live/form_component.html.heex:79 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:180 +#: lib/cannery_web/live/type_live/form_component.html.heex:179 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/prompts.po b/priv/gettext/en/LC_MESSAGES/prompts.po index f21f06e..261142d 100644 --- a/priv/gettext/en/LC_MESSAGES/prompts.po +++ b/priv/gettext/en/LC_MESSAGES/prompts.po @@ -109,13 +109,13 @@ msgstr "" msgid "Please check your email to verify your account" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:59 -#: lib/cannery_web/live/container_live/form_component.html.heex:59 +#: lib/cannery_web/components/add_shot_record_component.html.heex:58 +#: lib/cannery_web/live/container_live/form_component.html.heex:57 #: lib/cannery_web/live/invite_live/form_component.html.heex:37 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 -#: lib/cannery_web/live/range_live/form_component.html.heex:47 +#: lib/cannery_web/live/pack_live/form_component.html.heex:91 +#: lib/cannery_web/live/range_live/form_component.html.heex:46 #: lib/cannery_web/live/tag_live/form_component.html.heex:39 -#: lib/cannery_web/live/type_live/form_component.html.heex:355 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:84 #, elixir-autogen, elixir-format, fuzzy msgid "Creating..." msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/actions.po b/priv/gettext/es/LC_MESSAGES/actions.po index 68d2db7..c5a1537 100644 --- a/priv/gettext/es/LC_MESSAGES/actions.po +++ b/priv/gettext/es/LC_MESSAGES/actions.po @@ -128,13 +128,13 @@ msgstr "Reenviar instrucciones de confirmación" msgid "Reset password" msgstr "Resetear contraseña" -#: lib/cannery_web/components/add_shot_record_component.html.heex:57 -#: lib/cannery_web/live/container_live/form_component.html.heex:57 +#: lib/cannery_web/components/add_shot_record_component.html.heex:56 +#: lib/cannery_web/live/container_live/form_component.html.heex:55 #: lib/cannery_web/live/invite_live/form_component.html.heex:35 -#: lib/cannery_web/live/pack_live/form_component.html.heex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:45 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 +#: lib/cannery_web/live/range_live/form_component.html.heex:44 #: lib/cannery_web/live/tag_live/form_component.html.heex:37 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:353 #, elixir-autogen, elixir-format msgid "Save" msgstr "Guardar" @@ -191,7 +191,7 @@ msgstr "Copiar al portapapeles" msgid "add a container first" msgstr "añade primero un contenedor" -#: lib/cannery_web/live/pack_live/form_component.html.heex:84 +#: lib/cannery_web/live/pack_live/form_component.html.heex:83 #, elixir-autogen, elixir-format msgid "Create" msgstr "Crear" diff --git a/priv/gettext/es/LC_MESSAGES/default.po b/priv/gettext/es/LC_MESSAGES/default.po index 0e1a311..970dbf1 100644 --- a/priv/gettext/es/LC_MESSAGES/default.po +++ b/priv/gettext/es/LC_MESSAGES/default.po @@ -44,49 +44,49 @@ 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:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:327 #, elixir-autogen, elixir-format msgid "Blank" msgstr "Fogueo" -#: lib/cannery_web/live/type_live/form_component.html.heex:175 +#: lib/cannery_web/live/type_live/form_component.html.heex:174 #, elixir-autogen, elixir-format msgid "Brass" msgstr "Latón" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:148 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:121 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Tipo de bala" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:68 +#: lib/cannery_web/live/type_live/form_component.html.heex:67 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "Calibre" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:52 +#: lib/cannery_web/live/type_live/form_component.html.heex:51 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "Cartucho" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:171 +#: lib/cannery_web/live/type_live/form_component.html.heex:170 #, elixir-autogen, elixir-format msgid "Case material" msgstr "Material del casquillo" #: lib/cannery_web/components/move_pack_component.ex:64 #: lib/cannery_web/components/pack_table_component.ex:76 -#: lib/cannery_web/live/pack_live/form_component.html.heex:66 +#: lib/cannery_web/live/pack_live/form_component.html.heex:65 #, elixir-autogen, elixir-format msgid "Container" msgstr "Contenedor" @@ -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:332 +#: lib/cannery_web/live/type_live/form_component.html.heex:331 #, 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:136 +#: lib/cannery_web/live/type_live/form_component.html.heex:135 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "Bala encamisada" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:112 +#: lib/cannery_web/live/type_live/form_component.html.heex:111 #, elixir-autogen, elixir-format msgid "Grains" msgstr "Grano" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:323 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Incendiaria" @@ -191,7 +191,7 @@ msgstr "Mantener registrado durante 60 días" #: lib/cannery_web/components/container_table_component.ex:47 #: lib/cannery_web/components/move_pack_component.ex:66 -#: lib/cannery_web/live/container_live/form_component.html.heex:47 +#: lib/cannery_web/live/container_live/form_component.html.heex:46 #, elixir-autogen, elixir-format msgid "Location" msgstr "Localización" @@ -202,14 +202,14 @@ msgstr "Localización" msgid "Location:" msgstr "Localización:" -#: lib/cannery_web/live/container_live/form_component.html.heex:42 +#: lib/cannery_web/live/container_live/form_component.html.heex:41 #, elixir-autogen, elixir-format 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:337 -#: lib/cannery_web/live/type_live/form_component.html.heex:340 +#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: lib/cannery_web/live/type_live/form_component.html.heex:339 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "Fabricante" @@ -293,13 +293,13 @@ msgstr "Notas" msgid "Notes:" msgstr "Notas:" -#: lib/cannery_web/live/container_live/form_component.html.heex:51 +#: lib/cannery_web/live/container_live/form_component.html.heex:50 #, elixir-autogen, elixir-format 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:260 #, 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:300 +#: lib/cannery_web/live/type_live/form_component.html.heex:299 #, 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:155 +#: lib/cannery_web/live/type_live/form_component.html.heex:154 #, 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:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:319 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Trazadora" @@ -393,7 +393,7 @@ msgstr "Trazadora" #: lib/cannery_web/components/container_table_component.ex:48 #: lib/cannery_web/components/move_pack_component.ex:65 #: lib/cannery_web/components/pack_table_component.ex:108 -#: lib/cannery_web/live/container_live/form_component.html.heex:39 +#: lib/cannery_web/live/container_live/form_component.html.heex:38 #: lib/cannery_web/live/pack_live/form_component.html.heex:22 #, elixir-autogen, elixir-format msgid "Type" @@ -436,10 +436,10 @@ msgstr "Campo de tiro" msgid "Range day" msgstr "Día de disparar" -#: lib/cannery_web/components/add_shot_record_component.html.heex:49 +#: lib/cannery_web/components/add_shot_record_component.html.heex:48 #: lib/cannery_web/components/shot_record_table_component.ex:47 #: lib/cannery_web/live/pack_live/show.ex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:41 +#: lib/cannery_web/live/range_live/form_component.html.heex:40 #, elixir-autogen, elixir-format msgid "Date" msgstr "Fecha" @@ -511,36 +511,36 @@ msgstr "Registro de tiros" msgid "$%{amount}" msgstr "$%{amount}" -#: lib/cannery_web/live/type_live/form_component.html.heex:164 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "Bimetal" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:160 +#: lib/cannery_web/live/type_live/form_component.html.heex:159 #, elixir-autogen, elixir-format 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:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:282 #, 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:248 +#: lib/cannery_web/live/type_live/form_component.html.heex:247 #, 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:240 +#: lib/cannery_web/live/type_live/form_component.html.heex:239 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "Tipo de polvora" -#: lib/cannery_web/live/type_live/form_component.html.heex:347 +#: lib/cannery_web/live/type_live/form_component.html.heex:346 #, elixir-autogen, elixir-format 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:308 +#: lib/cannery_web/live/type_live/form_component.html.heex:307 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Tipo de fuego" @@ -662,7 +662,7 @@ msgstr "Reestablecer contraseña" msgid "Record Shots" msgstr "Tiros Récord" -#: lib/cannery_web/live/pack_live/form_component.html.heex:76 +#: lib/cannery_web/live/pack_live/form_component.html.heex:75 #, elixir-autogen, elixir-format msgid "Copies" msgstr "Copias" @@ -1150,27 +1150,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:265 +#: lib/cannery_web/live/type_live/form_component.html.heex:264 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:75 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:56 +#: lib/cannery_web/live/type_live/form_component.html.heex:55 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:303 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:312 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1220,13 +1220,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:317 +#: lib/cannery_web/live/type_live/form_component.html.heex:316 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:89 +#: lib/cannery_web/live/type_live/form_component.html.heex:88 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "Latón" @@ -1237,7 +1237,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:96 +#: lib/cannery_web/live/type_live/form_component.html.heex:95 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1247,13 +1247,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:48 +#: lib/cannery_web/live/type_live/form_component.html.heex:47 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:269 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1264,7 +1264,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:67 +#: lib/cannery_web/live/type_live/form_component.html.heex:66 #, elixir-autogen, elixir-format msgid "Gauge" 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:211 +#: lib/cannery_web/live/type_live/form_component.html.heex:210 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1305,17 +1305,17 @@ msgstr "" msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:237 +#: lib/cannery_web/live/type_live/form_component.html.heex:236 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "Tipo de polvora" -#: lib/cannery_web/live/type_live/form_component.html.heex:297 +#: lib/cannery_web/live/type_live/form_component.html.heex:296 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "Tipo de espoleta" -#: lib/cannery_web/live/type_live/form_component.html.heex:109 +#: lib/cannery_web/live/type_live/form_component.html.heex:108 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -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:219 +#: lib/cannery_web/live/type_live/form_component.html.heex:218 #, 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:195 +#: lib/cannery_web/live/type_live/form_component.html.heex:194 #, 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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:203 #, 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:187 +#: lib/cannery_web/live/type_live/form_component.html.heex:186 #, 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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:146 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:190 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1401,13 +1401,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:80 +#: lib/cannery_web/live/type_live/form_component.html.heex:79 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:180 +#: lib/cannery_web/live/type_live/form_component.html.heex:179 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/prompts.po b/priv/gettext/es/LC_MESSAGES/prompts.po index 34bbb9e..fe15211 100644 --- a/priv/gettext/es/LC_MESSAGES/prompts.po +++ b/priv/gettext/es/LC_MESSAGES/prompts.po @@ -128,13 +128,13 @@ msgstr "Contraseña cambiada exitosamente." msgid "Please check your email to verify your account" msgstr "Por favor chequea el correo para verificar tu cuenta" -#: lib/cannery_web/components/add_shot_record_component.html.heex:59 -#: lib/cannery_web/live/container_live/form_component.html.heex:59 +#: lib/cannery_web/components/add_shot_record_component.html.heex:58 +#: lib/cannery_web/live/container_live/form_component.html.heex:57 #: lib/cannery_web/live/invite_live/form_component.html.heex:37 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 -#: lib/cannery_web/live/range_live/form_component.html.heex:47 +#: lib/cannery_web/live/pack_live/form_component.html.heex:91 +#: lib/cannery_web/live/range_live/form_component.html.heex:46 #: lib/cannery_web/live/tag_live/form_component.html.heex:39 -#: lib/cannery_web/live/type_live/form_component.html.heex:355 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "Guardando..." @@ -218,7 +218,7 @@ msgstr "%{name} eliminado exitosamente" msgid "You'll need to" msgstr "Necesitará hacerlo" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:84 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "Creando..." diff --git a/priv/gettext/fr/LC_MESSAGES/actions.po b/priv/gettext/fr/LC_MESSAGES/actions.po index 604a1ce..f56940a 100644 --- a/priv/gettext/fr/LC_MESSAGES/actions.po +++ b/priv/gettext/fr/LC_MESSAGES/actions.po @@ -128,13 +128,13 @@ msgstr "Renvoyer les instructions de confirmation" msgid "Reset password" msgstr "Réinitialisé le mot de passe" -#: lib/cannery_web/components/add_shot_record_component.html.heex:57 -#: lib/cannery_web/live/container_live/form_component.html.heex:57 +#: lib/cannery_web/components/add_shot_record_component.html.heex:56 +#: lib/cannery_web/live/container_live/form_component.html.heex:55 #: lib/cannery_web/live/invite_live/form_component.html.heex:35 -#: lib/cannery_web/live/pack_live/form_component.html.heex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:45 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 +#: lib/cannery_web/live/range_live/form_component.html.heex:44 #: lib/cannery_web/live/tag_live/form_component.html.heex:37 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:353 #, elixir-autogen, elixir-format msgid "Save" msgstr "Sauvegarder" @@ -191,7 +191,7 @@ msgstr "Copier dans le presse-papier" msgid "add a container first" msgstr "ajouter un conteneur en premier" -#: lib/cannery_web/live/pack_live/form_component.html.heex:84 +#: lib/cannery_web/live/pack_live/form_component.html.heex:83 #, elixir-autogen, elixir-format msgid "Create" msgstr "Créer" diff --git a/priv/gettext/fr/LC_MESSAGES/default.po b/priv/gettext/fr/LC_MESSAGES/default.po index 6c88908..acf671e 100644 --- a/priv/gettext/fr/LC_MESSAGES/default.po +++ b/priv/gettext/fr/LC_MESSAGES/default.po @@ -44,49 +44,49 @@ 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:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:327 #, elixir-autogen, elixir-format msgid "Blank" msgstr "Vide" -#: lib/cannery_web/live/type_live/form_component.html.heex:175 +#: lib/cannery_web/live/type_live/form_component.html.heex:174 #, elixir-autogen, elixir-format msgid "Brass" msgstr "Cuivre" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:148 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format 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:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:121 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Type de balle" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:68 +#: lib/cannery_web/live/type_live/form_component.html.heex:67 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "Calibre" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:52 +#: lib/cannery_web/live/type_live/form_component.html.heex:51 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "Cartouche" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:171 +#: lib/cannery_web/live/type_live/form_component.html.heex:170 #, elixir-autogen, elixir-format msgid "Case material" msgstr "Matériau de la caisse" #: lib/cannery_web/components/move_pack_component.ex:64 #: lib/cannery_web/components/pack_table_component.ex:76 -#: lib/cannery_web/live/pack_live/form_component.html.heex:66 +#: lib/cannery_web/live/pack_live/form_component.html.heex:65 #, elixir-autogen, elixir-format msgid "Container" msgstr "Conteneur" @@ -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:332 +#: lib/cannery_web/live/type_live/form_component.html.heex:331 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Corrosive" @@ -145,19 +145,19 @@ msgstr "Modifier l’invitation" msgid "Edit Tag" msgstr "Modifier le tag" -#: lib/cannery_web/live/type_live/form_component.html.heex:136 +#: lib/cannery_web/live/type_live/form_component.html.heex:135 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "FMJ" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:112 +#: lib/cannery_web/live/type_live/form_component.html.heex:111 #, elixir-autogen, elixir-format msgid "Grains" msgstr "Graines" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:323 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Incendiaire" @@ -191,7 +191,7 @@ msgstr "Me garder authentifié durant 60 jours" #: lib/cannery_web/components/container_table_component.ex:47 #: lib/cannery_web/components/move_pack_component.ex:66 -#: lib/cannery_web/live/container_live/form_component.html.heex:47 +#: lib/cannery_web/live/container_live/form_component.html.heex:46 #, elixir-autogen, elixir-format msgid "Location" msgstr "Localisation" @@ -202,14 +202,14 @@ msgstr "Localisation" msgid "Location:" msgstr "Localisation :" -#: lib/cannery_web/live/container_live/form_component.html.heex:42 +#: lib/cannery_web/live/container_live/form_component.html.heex:41 #, elixir-autogen, elixir-format 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:337 -#: lib/cannery_web/live/type_live/form_component.html.heex:340 +#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: lib/cannery_web/live/type_live/form_component.html.heex:339 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "Fabricant" @@ -293,13 +293,13 @@ msgstr "Notes" msgid "Notes:" msgstr "Notes :" -#: lib/cannery_web/live/container_live/form_component.html.heex:51 +#: lib/cannery_web/live/container_live/form_component.html.heex:50 #, elixir-autogen, elixir-format 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:260 #, 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:300 +#: lib/cannery_web/live/type_live/form_component.html.heex:299 #, 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:155 +#: lib/cannery_web/live/type_live/form_component.html.heex:154 #, 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:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:319 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Traceuse" @@ -394,7 +394,7 @@ msgstr "Traceuse" #: lib/cannery_web/components/container_table_component.ex:48 #: lib/cannery_web/components/move_pack_component.ex:65 #: lib/cannery_web/components/pack_table_component.ex:108 -#: lib/cannery_web/live/container_live/form_component.html.heex:39 +#: lib/cannery_web/live/container_live/form_component.html.heex:38 #: lib/cannery_web/live/pack_live/form_component.html.heex:22 #, elixir-autogen, elixir-format msgid "Type" @@ -437,10 +437,10 @@ msgstr "Portée" msgid "Range day" msgstr "Journée de stand" -#: lib/cannery_web/components/add_shot_record_component.html.heex:49 +#: lib/cannery_web/components/add_shot_record_component.html.heex:48 #: lib/cannery_web/components/shot_record_table_component.ex:47 #: lib/cannery_web/live/pack_live/show.ex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:41 +#: lib/cannery_web/live/range_live/form_component.html.heex:40 #, elixir-autogen, elixir-format msgid "Date" msgstr "Date" @@ -512,36 +512,36 @@ msgstr "Évènements de tir" msgid "$%{amount}" msgstr "%{amount} $" -#: lib/cannery_web/live/type_live/form_component.html.heex:164 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format 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:160 +#: lib/cannery_web/live/type_live/form_component.html.heex:159 #, 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:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:282 #, 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:248 +#: lib/cannery_web/live/type_live/form_component.html.heex:247 #, 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:240 +#: lib/cannery_web/live/type_live/form_component.html.heex:239 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "Type de poudre" -#: lib/cannery_web/live/type_live/form_component.html.heex:347 +#: lib/cannery_web/live/type_live/form_component.html.heex:346 #, elixir-autogen, elixir-format 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:308 +#: lib/cannery_web/live/type_live/form_component.html.heex:307 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Type d’allumage" @@ -663,7 +663,7 @@ msgstr "Réinitialiser votre mot de passe" msgid "Record Shots" msgstr "Enregistrer des tirs" -#: lib/cannery_web/live/pack_live/form_component.html.heex:76 +#: lib/cannery_web/live/pack_live/form_component.html.heex:75 #, elixir-autogen, elixir-format msgid "Copies" msgstr "Exemplaires" @@ -1151,27 +1151,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:265 +#: lib/cannery_web/live/type_live/form_component.html.heex:264 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:75 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:56 +#: lib/cannery_web/live/type_live/form_component.html.heex:55 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:303 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:312 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1221,13 +1221,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:317 +#: lib/cannery_web/live/type_live/form_component.html.heex:316 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:89 +#: lib/cannery_web/live/type_live/form_component.html.heex:88 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "Cuivre" @@ -1238,7 +1238,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:96 +#: lib/cannery_web/live/type_live/form_component.html.heex:95 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1248,13 +1248,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:48 +#: lib/cannery_web/live/type_live/form_component.html.heex:47 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:269 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1265,7 +1265,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:67 +#: lib/cannery_web/live/type_live/form_component.html.heex:66 #, elixir-autogen, elixir-format msgid "Gauge" 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:211 +#: lib/cannery_web/live/type_live/form_component.html.heex:210 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1306,17 +1306,17 @@ msgstr "" msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:237 +#: lib/cannery_web/live/type_live/form_component.html.heex:236 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "Type de poudre" -#: lib/cannery_web/live/type_live/form_component.html.heex:297 +#: lib/cannery_web/live/type_live/form_component.html.heex:296 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "Type d’amorce" -#: lib/cannery_web/live/type_live/form_component.html.heex:109 +#: lib/cannery_web/live/type_live/form_component.html.heex:108 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -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:219 +#: lib/cannery_web/live/type_live/form_component.html.heex:218 #, 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:195 +#: lib/cannery_web/live/type_live/form_component.html.heex:194 #, 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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:203 #, 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:187 +#: lib/cannery_web/live/type_live/form_component.html.heex:186 #, 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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:146 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:190 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1402,13 +1402,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:80 +#: lib/cannery_web/live/type_live/form_component.html.heex:79 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:180 +#: lib/cannery_web/live/type_live/form_component.html.heex:179 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/fr/LC_MESSAGES/prompts.po b/priv/gettext/fr/LC_MESSAGES/prompts.po index 2da53ce..2ca6891 100644 --- a/priv/gettext/fr/LC_MESSAGES/prompts.po +++ b/priv/gettext/fr/LC_MESSAGES/prompts.po @@ -129,13 +129,13 @@ msgstr "Mot de passe mis à jour avec succès." msgid "Please check your email to verify your account" msgstr "Veuillez vérifier votre mél pour confirmer votre compte" -#: lib/cannery_web/components/add_shot_record_component.html.heex:59 -#: lib/cannery_web/live/container_live/form_component.html.heex:59 +#: lib/cannery_web/components/add_shot_record_component.html.heex:58 +#: lib/cannery_web/live/container_live/form_component.html.heex:57 #: lib/cannery_web/live/invite_live/form_component.html.heex:37 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 -#: lib/cannery_web/live/range_live/form_component.html.heex:47 +#: lib/cannery_web/live/pack_live/form_component.html.heex:91 +#: lib/cannery_web/live/range_live/form_component.html.heex:46 #: lib/cannery_web/live/tag_live/form_component.html.heex:39 -#: lib/cannery_web/live/type_live/form_component.html.heex:355 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "Sauvegarde en cours…" @@ -220,7 +220,7 @@ msgstr "%{name} retiré avec succès" msgid "You'll need to" msgstr "Vous aurez besoin de" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:84 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "Création en cours…" diff --git a/priv/gettext/ga/LC_MESSAGES/actions.po b/priv/gettext/ga/LC_MESSAGES/actions.po index f1a5c83..9ca0eb3 100644 --- a/priv/gettext/ga/LC_MESSAGES/actions.po +++ b/priv/gettext/ga/LC_MESSAGES/actions.po @@ -126,13 +126,13 @@ msgstr "" msgid "Reset password" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:57 -#: lib/cannery_web/live/container_live/form_component.html.heex:57 +#: lib/cannery_web/components/add_shot_record_component.html.heex:56 +#: lib/cannery_web/live/container_live/form_component.html.heex:55 #: lib/cannery_web/live/invite_live/form_component.html.heex:35 -#: lib/cannery_web/live/pack_live/form_component.html.heex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:45 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 +#: lib/cannery_web/live/range_live/form_component.html.heex:44 #: lib/cannery_web/live/tag_live/form_component.html.heex:37 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:353 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -189,7 +189,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:84 +#: lib/cannery_web/live/pack_live/form_component.html.heex:83 #, elixir-autogen, elixir-format msgid "Create" msgstr "" diff --git a/priv/gettext/ga/LC_MESSAGES/default.po b/priv/gettext/ga/LC_MESSAGES/default.po index 0b83c28..1640266 100644 --- a/priv/gettext/ga/LC_MESSAGES/default.po +++ b/priv/gettext/ga/LC_MESSAGES/default.po @@ -42,49 +42,49 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:328 +#: lib/cannery_web/live/type_live/form_component.html.heex:327 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:175 +#: lib/cannery_web/live/type_live/form_component.html.heex:174 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:148 +#: lib/cannery_web/live/type_live/form_component.html.heex:147 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:121 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:68 +#: lib/cannery_web/live/type_live/form_component.html.heex:67 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:52 +#: lib/cannery_web/live/type_live/form_component.html.heex:51 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:171 +#: lib/cannery_web/live/type_live/form_component.html.heex:170 #, elixir-autogen, elixir-format msgid "Case material" msgstr "" #: lib/cannery_web/components/move_pack_component.ex:64 #: lib/cannery_web/components/pack_table_component.ex:76 -#: lib/cannery_web/live/pack_live/form_component.html.heex:66 +#: lib/cannery_web/live/pack_live/form_component.html.heex:65 #, elixir-autogen, elixir-format msgid "Container" 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:332 +#: lib/cannery_web/live/type_live/form_component.html.heex:331 #, 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:136 +#: lib/cannery_web/live/type_live/form_component.html.heex:135 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:112 +#: lib/cannery_web/live/type_live/form_component.html.heex:111 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:323 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -189,7 +189,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:47 #: lib/cannery_web/components/move_pack_component.ex:66 -#: lib/cannery_web/live/container_live/form_component.html.heex:47 +#: lib/cannery_web/live/container_live/form_component.html.heex:46 #, elixir-autogen, elixir-format msgid "Location" msgstr "" @@ -200,14 +200,14 @@ msgstr "" msgid "Location:" msgstr "" -#: lib/cannery_web/live/container_live/form_component.html.heex:42 +#: lib/cannery_web/live/container_live/form_component.html.heex:41 #, elixir-autogen, elixir-format 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:337 -#: lib/cannery_web/live/type_live/form_component.html.heex:340 +#: lib/cannery_web/live/type_live/form_component.html.heex:336 +#: lib/cannery_web/live/type_live/form_component.html.heex:339 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -291,13 +291,13 @@ msgstr "" msgid "Notes:" msgstr "" -#: lib/cannery_web/live/container_live/form_component.html.heex:51 +#: lib/cannery_web/live/container_live/form_component.html.heex:50 #, elixir-autogen, elixir-format msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:260 #, elixir-autogen, elixir-format 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:300 +#: lib/cannery_web/live/type_live/form_component.html.heex:299 #, 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:155 +#: lib/cannery_web/live/type_live/form_component.html.heex:154 #, 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:320 +#: lib/cannery_web/live/type_live/form_component.html.heex:319 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -388,7 +388,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:48 #: lib/cannery_web/components/move_pack_component.ex:65 #: lib/cannery_web/components/pack_table_component.ex:108 -#: lib/cannery_web/live/container_live/form_component.html.heex:39 +#: lib/cannery_web/live/container_live/form_component.html.heex:38 #: lib/cannery_web/live/pack_live/form_component.html.heex:22 #, elixir-autogen, elixir-format msgid "Type" @@ -431,10 +431,10 @@ msgstr "" msgid "Range day" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:49 +#: lib/cannery_web/components/add_shot_record_component.html.heex:48 #: lib/cannery_web/components/shot_record_table_component.ex:47 #: lib/cannery_web/live/pack_live/show.ex:91 -#: lib/cannery_web/live/range_live/form_component.html.heex:41 +#: lib/cannery_web/live/range_live/form_component.html.heex:40 #, elixir-autogen, elixir-format msgid "Date" msgstr "" @@ -506,36 +506,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:164 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:160 +#: lib/cannery_web/live/type_live/form_component.html.heex:159 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:282 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:248 +#: lib/cannery_web/live/type_live/form_component.html.heex:247 #, elixir-autogen, elixir-format 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:240 +#: lib/cannery_web/live/type_live/form_component.html.heex:239 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:347 +#: lib/cannery_web/live/type_live/form_component.html.heex:346 #, elixir-autogen, elixir-format 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:308 +#: lib/cannery_web/live/type_live/form_component.html.heex:307 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:76 +#: lib/cannery_web/live/pack_live/form_component.html.heex:75 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -1142,27 +1142,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:265 +#: lib/cannery_web/live/type_live/form_component.html.heex:264 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:75 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:56 +#: lib/cannery_web/live/type_live/form_component.html.heex:55 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:304 +#: lib/cannery_web/live/type_live/form_component.html.heex:303 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:312 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1212,13 +1212,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:317 +#: lib/cannery_web/live/type_live/form_component.html.heex:316 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:89 +#: lib/cannery_web/live/type_live/form_component.html.heex:88 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "" @@ -1229,7 +1229,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:96 +#: lib/cannery_web/live/type_live/form_component.html.heex:95 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1239,13 +1239,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:48 +#: lib/cannery_web/live/type_live/form_component.html.heex:47 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:269 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1256,7 +1256,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:67 +#: lib/cannery_web/live/type_live/form_component.html.heex:66 #, elixir-autogen, elixir-format msgid "Gauge" 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:211 +#: lib/cannery_web/live/type_live/form_component.html.heex:210 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1297,17 +1297,17 @@ msgstr "" msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:237 +#: lib/cannery_web/live/type_live/form_component.html.heex:236 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:297 +#: lib/cannery_web/live/type_live/form_component.html.heex:296 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:109 +#: lib/cannery_web/live/type_live/form_component.html.heex:108 #, elixir-autogen, elixir-format msgid "Projectile" 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:219 +#: lib/cannery_web/live/type_live/form_component.html.heex:218 #, 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:195 +#: lib/cannery_web/live/type_live/form_component.html.heex:194 #, 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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:203 #, 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:187 +#: lib/cannery_web/live/type_live/form_component.html.heex:186 #, 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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:146 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:190 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1393,13 +1393,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:80 +#: lib/cannery_web/live/type_live/form_component.html.heex:79 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:180 +#: lib/cannery_web/live/type_live/form_component.html.heex:179 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" diff --git a/priv/gettext/ga/LC_MESSAGES/prompts.po b/priv/gettext/ga/LC_MESSAGES/prompts.po index 04eb6ea..8626fee 100644 --- a/priv/gettext/ga/LC_MESSAGES/prompts.po +++ b/priv/gettext/ga/LC_MESSAGES/prompts.po @@ -120,13 +120,13 @@ msgstr "" msgid "Please check your email to verify your account" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:59 -#: lib/cannery_web/live/container_live/form_component.html.heex:59 +#: lib/cannery_web/components/add_shot_record_component.html.heex:58 +#: lib/cannery_web/live/container_live/form_component.html.heex:57 #: lib/cannery_web/live/invite_live/form_component.html.heex:37 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 -#: lib/cannery_web/live/range_live/form_component.html.heex:47 +#: lib/cannery_web/live/pack_live/form_component.html.heex:91 +#: lib/cannery_web/live/range_live/form_component.html.heex:46 #: lib/cannery_web/live/tag_live/form_component.html.heex:39 -#: lib/cannery_web/live/type_live/form_component.html.heex:355 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -209,7 +209,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:84 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "" diff --git a/priv/gettext/prompts.pot b/priv/gettext/prompts.pot index a7a304a..74fe889 100644 --- a/priv/gettext/prompts.pot +++ b/priv/gettext/prompts.pot @@ -109,13 +109,13 @@ msgstr "" msgid "Please check your email to verify your account" msgstr "" -#: lib/cannery_web/components/add_shot_record_component.html.heex:59 -#: lib/cannery_web/live/container_live/form_component.html.heex:59 +#: lib/cannery_web/components/add_shot_record_component.html.heex:58 +#: lib/cannery_web/live/container_live/form_component.html.heex:57 #: lib/cannery_web/live/invite_live/form_component.html.heex:37 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 -#: lib/cannery_web/live/range_live/form_component.html.heex:47 +#: lib/cannery_web/live/pack_live/form_component.html.heex:91 +#: lib/cannery_web/live/range_live/form_component.html.heex:46 #: lib/cannery_web/live/tag_live/form_component.html.heex:39 -#: lib/cannery_web/live/type_live/form_component.html.heex:355 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:84 #, elixir-autogen, elixir-format msgid "Creating..." msgstr ""