diff --git a/CHANGELOG.md b/CHANGELOG.md index 38ce0da8..be4e1b4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # v0.9.12 +- Add SlimSelect to select elements with user content - Fix registration page not offering all translations - Update deps diff --git a/assets/css/app.scss b/assets/css/app.scss index 8de2fc71..df118263 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -8,6 +8,8 @@ $fa-font-path: "@fortawesome/fontawesome-free/webfonts"; @import "@fortawesome/fontawesome-free/scss/solid"; @import "@fortawesome/fontawesome-free/scss/brands"; +@import "slim-select/styles"; + @import "components"; /* fix firefox scrollbars */ @@ -152,3 +154,57 @@ $fa-font-path: "@fortawesome/fontawesome-free/webfonts"; 0% { opacity: 1; } 100% { opacity: 0; } } + +.ss-main { + @apply input; +} + +.ss-main.input-primary { + @apply border-primary-500 hover:border-primary-600 active:border-primary-600; +} + +.ss-content { + @apply input; +} + +.ss-content.input-primary { + @apply border-primary-500 hover:border-primary-600 active:border-primary-600; +} + +.ss-content.ss-open-above { + border-bottom-left-radius: 0px; + border-bottom-right-radius: 0px; +} + +.ss-content.ss-open-below { + border-top-left-radius: 0px; + border-top-right-radius: 0px; +} + +.ss-search input[type="search"] { + @apply input; +} + +.ss-content.input-primary .ss-search input[type="search"] { + @apply border-primary-500 hover:border-primary-600 active:border-primary-600; +} + +.ss-content.ss-open-above .ss-search { + padding: var(--ss-spacing-l) 0 0 0; +} + +.ss-content.ss-open-below .ss-search { + padding: 0 0 var(--ss-spacing-l) 0; +} + +.ss-content.ss-open-above .ss-list > *:not(:first-child) { + margin: var(--ss-spacing-l) 0 0 0; +} + +.ss-content.ss-open-below .ss-list > *:not(:last-child) { + margin: 0 0 var(--ss-spacing-l) 0; +} + +.ss-content .ss-list .ss-option { + border-radius: var(--ss-border-radius); +} diff --git a/assets/js/app.js b/assets/js/app.js index dbdc58d1..436cbc8e 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -24,15 +24,16 @@ import 'phoenix_html' // Establish Phoenix Socket and LiveView configuration. import { Socket } from 'phoenix' import { LiveSocket } from 'phoenix_live_view' -import topbar from 'topbar' -import ShotLogChart from './shot_log_chart' import Date from './date' import DateTime from './datetime' +import ShotLogChart from './shot_log_chart' +import SlimSelect from './slim_select' +import topbar from 'topbar' const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content') const liveSocket = new LiveSocket('/live', Socket, { params: { _csrf_token: csrfToken }, - hooks: { Date, DateTime, ShotLogChart } + hooks: { Date, DateTime, ShotLogChart, SlimSelect } }) // Show progress bar on live navigation and form submits diff --git a/assets/js/slim_select.js b/assets/js/slim_select.js new file mode 100644 index 00000000..a0be46a3 --- /dev/null +++ b/assets/js/slim_select.js @@ -0,0 +1,23 @@ +import SlimSelect from 'slim-select' + +export default { + initalizeSlimSelect (el) { + // eslint-disable-next-line no-new + el.slimselect = new SlimSelect({ select: el }) + + const main = document.querySelector(`.ss-main[data-id="${el.dataset.id}"]`) + main.setAttribute('id', `${el.dataset.id}-main`) + main.setAttribute('phx-update', 'ignore') + + const content = document.querySelector(`.ss-content[data-id="${el.dataset.id}"]`) + content.setAttribute('id', `${el.dataset.id}-content`) + content.setAttribute('phx-update', 'ignore') + }, + updated () { + this.el.slimselect?.destroy() + this.initalizeSlimSelect(this.el) + }, + mounted () { + this.initalizeSlimSelect(this.el) + } +} diff --git a/assets/package-lock.json b/assets/package-lock.json index 20859b54..17be7db1 100644 --- a/assets/package-lock.json +++ b/assets/package-lock.json @@ -13,6 +13,7 @@ "phoenix": "file:../deps/phoenix", "phoenix_html": "file:../deps/phoenix_html", "phoenix_live_view": "file:../deps/phoenix_live_view", + "slim-select": "^2.9.2", "topbar": "^3.0.0" }, "devDependencies": { @@ -12197,6 +12198,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/slim-select": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/slim-select/-/slim-select-2.9.2.tgz", + "integrity": "sha512-3Kxgj7Nk7sHHEu8Xzq70pkNNNdKmOr3OwKOjqSzcGeJ9j2hCOxIvIdYcAqKUM1eRnl+3ycKKK/YrzsjxrxAoZg==", + "license": "MIT" + }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", diff --git a/assets/package.json b/assets/package.json index 878313eb..c2b88427 100644 --- a/assets/package.json +++ b/assets/package.json @@ -20,6 +20,7 @@ "phoenix": "file:../deps/phoenix", "phoenix_html": "file:../deps/phoenix_html", "phoenix_live_view": "file:../deps/phoenix_live_view", + "slim-select": "^2.9.2", "topbar": "^3.0.0" }, "devDependencies": { diff --git a/lib/cannery_web/controllers/user_settings_html/edit.html.heex b/lib/cannery_web/controllers/user_settings_html/edit.html.heex index b37f3cf1..ccc6816f 100644 --- a/lib/cannery_web/controllers/user_settings_html/edit.html.heex +++ b/lib/cannery_web/controllers/user_settings_html/edit.html.heex @@ -129,7 +129,7 @@ {"Français", "fr"}, {"Español", "es"} ], - class: "mx-2 my-1 min-w-md input input-primary col-span-3" + class: "my-1 min-w-md input input-primary col-span-3" ) %> <%= error_tag(f, :locale, "col-span-3") %> diff --git a/lib/cannery_web/live/container_live/edit_tags_component.html.heex b/lib/cannery_web/live/container_live/edit_tags_component.html.heex index 4cdef7fe..3f622f64 100644 --- a/lib/cannery_web/live/container_live/edit_tags_component.html.heex +++ b/lib/cannery_web/live/container_live/edit_tags_component.html.heex @@ -44,7 +44,9 @@ phx-submit="save" > <%= select(f, :tag_id, tag_options(@tags, @container), - class: "text-center col-span-2 input input-primary" + class: "text-center col-span-2 input input-primary", + id: "#{@id}-tag-select", + phx_hook: "SlimSelect" ) %> <%= error_tag(f, :tag_id, "col-span-3 text-center") %> 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 9196524c..3744387a 100644 --- a/lib/cannery_web/live/pack_live/form_component.html.heex +++ b/lib/cannery_web/live/pack_live/form_component.html.heex @@ -21,7 +21,9 @@ <%= label(f, :type_id, gettext("Type"), class: "title text-lg text-primary-600") %> <%= select(f, :type_id, type_options(@types), - class: "text-center col-span-2 input input-primary" + class: "text-center col-span-2 input input-primary", + id: "pack-form-type-select", + phx_hook: "SlimSelect" ) %> <%= error_tag(f, :type_id, "col-span-3 text-center") %> @@ -66,7 +68,9 @@ <%= label(f, :container, gettext("Container"), class: "title text-lg text-primary-600") %> <%= select(f, :container_id, container_options(@containers), - class: "text-center col-span-2 input input-primary" + class: "text-center col-span-2 input input-primary", + id: "pack-form-container-select", + phx_hook: "SlimSelect" ) %> <%= error_tag(f, :container_id, "col-span-3 text-center") %> 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 2c992f61..5c6819ee 100644 --- a/lib/cannery_web/live/type_live/form_component.html.heex +++ b/lib/cannery_web/live/type_live/form_component.html.heex @@ -22,7 +22,11 @@ <%= select( f, :class, - [{gettext("Rifle"), :rifle}, {gettext("Shotgun"), :shotgun}, {gettext("Pistol"), :pistol}], + [ + {gettext("Rifle"), :rifle}, + {gettext("Shotgun"), :shotgun}, + {gettext("Pistol"), :pistol} + ], class: "text-center col-span-2 input input-primary", maxlength: 255 ) %> diff --git a/priv/gettext/actions.pot b/priv/gettext/actions.pot index 384ea480..40604014 100644 --- a/priv/gettext/actions.pot +++ b/priv/gettext/actions.pot @@ -118,10 +118,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:57 #: lib/cannery_web/live/container_live/form_component.html.heex:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "Why not add one?" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "" @@ -178,7 +178,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, elixir-autogen, elixir-format msgid "Create" msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/actions.po b/priv/gettext/de/LC_MESSAGES/actions.po index ec71c666..e5405898 100644 --- a/priv/gettext/de/LC_MESSAGES/actions.po +++ b/priv/gettext/de/LC_MESSAGES/actions.po @@ -131,10 +131,10 @@ 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:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "Speichern" @@ -149,7 +149,7 @@ msgstr "Anleitung zum Passwort zurücksetzen zusenden" msgid "Why not add one?" msgstr "Warum fügen Sie keine hinzu?" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "Hinzufügen" @@ -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:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, 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 026f4653..9de3f2fa 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:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "Knallpatrone" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "Messing" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "Projektilkern" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "Patronenart" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "Kaliber" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "Patrone" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, elixir-autogen, elixir-format 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "Behälter" @@ -100,13 +100,13 @@ msgid "Containers" msgstr "Behälter" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Korrosiv" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "Anzahl" @@ -119,7 +119,7 @@ msgstr "Anzahl:" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "Beschreibung" @@ -145,19 +145,19 @@ msgstr "Einladung bearbeiten" msgid "Edit Tag" msgstr "Tag bearbeiten" -#: lib/cannery_web/live/type_live/form_component.html.heex:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "VM" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, elixir-autogen, elixir-format msgid "Grains" msgstr "Körner" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Brandmunition" @@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "Magazin, Ladestreifen, Munitionskiste usw." #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "Hersteller" @@ -229,7 +229,7 @@ msgstr "Meine coole Munitionskiste" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "Name" @@ -280,7 +280,7 @@ msgstr "Keine Tags" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -299,13 +299,13 @@ 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:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "Druck" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" msgstr "Kaufpreis" @@ -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:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, 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:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, 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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Leuchtspur" @@ -501,36 +501,36 @@ msgstr "Schießkladde" msgid "$%{amount}" msgstr "$%{amount}" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "Bimetall" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, elixir-autogen, elixir-format 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:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, 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:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "Pulverart" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format msgid "UPC" msgstr "UPC" @@ -554,7 +554,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:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Patronenhülsenform" @@ -653,7 +653,7 @@ msgstr "Passwort zurücksetzen" msgid "Record Shots" msgstr "Schüsse dokumentieren" -#: lib/cannery_web/live/pack_live/form_component.html.heex:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "Kopien" @@ -979,7 +979,7 @@ msgid "Never used" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "" @@ -1119,27 +1119,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1189,13 +1189,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "Messing" @@ -1206,7 +1206,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1216,13 +1216,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1233,7 +1233,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1244,7 +1244,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1267,24 +1267,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "Pulverart" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "Zündertyp" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1292,7 +1292,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1300,7 +1300,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1311,7 +1311,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1322,7 +1322,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "Schüsse abgegeben" @@ -1333,7 +1333,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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1346,7 +1346,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1354,12 +1354,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1370,13 +1370,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1433,7 +1433,7 @@ msgid "No Types" msgstr "Art" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/de/LC_MESSAGES/prompts.po b/priv/gettext/de/LC_MESSAGES/prompts.po index 7911db91..59007eb2 100644 --- a/priv/gettext/de/LC_MESSAGES/prompts.po +++ b/priv/gettext/de/LC_MESSAGES/prompts.po @@ -131,10 +131,10 @@ msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "Speichere..." @@ -161,7 +161,7 @@ msgstr "%{name} erfolgreich hinzugefügt" msgid "%{tag_name} has been removed from %{container_name}" msgstr "%{tag_name} wurde von %{container_name} entfernt" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "Füge hinzu..." @@ -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:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "Erstellen..." diff --git a/priv/gettext/default.pot b/priv/gettext/default.pot index 6d990f02..f8a81992 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:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, elixir-autogen, elixir-format 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "" @@ -96,13 +96,13 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "" @@ -115,7 +115,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "" @@ -141,19 +141,19 @@ msgstr "" msgid "Edit Tag" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -225,7 +225,7 @@ msgstr "" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "" @@ -276,7 +276,7 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -295,13 +295,13 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" 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:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, 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:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, 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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -495,36 +495,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, elixir-autogen, elixir-format 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format msgid "UPC" msgstr "" @@ -548,7 +548,7 @@ msgid "New password" msgstr "" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -973,7 +973,7 @@ msgid "Never used" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "" @@ -1102,27 +1102,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1172,13 +1172,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format msgid "Brass height" msgstr "" @@ -1189,7 +1189,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1199,13 +1199,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1216,7 +1216,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1227,7 +1227,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1250,24 +1250,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1283,7 +1283,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1294,7 +1294,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1305,7 +1305,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format msgid "Shot size" msgstr "" @@ -1316,7 +1316,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1329,7 +1329,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1337,12 +1337,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1353,13 +1353,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1416,7 +1416,7 @@ msgid "No Types" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/actions.po b/priv/gettext/en/LC_MESSAGES/actions.po index 740874b5..5f490790 100644 --- a/priv/gettext/en/LC_MESSAGES/actions.po +++ b/priv/gettext/en/LC_MESSAGES/actions.po @@ -118,10 +118,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:57 #: lib/cannery_web/live/container_live/form_component.html.heex:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "Why not add one?" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "" @@ -178,7 +178,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, elixir-autogen, elixir-format, fuzzy msgid "Create" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/default.po b/priv/gettext/en/LC_MESSAGES/default.po index f8c0577e..47377676 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:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, elixir-autogen, elixir-format 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "" @@ -96,13 +96,13 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "" @@ -115,7 +115,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "" @@ -141,19 +141,19 @@ msgstr "" msgid "Edit Tag" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -204,8 +204,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -225,7 +225,7 @@ msgstr "" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "" @@ -276,7 +276,7 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -295,13 +295,13 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" 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:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, 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:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, 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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -495,36 +495,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, elixir-autogen, elixir-format 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format msgid "UPC" msgstr "" @@ -548,7 +548,7 @@ msgid "New password" msgstr "" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -973,7 +973,7 @@ msgid "Never used" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "" @@ -1102,27 +1102,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1172,13 +1172,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "" @@ -1189,7 +1189,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1199,13 +1199,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1216,7 +1216,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1227,7 +1227,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1250,24 +1250,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1275,7 +1275,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1283,7 +1283,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1294,7 +1294,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1305,7 +1305,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "" @@ -1316,7 +1316,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1329,7 +1329,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1337,12 +1337,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1353,13 +1353,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1416,7 +1416,7 @@ msgid "No Types" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/en/LC_MESSAGES/prompts.po b/priv/gettext/en/LC_MESSAGES/prompts.po index 53a32bc3..03b0a1c6 100644 --- a/priv/gettext/en/LC_MESSAGES/prompts.po +++ b/priv/gettext/en/LC_MESSAGES/prompts.po @@ -112,10 +112,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "%{tag_name} has been removed from %{container_name}" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, elixir-autogen, elixir-format, fuzzy msgid "Creating..." msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/actions.po b/priv/gettext/es/LC_MESSAGES/actions.po index 45d9a74c..c3d77a8a 100644 --- a/priv/gettext/es/LC_MESSAGES/actions.po +++ b/priv/gettext/es/LC_MESSAGES/actions.po @@ -131,10 +131,10 @@ 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:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "Guardar" @@ -149,7 +149,7 @@ msgstr "Enviar instrucciones para reestablecer contraseña" msgid "Why not add one?" msgstr "¿Por qué no añadir una?" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "Añadir" @@ -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:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, 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 127e4fb1..8e592e1d 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:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "Fogueo" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "Latón" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format 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:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, 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:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, 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:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, 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:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "Contenedor" @@ -100,13 +100,13 @@ msgid "Containers" msgstr "Contenedores" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Corrosiva" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "Cantidad" @@ -119,7 +119,7 @@ msgstr "Cantidad:" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "Descripción" @@ -145,19 +145,19 @@ msgstr "Editar Invitación" msgid "Edit Tag" msgstr "Editar Etiqueta" -#: lib/cannery_web/live/type_live/form_component.html.heex:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "Bala encamisada" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, elixir-autogen, elixir-format msgid "Grains" msgstr "Grano" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Incendiaria" @@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "Cargador, Clip, Caja de Munición, etc" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "Fabricante" @@ -229,7 +229,7 @@ msgstr "Mi lata de munición guapa" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "Nombre" @@ -280,7 +280,7 @@ msgstr "Sin etiquetas" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -299,13 +299,13 @@ 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:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "Presión" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" msgstr "Precio pagado" @@ -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:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, 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:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, 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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Trazadora" @@ -502,36 +502,36 @@ msgstr "Registro de tiros" msgid "$%{amount}" msgstr "$%{amount}" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "Bimetal" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, elixir-autogen, elixir-format 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:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, 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:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "Tipo de polvora" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format msgid "UPC" msgstr "" @@ -555,7 +555,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:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Tipo de fuego" @@ -654,7 +654,7 @@ msgstr "Reestablecer contraseña" msgid "Record Shots" msgstr "Tiros Récord" -#: lib/cannery_web/live/pack_live/form_component.html.heex:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "Copias" @@ -981,7 +981,7 @@ msgid "Never used" msgstr "Nunca usada" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "Comprada en" @@ -1121,27 +1121,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1191,13 +1191,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "Latón" @@ -1208,7 +1208,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1218,13 +1218,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1235,7 +1235,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1246,7 +1246,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1269,24 +1269,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "Tipo de polvora" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "Tipo de espoleta" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1294,7 +1294,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1302,7 +1302,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1313,7 +1313,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1324,7 +1324,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "Tiros disparados" @@ -1335,7 +1335,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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1348,7 +1348,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1356,12 +1356,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1372,13 +1372,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1435,7 +1435,7 @@ msgid "No Types" msgstr "Tipo" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/es/LC_MESSAGES/prompts.po b/priv/gettext/es/LC_MESSAGES/prompts.po index 8a29cc30..edb1cef1 100644 --- a/priv/gettext/es/LC_MESSAGES/prompts.po +++ b/priv/gettext/es/LC_MESSAGES/prompts.po @@ -131,10 +131,10 @@ msgstr "Por favor chequea el correo para verificar tu cuenta" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "Guardando..." @@ -160,7 +160,7 @@ msgstr "%{name} añadido exitosamente" msgid "%{tag_name} has been removed from %{container_name}" msgstr "se ha removido %{tag_name} de %{container_name}" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "Añadiendo..." @@ -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:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, 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 cbed6bb3..bdd99adf 100644 --- a/priv/gettext/fr/LC_MESSAGES/actions.po +++ b/priv/gettext/fr/LC_MESSAGES/actions.po @@ -131,10 +131,10 @@ msgstr "Réinitialisé le mot de passe" #: lib/cannery_web/components/add_shot_record_component.html.heex:57 #: lib/cannery_web/live/container_live/form_component.html.heex:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "Sauvegarder" @@ -149,7 +149,7 @@ msgstr "Envoyer les instructions pour réinitialiser le mot de passe" msgid "Why not add one?" msgstr "Pourquoi pas en ajouter un ?" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "Ajouter" @@ -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:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, 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 f7a15407..079aac90 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:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "Vide" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "Cuivre" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format 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:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, 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:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, 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:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, 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:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "Conteneur" @@ -100,13 +100,13 @@ msgid "Containers" msgstr "Conteneurs" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "Corrosive" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "Quantité" @@ -119,7 +119,7 @@ msgstr "Quantité :" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "Description" @@ -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:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, 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:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, 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:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "Incendiaire" @@ -208,8 +208,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "Chargeur, lame-chargeur, boite de munition, etc." #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "Fabricant" @@ -229,7 +229,7 @@ msgstr "Ma superbe boite de munition" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "Nom" @@ -280,7 +280,7 @@ msgstr "Aucun tag" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -299,13 +299,13 @@ 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:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "Pression" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" msgstr "Prix payé" @@ -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:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, 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:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, 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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "Traceuse" @@ -503,36 +503,36 @@ msgstr "Évènements de tir" msgid "$%{amount}" msgstr "%{amount} $" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, elixir-autogen, elixir-format 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:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, 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:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, 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:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "Type de poudre" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format msgid "UPC" msgstr "UPC" @@ -556,7 +556,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:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "Type d’allumage" @@ -655,7 +655,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:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "Exemplaires" @@ -982,7 +982,7 @@ msgid "Never used" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "" @@ -1122,27 +1122,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1192,13 +1192,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "Cuivre" @@ -1209,7 +1209,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1219,13 +1219,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1236,7 +1236,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1247,7 +1247,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1270,24 +1270,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "Type de poudre" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "Type d’amorce" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1295,7 +1295,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1303,7 +1303,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1314,7 +1314,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1325,7 +1325,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "Tirs réalisés" @@ -1336,7 +1336,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:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1349,7 +1349,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1357,12 +1357,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1373,13 +1373,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1436,7 +1436,7 @@ msgid "No Types" msgstr "Type" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/fr/LC_MESSAGES/prompts.po b/priv/gettext/fr/LC_MESSAGES/prompts.po index 48d1ffd2..e16478b8 100644 --- a/priv/gettext/fr/LC_MESSAGES/prompts.po +++ b/priv/gettext/fr/LC_MESSAGES/prompts.po @@ -132,10 +132,10 @@ msgstr "Veuillez vérifier votre mél pour confirmer votre compte" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "Sauvegarde en cours…" @@ -162,7 +162,7 @@ msgstr "%{name} a été ajouté avec succès" msgid "%{tag_name} has been removed from %{container_name}" msgstr "%{tag_name} a été retiré de %{container_name}" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "Ajout 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:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, 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 2a2909d0..e965607f 100644 --- a/priv/gettext/ga/LC_MESSAGES/actions.po +++ b/priv/gettext/ga/LC_MESSAGES/actions.po @@ -129,10 +129,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:57 #: lib/cannery_web/live/container_live/form_component.html.heex:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -147,7 +147,7 @@ msgstr "" msgid "Why not add one?" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "" @@ -189,7 +189,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, elixir-autogen, elixir-format msgid "Create" msgstr "" diff --git a/priv/gettext/ga/LC_MESSAGES/default.po b/priv/gettext/ga/LC_MESSAGES/default.po index c0800e05..f671910f 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:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, elixir-autogen, elixir-format 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "" @@ -98,13 +98,13 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "" @@ -117,7 +117,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "" @@ -143,19 +143,19 @@ msgstr "" msgid "Edit Tag" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -206,8 +206,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -227,7 +227,7 @@ msgstr "" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "" @@ -278,7 +278,7 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -297,13 +297,13 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" 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:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, 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:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, 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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -497,36 +497,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, elixir-autogen, elixir-format msgid "Bimetal" msgstr "" #: lib/cannery_web/components/type_table_component.ex:65 -#: lib/cannery_web/live/type_live/form_component.html.heex:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, elixir-autogen, elixir-format msgid "Jacket type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:81 -#: lib/cannery_web/live/type_live/form_component.html.heex:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, elixir-autogen, elixir-format msgid "Muzzle velocity" msgstr "" #: lib/cannery_web/components/type_table_component.ex:75 -#: lib/cannery_web/live/type_live/form_component.html.heex:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, elixir-autogen, elixir-format 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format msgid "UPC" msgstr "" @@ -550,7 +550,7 @@ msgid "New password" msgstr "" #: lib/cannery_web/components/type_table_component.ex:83 -#: lib/cannery_web/live/type_live/form_component.html.heex:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -649,7 +649,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -975,7 +975,7 @@ msgid "Never used" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "" @@ -1113,27 +1113,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1183,13 +1183,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format, fuzzy msgid "Brass height" msgstr "" @@ -1200,7 +1200,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1210,13 +1210,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1227,7 +1227,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1238,7 +1238,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1261,24 +1261,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format, fuzzy msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format, fuzzy msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1294,7 +1294,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1305,7 +1305,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1316,7 +1316,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format, fuzzy msgid "Shot size" msgstr "" @@ -1327,7 +1327,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1340,7 +1340,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1348,12 +1348,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1364,13 +1364,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1427,7 +1427,7 @@ msgid "No Types" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/ga/LC_MESSAGES/prompts.po b/priv/gettext/ga/LC_MESSAGES/prompts.po index 5d1b3e16..c7242bce 100644 --- a/priv/gettext/ga/LC_MESSAGES/prompts.po +++ b/priv/gettext/ga/LC_MESSAGES/prompts.po @@ -123,10 +123,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -151,7 +151,7 @@ msgstr "" msgid "%{tag_name} has been removed from %{container_name}" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "" @@ -209,7 +209,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/actions.po b/priv/gettext/it/LC_MESSAGES/actions.po index 142f4502..cd94695f 100644 --- a/priv/gettext/it/LC_MESSAGES/actions.po +++ b/priv/gettext/it/LC_MESSAGES/actions.po @@ -129,10 +129,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:57 #: lib/cannery_web/live/container_live/form_component.html.heex:59 #: lib/cannery_web/live/invite_live/form_component.html.heex:38 -#: lib/cannery_web/live/pack_live/form_component.html.heex:92 +#: lib/cannery_web/live/pack_live/form_component.html.heex:96 #: lib/cannery_web/live/range_live/form_component.html.heex:45 #: lib/cannery_web/live/tag_live/form_component.html.heex:41 -#: lib/cannery_web/live/type_live/form_component.html.heex:382 +#: lib/cannery_web/live/type_live/form_component.html.heex:386 #, elixir-autogen, elixir-format msgid "Save" msgstr "" @@ -147,7 +147,7 @@ msgstr "" msgid "Why not add one?" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:51 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Add" msgstr "" @@ -189,7 +189,7 @@ msgstr "" msgid "add a container first" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:85 +#: lib/cannery_web/live/pack_live/form_component.html.heex:89 #, elixir-autogen, elixir-format msgid "Create" msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/default.po b/priv/gettext/it/LC_MESSAGES/default.po index 8146159e..91d4169b 100644 --- a/priv/gettext/it/LC_MESSAGES/default.po +++ b/priv/gettext/it/LC_MESSAGES/default.po @@ -51,49 +51,49 @@ msgid "Background color" msgstr "" #: lib/cannery_web/components/type_table_component.ex:86 -#: lib/cannery_web/live/type_live/form_component.html.heex:354 +#: lib/cannery_web/live/type_live/form_component.html.heex:358 #, elixir-autogen, elixir-format msgid "Blank" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:191 +#: lib/cannery_web/live/type_live/form_component.html.heex:195 #, elixir-autogen, elixir-format msgid "Brass" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:159 +#: lib/cannery_web/live/type_live/form_component.html.heex:163 #, elixir-autogen, elixir-format msgid "Bullet core" msgstr "" #: lib/cannery_web/components/type_table_component.ex:59 -#: lib/cannery_web/live/type_live/form_component.html.heex:132 +#: lib/cannery_web/live/type_live/form_component.html.heex:136 #, elixir-autogen, elixir-format msgid "Bullet type" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:70 +#: lib/cannery_web/live/type_live/form_component.html.heex:74 #, elixir-autogen, elixir-format msgid "Caliber" msgstr "" #: lib/cannery_web/components/type_table_component.ex:49 -#: lib/cannery_web/live/type_live/form_component.html.heex:53 +#: lib/cannery_web/live/type_live/form_component.html.heex:57 #, elixir-autogen, elixir-format msgid "Cartridge" msgstr "" #: lib/cannery_web/components/type_table_component.ex:66 -#: lib/cannery_web/live/type_live/form_component.html.heex:184 +#: lib/cannery_web/live/type_live/form_component.html.heex:188 #, elixir-autogen, elixir-format 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:67 +#: lib/cannery_web/live/pack_live/form_component.html.heex:69 #, elixir-autogen, elixir-format msgid "Container" msgstr "" @@ -107,13 +107,13 @@ msgid "Containers" msgstr "" #: lib/cannery_web/components/type_table_component.ex:87 -#: lib/cannery_web/live/type_live/form_component.html.heex:358 +#: lib/cannery_web/live/type_live/form_component.html.heex:362 #, elixir-autogen, elixir-format msgid "Corrosive" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:104 -#: lib/cannery_web/live/pack_live/form_component.html.heex:28 +#: lib/cannery_web/live/pack_live/form_component.html.heex:30 #, elixir-autogen, elixir-format msgid "Count" msgstr "" @@ -126,7 +126,7 @@ msgstr "" #: lib/cannery_web/components/container_table_component.ex:46 #: lib/cannery_web/live/container_live/form_component.html.heex:30 -#: lib/cannery_web/live/type_live/form_component.html.heex:39 +#: lib/cannery_web/live/type_live/form_component.html.heex:43 #, elixir-autogen, elixir-format msgid "Description" msgstr "" @@ -152,19 +152,19 @@ msgstr "" msgid "Edit Tag" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:147 +#: lib/cannery_web/live/type_live/form_component.html.heex:151 #, elixir-autogen, elixir-format msgid "FMJ" msgstr "" #: lib/cannery_web/components/type_table_component.ex:58 -#: lib/cannery_web/live/type_live/form_component.html.heex:122 +#: lib/cannery_web/live/type_live/form_component.html.heex:126 #, elixir-autogen, elixir-format msgid "Grains" msgstr "" #: lib/cannery_web/components/type_table_component.ex:85 -#: lib/cannery_web/live/type_live/form_component.html.heex:350 +#: lib/cannery_web/live/type_live/form_component.html.heex:354 #, elixir-autogen, elixir-format msgid "Incendiary" msgstr "" @@ -215,8 +215,8 @@ msgid "Magazine, Clip, Ammo Box, etc" msgstr "" #: lib/cannery_web/components/type_table_component.ex:88 -#: lib/cannery_web/live/type_live/form_component.html.heex:363 -#: lib/cannery_web/live/type_live/form_component.html.heex:366 +#: lib/cannery_web/live/type_live/form_component.html.heex:367 +#: lib/cannery_web/live/type_live/form_component.html.heex:370 #, elixir-autogen, elixir-format msgid "Manufacturer" msgstr "" @@ -236,7 +236,7 @@ msgstr "" #: lib/cannery_web/live/container_live/form_component.html.heex:21 #: lib/cannery_web/live/invite_live/form_component.html.heex:21 #: lib/cannery_web/live/tag_live/form_component.html.heex:21 -#: lib/cannery_web/live/type_live/form_component.html.heex:31 +#: lib/cannery_web/live/type_live/form_component.html.heex:35 #, elixir-autogen, elixir-format msgid "Name" msgstr "" @@ -287,7 +287,7 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:38 #: lib/cannery_web/components/shot_record_table_component.ex:46 -#: lib/cannery_web/live/pack_live/form_component.html.heex:58 +#: lib/cannery_web/live/pack_live/form_component.html.heex:60 #: lib/cannery_web/live/pack_live/show.ex:90 #: lib/cannery_web/live/range_live/form_component.html.heex:30 #, elixir-autogen, elixir-format @@ -306,13 +306,13 @@ msgid "On the bookshelf" msgstr "" #: lib/cannery_web/components/type_table_component.ex:79 -#: lib/cannery_web/live/type_live/form_component.html.heex:283 +#: lib/cannery_web/live/type_live/form_component.html.heex:287 #, elixir-autogen, elixir-format msgid "Pressure" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:92 -#: lib/cannery_web/live/pack_live/form_component.html.heex:35 +#: lib/cannery_web/live/pack_live/form_component.html.heex:37 #, elixir-autogen, elixir-format msgid "Price paid" msgstr "" @@ -323,7 +323,7 @@ msgid "Price paid:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:82 -#: lib/cannery_web/live/type_live/form_component.html.heex:324 +#: lib/cannery_web/live/type_live/form_component.html.heex:328 #, elixir-autogen, elixir-format msgid "Primer type" msgstr "" @@ -354,7 +354,7 @@ msgstr "" msgid "Simple:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:167 +#: lib/cannery_web/live/type_live/form_component.html.heex:171 #, elixir-autogen, elixir-format msgid "Steel" msgstr "" @@ -389,7 +389,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:346 +#: lib/cannery_web/live/type_live/form_component.html.heex:350 #, elixir-autogen, elixir-format msgid "Tracer" msgstr "" @@ -506,36 +506,36 @@ msgstr "" msgid "$%{amount}" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:177 +#: lib/cannery_web/live/type_live/form_component.html.heex:181 #, 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:172 +#: lib/cannery_web/live/type_live/form_component.html.heex:176 #, 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:307 +#: lib/cannery_web/live/type_live/form_component.html.heex:311 #, 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:270 +#: lib/cannery_web/live/type_live/form_component.html.heex:274 #, 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:261 +#: lib/cannery_web/live/type_live/form_component.html.heex:265 #, elixir-autogen, elixir-format msgid "Powder type" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:374 +#: lib/cannery_web/live/type_live/form_component.html.heex:378 #, elixir-autogen, elixir-format 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:333 +#: lib/cannery_web/live/type_live/form_component.html.heex:337 #, elixir-autogen, elixir-format msgid "Firing type" msgstr "" @@ -658,7 +658,7 @@ msgstr "" msgid "Record Shots" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:77 +#: lib/cannery_web/live/pack_live/form_component.html.heex:81 #, elixir-autogen, elixir-format msgid "Copies" msgstr "" @@ -984,7 +984,7 @@ msgid "Never used" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:71 -#: lib/cannery_web/live/pack_live/form_component.html.heex:50 +#: lib/cannery_web/live/pack_live/form_component.html.heex:52 #, elixir-autogen, elixir-format msgid "Purchased on" msgstr "" @@ -1113,27 +1113,27 @@ msgstr "" msgid "Password" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:288 +#: lib/cannery_web/live/type_live/form_component.html.heex:292 #, elixir-autogen, elixir-format msgid "+P" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:78 +#: lib/cannery_web/live/type_live/form_component.html.heex:82 #, elixir-autogen, elixir-format msgid ".223" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:58 +#: lib/cannery_web/live/type_live/form_component.html.heex:62 #, elixir-autogen, elixir-format msgid "5.56x46mm NATO" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:329 +#: lib/cannery_web/live/type_live/form_component.html.heex:333 #, elixir-autogen, elixir-format msgid "Boxer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:338 +#: lib/cannery_web/live/type_live/form_component.html.heex:342 #, elixir-autogen, elixir-format msgid "Centerfire" msgstr "" @@ -1183,13 +1183,13 @@ msgstr "" msgid "All" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:343 +#: lib/cannery_web/live/type_live/form_component.html.heex:347 #, elixir-autogen, elixir-format msgid "Attributes" msgstr "" #: lib/cannery_web/components/type_table_component.ex:56 -#: lib/cannery_web/live/type_live/form_component.html.heex:93 +#: lib/cannery_web/live/type_live/form_component.html.heex:97 #, elixir-autogen, elixir-format msgid "Brass height" msgstr "" @@ -1200,7 +1200,7 @@ msgid "Brass height:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:57 -#: lib/cannery_web/live/type_live/form_component.html.heex:103 +#: lib/cannery_web/live/type_live/form_component.html.heex:107 #, elixir-autogen, elixir-format msgid "Chamber size" msgstr "" @@ -1210,13 +1210,13 @@ msgstr "" msgid "Chamber size:" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:49 +#: lib/cannery_web/live/type_live/form_component.html.heex:53 #, elixir-autogen, elixir-format msgid "Dimensions" msgstr "" #: lib/cannery_web/components/type_table_component.ex:80 -#: lib/cannery_web/live/type_live/form_component.html.heex:293 +#: lib/cannery_web/live/type_live/form_component.html.heex:297 #, elixir-autogen, elixir-format msgid "Dram equivalent" msgstr "" @@ -1227,7 +1227,7 @@ msgid "Dram equivalent:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:51 -#: lib/cannery_web/live/type_live/form_component.html.heex:69 +#: lib/cannery_web/live/type_live/form_component.html.heex:73 #, elixir-autogen, elixir-format msgid "Gauge" msgstr "" @@ -1238,7 +1238,7 @@ msgid "Gauge:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:71 -#: lib/cannery_web/live/type_live/form_component.html.heex:231 +#: lib/cannery_web/live/type_live/form_component.html.heex:235 #, elixir-autogen, elixir-format msgid "Load grains" msgstr "" @@ -1261,24 +1261,24 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:100 #: lib/cannery_web/live/pack_live/index.html.heex:61 #: lib/cannery_web/live/range_live/index.html.heex:94 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:28 #: lib/cannery_web/live/type_live/index.html.heex:40 #: lib/cannery_web/live/type_live/show.html.heex:56 #, elixir-autogen, elixir-format msgid "Pistol" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:258 +#: lib/cannery_web/live/type_live/form_component.html.heex:262 #, elixir-autogen, elixir-format msgid "Powder" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:321 +#: lib/cannery_web/live/type_live/form_component.html.heex:325 #, elixir-autogen, elixir-format msgid "Primer" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:119 +#: lib/cannery_web/live/type_live/form_component.html.heex:123 #, elixir-autogen, elixir-format msgid "Projectile" msgstr "" @@ -1286,7 +1286,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:98 #: lib/cannery_web/live/pack_live/index.html.heex:59 #: lib/cannery_web/live/range_live/index.html.heex:92 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:26 #: lib/cannery_web/live/type_live/index.html.heex:38 #: lib/cannery_web/live/type_live/show.html.heex:54 #, elixir-autogen, elixir-format @@ -1294,7 +1294,7 @@ msgid "Rifle" msgstr "" #: lib/cannery_web/components/type_table_component.ex:72 -#: lib/cannery_web/live/type_live/form_component.html.heex:239 +#: lib/cannery_web/live/type_live/form_component.html.heex:243 #, elixir-autogen, elixir-format msgid "Shot charge weight" msgstr "" @@ -1305,7 +1305,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:213 +#: lib/cannery_web/live/type_live/form_component.html.heex:217 #, elixir-autogen, elixir-format msgid "Shot material" msgstr "" @@ -1316,7 +1316,7 @@ msgid "Shot material:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:70 -#: lib/cannery_web/live/type_live/form_component.html.heex:223 +#: lib/cannery_web/live/type_live/form_component.html.heex:227 #, elixir-autogen, elixir-format msgid "Shot size" msgstr "" @@ -1327,7 +1327,7 @@ msgid "Shot size:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:68 -#: lib/cannery_web/live/type_live/form_component.html.heex:204 +#: lib/cannery_web/live/type_live/form_component.html.heex:208 #, elixir-autogen, elixir-format msgid "Shot type" msgstr "" @@ -1340,7 +1340,7 @@ msgstr "" #: lib/cannery_web/live/container_live/show.html.heex:99 #: lib/cannery_web/live/pack_live/index.html.heex:60 #: lib/cannery_web/live/range_live/index.html.heex:93 -#: lib/cannery_web/live/type_live/form_component.html.heex:25 +#: lib/cannery_web/live/type_live/form_component.html.heex:27 #: lib/cannery_web/live/type_live/index.html.heex:39 #: lib/cannery_web/live/type_live/show.html.heex:52 #, elixir-autogen, elixir-format @@ -1348,12 +1348,12 @@ msgid "Shotgun" msgstr "" #: lib/cannery_web/components/type_table_component.ex:61 -#: lib/cannery_web/live/type_live/form_component.html.heex:158 +#: lib/cannery_web/live/type_live/form_component.html.heex:162 #, elixir-autogen, elixir-format msgid "Slug core" msgstr "" -#: lib/cannery_web/live/type_live/form_component.html.heex:209 +#: lib/cannery_web/live/type_live/form_component.html.heex:213 #, elixir-autogen, elixir-format msgid "Target, bird, buck, etc" msgstr "" @@ -1364,13 +1364,13 @@ msgid "Unfired length:" msgstr "" #: lib/cannery_web/components/type_table_component.ex:55 -#: lib/cannery_web/live/type_live/form_component.html.heex:83 +#: lib/cannery_web/live/type_live/form_component.html.heex:87 #, elixir-autogen, elixir-format msgid "Unfired shell length" msgstr "" #: lib/cannery_web/components/type_table_component.ex:67 -#: lib/cannery_web/live/type_live/form_component.html.heex:196 +#: lib/cannery_web/live/type_live/form_component.html.heex:200 #, elixir-autogen, elixir-format msgid "Wadding" msgstr "" @@ -1427,7 +1427,7 @@ msgid "No Types" msgstr "" #: lib/cannery_web/components/pack_table_component.ex:84 -#: lib/cannery_web/live/pack_live/form_component.html.heex:42 +#: lib/cannery_web/live/pack_live/form_component.html.heex:44 #, elixir-autogen, elixir-format msgid "Lot number" msgstr "" diff --git a/priv/gettext/it/LC_MESSAGES/prompts.po b/priv/gettext/it/LC_MESSAGES/prompts.po index abfc9599..49912ae3 100644 --- a/priv/gettext/it/LC_MESSAGES/prompts.po +++ b/priv/gettext/it/LC_MESSAGES/prompts.po @@ -123,10 +123,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -151,7 +151,7 @@ msgstr "" msgid "%{tag_name} has been removed from %{container_name}" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "" @@ -209,7 +209,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, elixir-autogen, elixir-format msgid "Creating..." msgstr "" diff --git a/priv/gettext/prompts.pot b/priv/gettext/prompts.pot index 33e4be1a..fe8028ab 100644 --- a/priv/gettext/prompts.pot +++ b/priv/gettext/prompts.pot @@ -112,10 +112,10 @@ msgstr "" #: lib/cannery_web/components/add_shot_record_component.html.heex:59 #: lib/cannery_web/live/container_live/form_component.html.heex:61 #: lib/cannery_web/live/invite_live/form_component.html.heex:40 -#: lib/cannery_web/live/pack_live/form_component.html.heex:93 +#: lib/cannery_web/live/pack_live/form_component.html.heex:97 #: lib/cannery_web/live/range_live/form_component.html.heex:47 #: lib/cannery_web/live/tag_live/form_component.html.heex:43 -#: lib/cannery_web/live/type_live/form_component.html.heex:383 +#: lib/cannery_web/live/type_live/form_component.html.heex:387 #, elixir-autogen, elixir-format msgid "Saving..." msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "%{tag_name} has been removed from %{container_name}" msgstr "" -#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:53 +#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:55 #, elixir-autogen, elixir-format msgid "Adding..." msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "You'll need to" msgstr "" -#: lib/cannery_web/live/pack_live/form_component.html.heex:86 +#: lib/cannery_web/live/pack_live/form_component.html.heex:90 #, elixir-autogen, elixir-format msgid "Creating..." msgstr ""