Compare commits
10 Commits
a54cf8b87d
...
0.8.5
Author | SHA1 | Date | |
---|---|---|---|
b32edd581d | |||
2e372ca2ab | |||
fd0bac3bbf | |||
f83fbc5d99 | |||
daab051026 | |||
440dc5061b | |||
c0d2c69144 | |||
7a7359fa66 | |||
9e8fd00d65 | |||
f5f72b53e6 |
@ -1,10 +1,18 @@
|
|||||||
|
# v0.8.5
|
||||||
|
- Add link in readme to github mirror
|
||||||
|
- Fix tables unable to sort on empty dates
|
||||||
|
- Only show historical ammo type information when displaying "Show used"
|
||||||
|
- Fix even more accessibility issues
|
||||||
|
|
||||||
# v0.8.4
|
# v0.8.4
|
||||||
- Improve accessibility
|
- Improve accessibility
|
||||||
- Code quality improvements
|
- Code quality improvements
|
||||||
- Fix dead link of example bullet abbreviations
|
- Fix dead link of example bullet abbreviations
|
||||||
- Fix inaccurate error message when updating shot records
|
- Fix inaccurate error message when updating shot records
|
||||||
- Fix tables not sorting dates correctly
|
- Fix tables not sorting dates correctly
|
||||||
|
- Fix dates displaying incorrectly
|
||||||
- Fix container table not displaying all fields
|
- Fix container table not displaying all fields
|
||||||
|
- Fix textareas resizing when typing in them
|
||||||
|
|
||||||
# v0.8.3
|
# v0.8.3
|
||||||
- Improve some styles
|
- Improve some styles
|
||||||
|
@ -92,6 +92,15 @@ Cannery is licensed under AGPLv3 or later. A copy of the latest version of the
|
|||||||
license can be found at
|
license can be found at
|
||||||
[LICENSE.md](https://gitea.bubbletea.dev/shibao/cannery/src/branch/stable/LICENSE.md).
|
[LICENSE.md](https://gitea.bubbletea.dev/shibao/cannery/src/branch/stable/LICENSE.md).
|
||||||
|
|
||||||
|
# Links
|
||||||
|
|
||||||
|
- [Gitea](https://gitea.bubbletea.dev/shibao/cannery): Main repo, feature
|
||||||
|
requests and bug reports
|
||||||
|
- [Github](https://github.com/shibaobun/cannery): Source code mirror, please
|
||||||
|
don't open pull requests to this repository
|
||||||
|
- [Weblate](https://weblate.bubbletea.dev/engage/cannery): Contribute to
|
||||||
|
translations!
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
[![Build
|
[![Build
|
||||||
|
@ -27,23 +27,15 @@ import { LiveSocket } from 'phoenix_live_view'
|
|||||||
import topbar from 'topbar'
|
import topbar from 'topbar'
|
||||||
import MaintainAttrs from './maintain_attrs'
|
import MaintainAttrs from './maintain_attrs'
|
||||||
import ShotLogChart from './shot_log_chart'
|
import ShotLogChart from './shot_log_chart'
|
||||||
import Alpine from 'alpinejs'
|
import Date from './date'
|
||||||
|
import DateTime from './datetime'
|
||||||
|
|
||||||
const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content')
|
const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content')
|
||||||
const liveSocket = new LiveSocket('/live', Socket, {
|
const liveSocket = new LiveSocket('/live', Socket, {
|
||||||
dom: {
|
|
||||||
onBeforeElUpdated (from, to) {
|
|
||||||
if (from._x_dataStack) { window.Alpine.clone(from, to) }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
params: { _csrf_token: csrfToken },
|
params: { _csrf_token: csrfToken },
|
||||||
hooks: { MaintainAttrs, ShotLogChart }
|
hooks: { Date, DateTime, MaintainAttrs, ShotLogChart }
|
||||||
})
|
})
|
||||||
|
|
||||||
// alpine.js
|
|
||||||
window.Alpine = Alpine
|
|
||||||
Alpine.start()
|
|
||||||
|
|
||||||
// Show progress bar on live navigation and form submits
|
// Show progress bar on live navigation and form submits
|
||||||
topbar.config({ barColors: { 0: '#29d' }, shadowColor: 'rgba(0, 0, 0, .3)' })
|
topbar.config({ barColors: { 0: '#29d' }, shadowColor: 'rgba(0, 0, 0, .3)' })
|
||||||
window.addEventListener('phx:page-loading-start', info => topbar.show())
|
window.addEventListener('phx:page-loading-start', info => topbar.show())
|
||||||
|
11
assets/js/date.js
Normal file
11
assets/js/date.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
export default {
|
||||||
|
displayDate (el) {
|
||||||
|
const date =
|
||||||
|
Intl.DateTimeFormat([], { timeZone: 'Etc/UTC', dateStyle: 'short' })
|
||||||
|
.format(new Date(el.dateTime))
|
||||||
|
|
||||||
|
el.innerText = date
|
||||||
|
},
|
||||||
|
mounted () { this.displayDate(this.el) },
|
||||||
|
updated () { this.displayDate(this.el) }
|
||||||
|
}
|
11
assets/js/datetime.js
Normal file
11
assets/js/datetime.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
export default {
|
||||||
|
displayDateTime (el) {
|
||||||
|
const date =
|
||||||
|
Intl.DateTimeFormat([], { dateStyle: 'short', timeStyle: 'long' })
|
||||||
|
.format(new Date(el.dateTime))
|
||||||
|
|
||||||
|
el.innerText = date
|
||||||
|
},
|
||||||
|
mounted () { this.displayDateTime(this.el) },
|
||||||
|
updated () { this.displayDateTime(this.el) }
|
||||||
|
}
|
9280
assets/package-lock.json
generated
9280
assets/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -4,7 +4,7 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "v18.9.1",
|
"node": "v18.9.1",
|
||||||
"npm": "8.10.0"
|
"npm": "8.19.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"deploy": "NODE_ENV=production webpack --mode production",
|
"deploy": "NODE_ENV=production webpack --mode production",
|
||||||
@ -13,37 +13,37 @@
|
|||||||
"test": "standard"
|
"test": "standard"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^6.1.1",
|
"@fortawesome/fontawesome-free": "^6.3.0",
|
||||||
"alpinejs": "^3.10.2",
|
"chart.js": "^4.2.1",
|
||||||
"chart.js": "^3.9.1",
|
"chartjs-adapter-date-fns": "^3.0.0",
|
||||||
"chartjs-adapter-date-fns": "^2.0.0",
|
|
||||||
"date-fns": "^2.29.3",
|
"date-fns": "^2.29.3",
|
||||||
"phoenix": "file:../deps/phoenix",
|
"phoenix": "file:../deps/phoenix",
|
||||||
"phoenix_html": "file:../deps/phoenix_html",
|
"phoenix_html": "file:../deps/phoenix_html",
|
||||||
"phoenix_live_view": "file:../deps/phoenix_live_view",
|
"phoenix_live_view": "file:../deps/phoenix_live_view",
|
||||||
"topbar": "^1.0.1"
|
"topbar": "^2.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.17.10",
|
"@babel/core": "^7.21.3",
|
||||||
"@babel/preset-env": "^7.17.10",
|
"@babel/preset-env": "^7.20.2",
|
||||||
"autoprefixer": "^10.4.7",
|
"autoprefixer": "^10.4.14",
|
||||||
"babel-loader": "^8.2.5",
|
"babel-loader": "^9.1.2",
|
||||||
"copy-webpack-plugin": "^10.2.4",
|
"copy-webpack-plugin": "^11.0.0",
|
||||||
"css-loader": "^6.7.1",
|
"css-loader": "^6.7.3",
|
||||||
"css-minimizer-webpack-plugin": "^3.4.1",
|
"css-minimizer-webpack-plugin": "^4.2.2",
|
||||||
"file-loader": "^6.2.0",
|
"file-loader": "^6.2.0",
|
||||||
"mini-css-extract-plugin": "^2.6.0",
|
"mini-css-extract-plugin": "^2.7.5",
|
||||||
"postcss": "^8.4.13",
|
"npm-check-updates": "^16.7.12",
|
||||||
"postcss-import": "^14.1.0",
|
"postcss": "^8.4.21",
|
||||||
"postcss-loader": "^6.2.1",
|
"postcss-import": "^15.1.0",
|
||||||
"postcss-preset-env": "^7.5.0",
|
"postcss-loader": "^7.1.0",
|
||||||
"sass": "^1.56.0",
|
"postcss-preset-env": "^8.0.1",
|
||||||
"sass-loader": "^12.6.0",
|
"sass": "^1.59.3",
|
||||||
|
"sass-loader": "^13.2.1",
|
||||||
"standard": "^17.0.0",
|
"standard": "^17.0.0",
|
||||||
"tailwindcss": "^3.0.24",
|
"tailwindcss": "^3.2.7",
|
||||||
"terser-webpack-plugin": "^5.3.1",
|
"terser-webpack-plugin": "^5.3.7",
|
||||||
"webpack": "^5.72.0",
|
"webpack": "^5.76.2",
|
||||||
"webpack-cli": "^4.9.2",
|
"webpack-cli": "^5.0.1",
|
||||||
"webpack-dev-server": "^4.9.0"
|
"webpack-dev-server": "^4.13.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
12
lib/cannery/comparable_date.ex
Normal file
12
lib/cannery/comparable_date.ex
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
defmodule Cannery.ComparableDate do
|
||||||
|
@moduledoc """
|
||||||
|
A custom `Date` module that provides a `compare/2` function that is comparable
|
||||||
|
with nil values
|
||||||
|
"""
|
||||||
|
|
||||||
|
@spec compare(Date.t() | any(), Date.t() | any()) :: :lt | :gt | :eq
|
||||||
|
def compare(%Date{} = date_1, %Date{} = date_2), do: Date.compare(date_1, date_2)
|
||||||
|
def compare(%Date{}, _date_2), do: :lt
|
||||||
|
def compare(_date_1, %Date{}), do: :gt
|
||||||
|
def compare(_date_1, _date_2), do: :eq
|
||||||
|
end
|
15
lib/cannery/comparable_datetime.ex
Normal file
15
lib/cannery/comparable_datetime.ex
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
defmodule Cannery.ComparableDateTime do
|
||||||
|
@moduledoc """
|
||||||
|
A custom `DateTime` module that provides a `compare/2` function that is
|
||||||
|
comparable with nil values
|
||||||
|
"""
|
||||||
|
|
||||||
|
@spec compare(DateTime.t() | any(), DateTime.t() | any()) :: :lt | :gt | :eq
|
||||||
|
def compare(%DateTime{} = datetime_1, %DateTime{} = datetime_2) do
|
||||||
|
DateTime.compare(datetime_1, datetime_2)
|
||||||
|
end
|
||||||
|
|
||||||
|
def compare(%DateTime{}, _datetime_2), do: :lt
|
||||||
|
def compare(_datetime_1, %DateTime{}), do: :gt
|
||||||
|
def compare(_datetime_1, _datetime_2), do: :eq
|
||||||
|
end
|
@ -37,9 +37,11 @@
|
|||||||
|
|
||||||
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
|
||||||
<%= textarea(f, :notes,
|
<%= textarea(f, :notes,
|
||||||
|
id: "add-shot-group-form-notes",
|
||||||
class: "input input-primary col-span-2",
|
class: "input input-primary col-span-2",
|
||||||
placeholder: "Really great weather",
|
placeholder: gettext("Really great weather"),
|
||||||
phx_hook: "MaintainAttrs"
|
phx_hook: "MaintainAttrs",
|
||||||
|
phx_update: "ignore"
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :notes, "col-span-3") %>
|
<%= error_tag(f, :notes, "col-span-3") %>
|
||||||
|
|
||||||
|
@ -3,7 +3,8 @@ defmodule CanneryWeb.Components.AmmoGroupTableComponent do
|
|||||||
A component that displays a list of ammo groups
|
A component that displays a list of ammo groups
|
||||||
"""
|
"""
|
||||||
use CanneryWeb, :live_component
|
use CanneryWeb, :live_component
|
||||||
alias Cannery.{Accounts.User, ActivityLog, Ammo, Ammo.AmmoGroup, Containers}
|
alias Cannery.{Accounts.User, Ammo.AmmoGroup, ComparableDate}
|
||||||
|
alias Cannery.{ActivityLog, Ammo, Containers}
|
||||||
alias Ecto.UUID
|
alias Ecto.UUID
|
||||||
alias Phoenix.LiveView.{Rendered, Socket}
|
alias Phoenix.LiveView.{Rendered, Socket}
|
||||||
|
|
||||||
@ -50,12 +51,12 @@ defmodule CanneryWeb.Components.AmmoGroupTableComponent do
|
|||||||
if actions == [] do
|
if actions == [] do
|
||||||
[]
|
[]
|
||||||
else
|
else
|
||||||
[%{label: nil, key: :actions, sortable: false}]
|
[%{label: gettext("Actions"), key: :actions, sortable: false}]
|
||||||
end
|
end
|
||||||
|
|
||||||
columns = [
|
columns = [
|
||||||
%{label: gettext("Purchased on"), key: :purchased_on, type: Date},
|
%{label: gettext("Purchased on"), key: :purchased_on, type: ComparableDate},
|
||||||
%{label: gettext("Last used on"), key: :used_up_on, type: Date} | columns
|
%{label: gettext("Last used on"), key: :used_up_on, type: ComparableDate} | columns
|
||||||
]
|
]
|
||||||
|
|
||||||
columns =
|
columns =
|
||||||
|
@ -118,7 +118,7 @@ defmodule CanneryWeb.Components.AmmoTypeTableComponent do
|
|||||||
)
|
)
|
||||||
|> Kernel.++([
|
|> Kernel.++([
|
||||||
%{label: gettext("Average CPR"), key: :avg_price_paid, type: :avg_price_paid},
|
%{label: gettext("Average CPR"), key: :avg_price_paid, type: :avg_price_paid},
|
||||||
%{label: nil, key: "actions", type: :actions, sortable: false}
|
%{label: gettext("Actions"), key: "actions", type: :actions, sortable: false}
|
||||||
])
|
])
|
||||||
|
|
||||||
round_counts = ammo_types |> Ammo.get_round_count_for_ammo_types(current_user)
|
round_counts = ammo_types |> Ammo.get_round_count_for_ammo_types(current_user)
|
||||||
|
@ -64,7 +64,7 @@ defmodule CanneryWeb.Components.ContainerTableComponent do
|
|||||||
%{label: gettext("Packs"), key: :packs, type: :integer},
|
%{label: gettext("Packs"), key: :packs, type: :integer},
|
||||||
%{label: gettext("Rounds"), key: :rounds, type: :integer},
|
%{label: gettext("Rounds"), key: :rounds, type: :integer},
|
||||||
%{label: gettext("Tags"), key: :tags, type: :tags},
|
%{label: gettext("Tags"), key: :tags, type: :tags},
|
||||||
%{label: nil, key: :actions, sortable: false, type: :actions}
|
%{label: gettext("Actions"), key: :actions, sortable: false, type: :actions}
|
||||||
])
|
])
|
||||||
|
|
||||||
extra_data = %{
|
extra_data = %{
|
||||||
|
@ -127,7 +127,7 @@ defmodule CanneryWeb.CoreComponents do
|
|||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Phoenix.Component for a <date> element that renders the Date in the user's
|
Phoenix.Component for a <date> element that renders the Date in the user's
|
||||||
local timezone with Alpine.js
|
local timezone
|
||||||
"""
|
"""
|
||||||
def date(assigns)
|
def date(assigns)
|
||||||
|
|
||||||
@ -136,7 +136,7 @@ defmodule CanneryWeb.CoreComponents do
|
|||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Phoenix.Component for a <time> element that renders the naivedatetime in the
|
Phoenix.Component for a <time> element that renders the naivedatetime in the
|
||||||
user's local timezone with Alpine.js
|
user's local timezone
|
||||||
"""
|
"""
|
||||||
def datetime(assigns)
|
def datetime(assigns)
|
||||||
|
|
||||||
|
@ -17,7 +17,10 @@
|
|||||||
<%= if @ammo_group.count == 0, do: gettext("Empty"), else: @ammo_group.count %>
|
<%= if @ammo_group.count == 0, do: gettext("Empty"), else: @ammo_group.count %>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span :if={@original_count != @ammo_group.count} class="rounded-lg title text-lg">
|
<span
|
||||||
|
:if={@original_count && @original_count != @ammo_group.count}
|
||||||
|
class="rounded-lg title text-lg"
|
||||||
|
>
|
||||||
<%= gettext("Original Count:") %>
|
<%= gettext("Original Count:") %>
|
||||||
<%= @original_count %>
|
<%= @original_count %>
|
||||||
</span>
|
</span>
|
||||||
@ -27,7 +30,7 @@
|
|||||||
<%= @ammo_group.notes %>
|
<%= @ammo_group.notes %>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<span class="rounded-lg title text-lg">
|
<span :if={@ammo_group.purchased_on} class="rounded-lg title text-lg">
|
||||||
<%= gettext("Purchased on:") %>
|
<%= gettext("Purchased on:") %>
|
||||||
<.date id={"#{@ammo_group.id}-purchased-on"} date={@ammo_group.purchased_on} />
|
<.date id={"#{@ammo_group.id}-purchased-on"} date={@ammo_group.purchased_on} />
|
||||||
</span>
|
</span>
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
<time :if={@date} id={@id} datetime={@date |> Date.to_iso8601(:extended)} x-data={~s<{
|
<time :if={@date} id={@id} datetime={Date.to_iso8601(@date, :extended)} phx-hook="Date">
|
||||||
date:
|
<%= Date.to_iso8601(@date, :extended) %>
|
||||||
Intl.DateTimeFormat([], {timeZone: 'Etc/UTC', dateStyle: 'short'})
|
|
||||||
.format(new Date("#{Date.to_iso8601(@date, :extended)}"))
|
|
||||||
}>} x-text="date">
|
|
||||||
<%= @date |> Date.to_iso8601(:extended) %>
|
|
||||||
</time>
|
</time>
|
||||||
|
@ -1,7 +1,3 @@
|
|||||||
<time :if={@datetime} id={@id} datetime={cast_datetime(@datetime)} x-data={~s/{
|
<time :if={@datetime} id={@id} datetime={cast_datetime(@datetime)} phx-hook="DateTime">
|
||||||
datetime:
|
|
||||||
Intl.DateTimeFormat([], {dateStyle: 'short', timeStyle: 'long'})
|
|
||||||
.format(new Date("#{cast_datetime(@datetime)}"))
|
|
||||||
}/} x-text="datetime">
|
|
||||||
<%= cast_datetime(@datetime) %>
|
<%= cast_datetime(@datetime) %>
|
||||||
</time>
|
</time>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<nav role="navigation" class="mb-8 px-8 py-4 w-full bg-primary-400">
|
<nav role="navigation" class="mb-8 px-8 py-4 w-full bg-primary-500">
|
||||||
<div class="flex flex-col sm:flex-row justify-between items-center">
|
<div class="flex flex-col sm:flex-row justify-between items-center">
|
||||||
<div class="mb-4 sm:mb-0 sm:mr-8 flex flex-row justify-start items-center space-x-2">
|
<div class="mb-4 sm:mb-0 sm:mr-8 flex flex-row justify-start items-center space-x-2">
|
||||||
<.link
|
<.link
|
||||||
@ -87,6 +87,7 @@
|
|||||||
href={Routes.user_session_path(Endpoint, :delete)}
|
href={Routes.user_session_path(Endpoint, :delete)}
|
||||||
method="delete"
|
method="delete"
|
||||||
data-confirm={dgettext("prompts", "Are you sure you want to log out?")}
|
data-confirm={dgettext("prompts", "Are you sure you want to log out?")}
|
||||||
|
aria-label={gettext("Log out")}
|
||||||
>
|
>
|
||||||
<i class="fas fa-sign-out-alt"></i>
|
<i class="fas fa-sign-out-alt"></i>
|
||||||
</.link>
|
</.link>
|
||||||
@ -101,6 +102,7 @@
|
|||||||
<.link
|
<.link
|
||||||
navigate={Routes.live_dashboard_path(Endpoint, :home)}
|
navigate={Routes.live_dashboard_path(Endpoint, :home)}
|
||||||
class="text-white hover:underline"
|
class="text-white hover:underline"
|
||||||
|
aria-label={gettext("Live Dashboard")}
|
||||||
>
|
>
|
||||||
<i class="fas fa-gauge"></i>
|
<i class="fas fa-gauge"></i>
|
||||||
</.link>
|
</.link>
|
||||||
|
@ -67,7 +67,7 @@ defmodule CanneryWeb.Components.MoveAmmoGroupComponent do
|
|||||||
%{label: gettext("Container"), key: :name},
|
%{label: gettext("Container"), key: :name},
|
||||||
%{label: gettext("Type"), key: :type},
|
%{label: gettext("Type"), key: :type},
|
||||||
%{label: gettext("Location"), key: :location},
|
%{label: gettext("Location"), key: :location},
|
||||||
%{label: nil, key: :actions, sortable: false}
|
%{label: gettext("Actions"), key: :actions, sortable: false}
|
||||||
]
|
]
|
||||||
|
|
||||||
rows = containers |> get_rows_for_containers(assigns, columns)
|
rows = containers |> get_rows_for_containers(assigns, columns)
|
||||||
|
@ -3,7 +3,7 @@ defmodule CanneryWeb.Components.ShotGroupTableComponent do
|
|||||||
A component that displays a list of shot groups
|
A component that displays a list of shot groups
|
||||||
"""
|
"""
|
||||||
use CanneryWeb, :live_component
|
use CanneryWeb, :live_component
|
||||||
alias Cannery.{Accounts.User, ActivityLog.ShotGroup, Ammo}
|
alias Cannery.{Accounts.User, ActivityLog.ShotGroup, Ammo, ComparableDate}
|
||||||
alias Ecto.UUID
|
alias Ecto.UUID
|
||||||
alias Phoenix.LiveView.{Rendered, Socket}
|
alias Phoenix.LiveView.{Rendered, Socket}
|
||||||
|
|
||||||
@ -41,8 +41,8 @@ defmodule CanneryWeb.Components.ShotGroupTableComponent do
|
|||||||
%{label: gettext("Ammo"), key: :name},
|
%{label: gettext("Ammo"), key: :name},
|
||||||
%{label: gettext("Rounds shot"), key: :count},
|
%{label: gettext("Rounds shot"), key: :count},
|
||||||
%{label: gettext("Notes"), key: :notes},
|
%{label: gettext("Notes"), key: :notes},
|
||||||
%{label: gettext("Date"), key: :date, type: Date},
|
%{label: gettext("Date"), key: :date, type: ComparableDate},
|
||||||
%{label: nil, key: :actions, sortable: false}
|
%{label: gettext("Actions"), key: :actions, sortable: false}
|
||||||
]
|
]
|
||||||
|
|
||||||
ammo_groups =
|
ammo_groups =
|
||||||
|
@ -49,8 +49,10 @@
|
|||||||
|
|
||||||
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
|
||||||
<%= textarea(f, :notes,
|
<%= textarea(f, :notes,
|
||||||
|
id: "ammo-group-form-notes",
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
phx_hook: "MaintainAttrs"
|
phx_hook: "MaintainAttrs",
|
||||||
|
phx_update: "ignore"
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :notes, "col-span-3 text-center") %>
|
<%= error_tag(f, :notes, "col-span-3 text-center") %>
|
||||||
|
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
<%= text_input(f, :search_term,
|
<%= text_input(f, :search_term,
|
||||||
class: "input input-primary",
|
class: "input input-primary",
|
||||||
value: @search,
|
value: @search,
|
||||||
|
role: "search",
|
||||||
phx_debounce: 300,
|
phx_debounce: 300,
|
||||||
placeholder: gettext("Search ammo")
|
placeholder: gettext("Search ammo")
|
||||||
) %>
|
) %>
|
||||||
|
@ -6,7 +6,7 @@ defmodule CanneryWeb.AmmoGroupLive.Show do
|
|||||||
use CanneryWeb, :live_view
|
use CanneryWeb, :live_view
|
||||||
alias Cannery.{ActivityLog, ActivityLog.ShotGroup}
|
alias Cannery.{ActivityLog, ActivityLog.ShotGroup}
|
||||||
alias Cannery.{Ammo, Ammo.AmmoGroup}
|
alias Cannery.{Ammo, Ammo.AmmoGroup}
|
||||||
alias Cannery.Containers
|
alias Cannery.{ComparableDate, Containers}
|
||||||
alias CanneryWeb.Endpoint
|
alias CanneryWeb.Endpoint
|
||||||
alias Phoenix.LiveView.Socket
|
alias Phoenix.LiveView.Socket
|
||||||
|
|
||||||
@ -90,8 +90,8 @@ defmodule CanneryWeb.AmmoGroupLive.Show do
|
|||||||
columns = [
|
columns = [
|
||||||
%{label: gettext("Rounds shot"), key: :count},
|
%{label: gettext("Rounds shot"), key: :count},
|
||||||
%{label: gettext("Notes"), key: :notes},
|
%{label: gettext("Notes"), key: :notes},
|
||||||
%{label: gettext("Date"), key: :date, type: Date},
|
%{label: gettext("Date"), key: :date, type: ComparableDate},
|
||||||
%{label: nil, key: :actions, sortable: false}
|
%{label: gettext("Actions"), key: :actions, sortable: false}
|
||||||
]
|
]
|
||||||
|
|
||||||
shot_groups = ActivityLog.list_shot_groups_for_ammo_group(ammo_group, current_user)
|
shot_groups = ActivityLog.list_shot_groups_for_ammo_group(ammo_group, current_user)
|
||||||
|
@ -24,8 +24,10 @@
|
|||||||
|
|
||||||
<%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
|
||||||
<%= textarea(f, :desc,
|
<%= textarea(f, :desc,
|
||||||
|
id: "ammo-type-form-desc",
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
phx_hook: "MaintainAttrs"
|
phx_hook: "MaintainAttrs",
|
||||||
|
phx_update: "ignore"
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :desc, "col-span-3 text-center") %>
|
<%= error_tag(f, :desc, "col-span-3 text-center") %>
|
||||||
|
|
||||||
@ -52,14 +54,14 @@
|
|||||||
<%= label(f, :cartridge, gettext("Cartridge"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :cartridge, gettext("Cartridge"), class: "title text-lg text-primary-600") %>
|
||||||
<%= text_input(f, :cartridge,
|
<%= text_input(f, :cartridge,
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
placeholder: "5.56x46mm NATO"
|
placeholder: gettext("5.56x46mm NATO")
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :cartridge, "col-span-3 text-center") %>
|
<%= error_tag(f, :cartridge, "col-span-3 text-center") %>
|
||||||
|
|
||||||
<%= label(f, :caliber, gettext("Caliber"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :caliber, gettext("Caliber"), class: "title text-lg text-primary-600") %>
|
||||||
<%= text_input(f, :caliber,
|
<%= text_input(f, :caliber,
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
placeholder: ".223"
|
placeholder: gettext(".223")
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :caliber, "col-span-3 text-center") %>
|
<%= error_tag(f, :caliber, "col-span-3 text-center") %>
|
||||||
|
|
||||||
@ -112,21 +114,21 @@
|
|||||||
<%= label(f, :pressure, gettext("Pressure"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :pressure, gettext("Pressure"), class: "title text-lg text-primary-600") %>
|
||||||
<%= text_input(f, :pressure,
|
<%= text_input(f, :pressure,
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
placeholder: "+P"
|
placeholder: gettext("+P")
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :pressure, "col-span-3 text-center") %>
|
<%= error_tag(f, :pressure, "col-span-3 text-center") %>
|
||||||
|
|
||||||
<%= label(f, :primer_type, gettext("Primer type"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :primer_type, gettext("Primer type"), class: "title text-lg text-primary-600") %>
|
||||||
<%= text_input(f, :primer_type,
|
<%= text_input(f, :primer_type,
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
placeholder: "Boxer"
|
placeholder: gettext("Boxer")
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :primer_type, "col-span-3 text-center") %>
|
<%= error_tag(f, :primer_type, "col-span-3 text-center") %>
|
||||||
|
|
||||||
<%= label(f, :firing_type, gettext("Firing type"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :firing_type, gettext("Firing type"), class: "title text-lg text-primary-600") %>
|
||||||
<%= text_input(f, :firing_type,
|
<%= text_input(f, :firing_type,
|
||||||
class: "text-center col-span-2 input input-primary",
|
class: "text-center col-span-2 input input-primary",
|
||||||
placeholder: "Centerfire"
|
placeholder: gettext("Centerfire")
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :firing_type, "col-span-3 text-center") %>
|
<%= error_tag(f, :firing_type, "col-span-3 text-center") %>
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
<%= text_input(f, :search_term,
|
<%= text_input(f, :search_term,
|
||||||
class: "input input-primary",
|
class: "input input-primary",
|
||||||
value: @search,
|
value: @search,
|
||||||
|
role: "search",
|
||||||
phx_debounce: 300,
|
phx_debounce: 300,
|
||||||
placeholder: gettext("Search catalog")
|
placeholder: gettext("Search catalog")
|
||||||
) %>
|
) %>
|
||||||
|
@ -92,25 +92,40 @@ defmodule CanneryWeb.AmmoTypeLive.Show do
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
ammo_groups = ammo_type |> Ammo.list_ammo_groups_for_type(current_user, show_used)
|
ammo_groups = ammo_type |> Ammo.list_ammo_groups_for_type(current_user, show_used)
|
||||||
original_counts = ammo_groups |> Ammo.get_original_counts(current_user)
|
|
||||||
cprs = ammo_groups |> Ammo.get_cprs(current_user)
|
[
|
||||||
historical_packs_count = ammo_type |> Ammo.get_ammo_groups_count_for_type(current_user, true)
|
original_counts,
|
||||||
last_used_dates = ammo_groups |> ActivityLog.get_last_used_dates(current_user)
|
used_packs_count,
|
||||||
|
historical_packs_count,
|
||||||
|
used_rounds,
|
||||||
|
historical_round_count
|
||||||
|
] =
|
||||||
|
if show_used do
|
||||||
|
[
|
||||||
|
ammo_groups |> Ammo.get_original_counts(current_user),
|
||||||
|
ammo_type |> Ammo.get_used_ammo_groups_count_for_type(current_user),
|
||||||
|
ammo_type |> Ammo.get_ammo_groups_count_for_type(current_user, true),
|
||||||
|
ammo_type |> ActivityLog.get_used_count_for_ammo_type(current_user),
|
||||||
|
ammo_type |> Ammo.get_historical_count_for_ammo_type(current_user)
|
||||||
|
]
|
||||||
|
else
|
||||||
|
[nil, nil, nil, nil, nil]
|
||||||
|
end
|
||||||
|
|
||||||
socket
|
socket
|
||||||
|> assign(
|
|> assign(
|
||||||
page_title: page_title(live_action, ammo_type),
|
page_title: page_title(live_action, ammo_type),
|
||||||
ammo_type: ammo_type,
|
ammo_type: ammo_type,
|
||||||
ammo_groups: ammo_groups,
|
ammo_groups: ammo_groups,
|
||||||
original_counts: original_counts,
|
cprs: ammo_groups |> Ammo.get_cprs(current_user),
|
||||||
cprs: cprs,
|
last_used_dates: ammo_groups |> ActivityLog.get_last_used_dates(current_user),
|
||||||
last_used_dates: last_used_dates,
|
|
||||||
avg_cost_per_round: ammo_type |> Ammo.get_average_cost_for_ammo_type(current_user),
|
avg_cost_per_round: ammo_type |> Ammo.get_average_cost_for_ammo_type(current_user),
|
||||||
rounds: ammo_type |> Ammo.get_round_count_for_ammo_type(current_user),
|
rounds: ammo_type |> Ammo.get_round_count_for_ammo_type(current_user),
|
||||||
used_rounds: ammo_type |> ActivityLog.get_used_count_for_ammo_type(current_user),
|
original_counts: original_counts,
|
||||||
historical_round_count: ammo_type |> Ammo.get_historical_count_for_ammo_type(current_user),
|
used_rounds: used_rounds,
|
||||||
|
historical_round_count: historical_round_count,
|
||||||
packs_count: ammo_type |> Ammo.get_ammo_groups_count_for_type(current_user),
|
packs_count: ammo_type |> Ammo.get_ammo_groups_count_for_type(current_user),
|
||||||
used_packs_count: ammo_type |> Ammo.get_used_ammo_groups_count_for_type(current_user),
|
used_packs_count: used_packs_count,
|
||||||
historical_packs_count: historical_packs_count,
|
historical_packs_count: historical_packs_count,
|
||||||
fields_list: @fields_list,
|
fields_list: @fields_list,
|
||||||
fields_to_display: fields_to_display
|
fields_to_display: fields_to_display
|
||||||
|
@ -74,6 +74,7 @@
|
|||||||
<%= @rounds %>
|
<%= @rounds %>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<%= if @show_used do %>
|
||||||
<h3 class="title text-lg">
|
<h3 class="title text-lg">
|
||||||
<%= gettext("Used rounds:") %>
|
<%= gettext("Used rounds:") %>
|
||||||
</h3>
|
</h3>
|
||||||
@ -89,11 +90,8 @@
|
|||||||
<span class="text-primary-600">
|
<span class="text-primary-600">
|
||||||
<%= @historical_round_count %>
|
<%= @historical_round_count %>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
<% end %>
|
||||||
|
|
||||||
<hr class="hr" />
|
|
||||||
|
|
||||||
<div class="grid sm:grid-cols-2 gap-4 text-center justify-center items-center">
|
|
||||||
<h3 class="title text-lg">
|
<h3 class="title text-lg">
|
||||||
<%= gettext("Packs:") %>
|
<%= gettext("Packs:") %>
|
||||||
</h3>
|
</h3>
|
||||||
@ -102,6 +100,7 @@
|
|||||||
<%= @packs_count %>
|
<%= @packs_count %>
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<%= if @show_used do %>
|
||||||
<h3 class="title text-lg">
|
<h3 class="title text-lg">
|
||||||
<%= gettext("Used packs:") %>
|
<%= gettext("Used packs:") %>
|
||||||
</h3>
|
</h3>
|
||||||
@ -117,11 +116,8 @@
|
|||||||
<span class="text-primary-600">
|
<span class="text-primary-600">
|
||||||
<%= @historical_packs_count %>
|
<%= @historical_packs_count %>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
<% end %>
|
||||||
|
|
||||||
<hr class="hr" />
|
|
||||||
|
|
||||||
<div class="grid sm:grid-cols-2 gap-4 text-center justify-center items-center">
|
|
||||||
<h3 class="title text-lg">
|
<h3 class="title text-lg">
|
||||||
<%= gettext("Added on:") %>
|
<%= gettext("Added on:") %>
|
||||||
</h3>
|
</h3>
|
||||||
@ -189,7 +185,7 @@
|
|||||||
<.ammo_group_card
|
<.ammo_group_card
|
||||||
:for={%{id: ammo_group_id} = ammo_group <- @ammo_groups}
|
:for={%{id: ammo_group_id} = ammo_group <- @ammo_groups}
|
||||||
ammo_group={ammo_group}
|
ammo_group={ammo_group}
|
||||||
original_count={Map.fetch!(@original_counts, ammo_group_id)}
|
original_count={@original_counts && Map.fetch!(@original_counts, ammo_group_id)}
|
||||||
cpr={Map.get(@cprs, ammo_group_id)}
|
cpr={Map.get(@cprs, ammo_group_id)}
|
||||||
last_used_date={Map.get(@last_used_dates, ammo_group_id)}
|
last_used_date={Map.get(@last_used_dates, ammo_group_id)}
|
||||||
current_user={@current_user}
|
current_user={@current_user}
|
||||||
|
@ -27,9 +27,11 @@
|
|||||||
|
|
||||||
<%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
|
||||||
<%= textarea(f, :desc,
|
<%= textarea(f, :desc,
|
||||||
|
id: "container-form-desc",
|
||||||
class: "input input-primary col-span-2",
|
class: "input input-primary col-span-2",
|
||||||
|
placeholder: gettext("Metal ammo can with the anime girl sticker"),
|
||||||
phx_hook: "MaintainAttrs",
|
phx_hook: "MaintainAttrs",
|
||||||
placeholder: gettext("Metal ammo can with the anime girl sticker")
|
phx_update: "ignore"
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :desc, "col-span-3 text-center") %>
|
<%= error_tag(f, :desc, "col-span-3 text-center") %>
|
||||||
|
|
||||||
@ -42,9 +44,11 @@
|
|||||||
|
|
||||||
<%= label(f, :location, gettext("Location"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :location, gettext("Location"), class: "title text-lg text-primary-600") %>
|
||||||
<%= textarea(f, :location,
|
<%= textarea(f, :location,
|
||||||
|
id: "container-form-location",
|
||||||
class: "input input-primary col-span-2",
|
class: "input input-primary col-span-2",
|
||||||
|
placeholder: gettext("On the bookshelf"),
|
||||||
phx_hook: "MaintainAttrs",
|
phx_hook: "MaintainAttrs",
|
||||||
placeholder: gettext("On the bookshelf")
|
phx_update: "ignore"
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :location, "col-span-3 text-center") %>
|
<%= error_tag(f, :location, "col-span-3 text-center") %>
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
<%= text_input(f, :search_term,
|
<%= text_input(f, :search_term,
|
||||||
class: "input input-primary",
|
class: "input input-primary",
|
||||||
value: @search,
|
value: @search,
|
||||||
|
role: "search",
|
||||||
phx_debounce: 300,
|
phx_debounce: 300,
|
||||||
placeholder: gettext("Search containers")
|
placeholder: gettext("Search containers")
|
||||||
) %>
|
) %>
|
||||||
|
@ -6,21 +6,11 @@ defmodule CanneryWeb.InviteLive.Index do
|
|||||||
use CanneryWeb, :live_view
|
use CanneryWeb, :live_view
|
||||||
alias Cannery.Accounts
|
alias Cannery.Accounts
|
||||||
alias Cannery.Accounts.{Invite, Invites}
|
alias Cannery.Accounts.{Invite, Invites}
|
||||||
alias CanneryWeb.HomeLive
|
|
||||||
alias Phoenix.LiveView.JS
|
alias Phoenix.LiveView.JS
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def mount(_params, _session, %{assigns: %{current_user: current_user}} = socket) do
|
def mount(_params, _session, socket) do
|
||||||
socket =
|
{:ok, socket |> display_invites()}
|
||||||
if current_user |> Map.get(:role) == :admin do
|
|
||||||
socket |> display_invites()
|
|
||||||
else
|
|
||||||
prompt = dgettext("errors", "You are not authorized to view this page")
|
|
||||||
return_to = Routes.live_path(Endpoint, HomeLive)
|
|
||||||
socket |> put_flash(:error, prompt) |> push_redirect(to: return_to)
|
|
||||||
end
|
|
||||||
|
|
||||||
{:ok, socket}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
|
@ -29,8 +29,11 @@
|
|||||||
|
|
||||||
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
|
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
|
||||||
<%= textarea(f, :notes,
|
<%= textarea(f, :notes,
|
||||||
|
id: "shot-group-form-notes",
|
||||||
class: "input input-primary col-span-2",
|
class: "input input-primary col-span-2",
|
||||||
phx_hook: "MaintainAttrs"
|
placeholder: gettext("Really great weather"),
|
||||||
|
phx_hook: "MaintainAttrs",
|
||||||
|
phx_update: "ignore"
|
||||||
) %>
|
) %>
|
||||||
<%= error_tag(f, :notes, "col-span-3") %>
|
<%= error_tag(f, :notes, "col-span-3") %>
|
||||||
|
|
||||||
|
@ -86,6 +86,7 @@
|
|||||||
<%= text_input(f, :search_term,
|
<%= text_input(f, :search_term,
|
||||||
class: "input input-primary",
|
class: "input input-primary",
|
||||||
value: @search,
|
value: @search,
|
||||||
|
role: "search",
|
||||||
phx_debounce: 300,
|
phx_debounce: 300,
|
||||||
placeholder: gettext("Search shot records")
|
placeholder: gettext("Search shot records")
|
||||||
) %>
|
) %>
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
<%= text_input(f, :search_term,
|
<%= text_input(f, :search_term,
|
||||||
class: "input input-primary",
|
class: "input input-primary",
|
||||||
value: @search,
|
value: @search,
|
||||||
|
role: "search",
|
||||||
phx_debounce: 300,
|
phx_debounce: 300,
|
||||||
placeholder: gettext("Search tags")
|
placeholder: gettext("Search tags")
|
||||||
) %>
|
) %>
|
||||||
|
@ -107,9 +107,9 @@
|
|||||||
action={Routes.user_settings_path(@conn, :update)}
|
action={Routes.user_settings_path(@conn, :update)}
|
||||||
class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center"
|
class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center"
|
||||||
>
|
>
|
||||||
<h3 class="title text-primary-600 text-lg text-center col-span-3">
|
<%= label(f, :locale, dgettext("actions", "Change Language"),
|
||||||
<%= dgettext("actions", "Change Language") %>
|
class: "title text-primary-600 text-lg text-center col-span-3"
|
||||||
</h3>
|
) %>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
:if={@locale_changeset.action && not @locale_changeset.valid?()}
|
:if={@locale_changeset.action && not @locale_changeset.valid?()}
|
||||||
|
2
mix.exs
2
mix.exs
@ -4,7 +4,7 @@ defmodule Cannery.MixProject do
|
|||||||
def project do
|
def project do
|
||||||
[
|
[
|
||||||
app: :cannery,
|
app: :cannery,
|
||||||
version: "0.8.4",
|
version: "0.8.5",
|
||||||
elixir: "1.14.1",
|
elixir: "1.14.1",
|
||||||
elixirc_paths: elixirc_paths(Mix.env()),
|
elixirc_paths: elixirc_paths(Mix.env()),
|
||||||
compilers: Mix.compilers(),
|
compilers: Mix.compilers(),
|
||||||
|
@ -66,7 +66,7 @@ msgstr ""
|
|||||||
msgid "Invite someone new!"
|
msgid "Invite someone new!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:122
|
#: lib/cannery_web/components/core_components/topbar.html.heex:124
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
||||||
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
||||||
@ -97,7 +97,7 @@ msgstr ""
|
|||||||
msgid "New Tag"
|
msgid "New Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:114
|
#: lib/cannery_web/components/core_components/topbar.html.heex:116
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
||||||
@ -120,12 +120,12 @@ msgstr ""
|
|||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
|
#: lib/cannery_web/live/container_live/form_component.html.heex:55
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
|
#: lib/cannery_web/live/range_live/form_component.html.heex:44
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -156,7 +156,7 @@ msgstr ""
|
|||||||
msgid "Why not get some ready to shoot?"
|
msgid "Why not get some ready to shoot?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:45
|
#: lib/cannery_web/live/range_live/index.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@ -183,12 +183,12 @@ msgstr ""
|
|||||||
msgid "add a container first"
|
msgid "add a container first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/templates/user_settings/edit.html.heex:111
|
#: lib/cannery_web/templates/user_settings/edit.html.heex:110
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Change Language"
|
msgid "Change Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -209,7 +209,7 @@ msgid "add an ammo type first"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:120
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:121
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Move ammo"
|
msgid "Move ammo"
|
||||||
@ -237,13 +237,13 @@ msgstr ""
|
|||||||
msgid "Export Data as JSON"
|
msgid "Export Data as JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:84
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{ammo_type_name}"
|
msgid "Clone %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:87
|
#: lib/cannery_web/live/container_live/index.html.heex:88
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:143
|
#: lib/cannery_web/live/container_live/index.html.heex:144
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{container_name}"
|
msgid "Clone %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -253,20 +253,20 @@ msgstr ""
|
|||||||
msgid "Copy invite link for %{invite_name}"
|
msgid "Copy invite link for %{invite_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{ammo_type_name}"
|
msgid "Delete %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:102
|
#: lib/cannery_web/live/container_live/index.html.heex:103
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:158
|
#: lib/cannery_web/live/container_live/index.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:55
|
#: lib/cannery_web/live/container_live/show.html.heex:55
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{container_name}"
|
msgid "Delete %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:65
|
#: lib/cannery_web/live/tag_live/index.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{tag_name}"
|
msgid "Delete %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -277,30 +277,30 @@ msgid "Delete invite for %{invite_name}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:130
|
#: lib/cannery_web/live/range_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete shot record of %{shot_group_count} shots"
|
msgid "Delete shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:74
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:75
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:77
|
#: lib/cannery_web/live/container_live/index.html.heex:78
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:133
|
#: lib/cannery_web/live/container_live/index.html.heex:134
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:42
|
#: lib/cannery_web/live/container_live/show.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{container_name}"
|
msgid "Edit %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:52
|
#: lib/cannery_web/live/tag_live/index.html.heex:53
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{tag_name}"
|
msgid "Edit %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:142
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:143
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
||||||
@ -316,44 +316,44 @@ msgstr ""
|
|||||||
msgid "Edit shot group of %{shot_group_count} shots"
|
msgid "Edit shot group of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:113
|
#: lib/cannery_web/live/range_live/index.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit shot record of %{shot_group_count} shots"
|
msgid "Edit shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:97
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Stage"
|
msgid "Stage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:65
|
#: lib/cannery_web/live/container_live/index.html.heex:66
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:122
|
#: lib/cannery_web/live/container_live/index.html.heex:123
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag %{container_name}"
|
msgid "Tag %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:95
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unstage"
|
msgid "Unstage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:65
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View %{ammo_type_name}"
|
msgid "View %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:154
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:169
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:170
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:130
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View ammo group of %{ammo_group_count} bullets"
|
msgid "View ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -79,7 +79,7 @@ msgstr "Passwort vergessen?"
|
|||||||
msgid "Invite someone new!"
|
msgid "Invite someone new!"
|
||||||
msgstr "Laden Sie jemanden ein!"
|
msgstr "Laden Sie jemanden ein!"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:122
|
#: lib/cannery_web/components/core_components/topbar.html.heex:124
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
||||||
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
||||||
@ -110,7 +110,7 @@ msgstr "Neuer Behälter"
|
|||||||
msgid "New Tag"
|
msgid "New Tag"
|
||||||
msgstr "Neuer Tag"
|
msgstr "Neuer Tag"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:114
|
#: lib/cannery_web/components/core_components/topbar.html.heex:116
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
||||||
@ -133,12 +133,12 @@ msgstr "Bestätigungsmail erneut senden"
|
|||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr "Passwort zurücksetzen"
|
msgstr "Passwort zurücksetzen"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
|
#: lib/cannery_web/live/container_live/form_component.html.heex:55
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
|
#: lib/cannery_web/live/range_live/form_component.html.heex:44
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -169,7 +169,7 @@ msgstr "Munition markieren"
|
|||||||
msgid "Why not get some ready to shoot?"
|
msgid "Why not get some ready to shoot?"
|
||||||
msgstr "Warum nicht einige für den Schießstand auswählen?"
|
msgstr "Warum nicht einige für den Schießstand auswählen?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:45
|
#: lib/cannery_web/live/range_live/index.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@ -196,12 +196,12 @@ msgstr "In die Zwischenablage kopieren"
|
|||||||
msgid "add a container first"
|
msgid "add a container first"
|
||||||
msgstr "Zuerst einen Behälter hinzufügen"
|
msgstr "Zuerst einen Behälter hinzufügen"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Erstellen"
|
msgstr "Erstellen"
|
||||||
|
|
||||||
#: lib/cannery_web/templates/user_settings/edit.html.heex:111
|
#: lib/cannery_web/templates/user_settings/edit.html.heex:110
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Change Language"
|
msgid "Change Language"
|
||||||
msgstr "Sprache wechseln"
|
msgstr "Sprache wechseln"
|
||||||
@ -222,7 +222,7 @@ msgid "add an ammo type first"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:120
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:121
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Move ammo"
|
msgid "Move ammo"
|
||||||
@ -250,13 +250,13 @@ msgstr ""
|
|||||||
msgid "Export Data as JSON"
|
msgid "Export Data as JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:84
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{ammo_type_name}"
|
msgid "Clone %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:87
|
#: lib/cannery_web/live/container_live/index.html.heex:88
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:143
|
#: lib/cannery_web/live/container_live/index.html.heex:144
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{container_name}"
|
msgid "Clone %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -266,20 +266,20 @@ msgstr ""
|
|||||||
msgid "Copy invite link for %{invite_name}"
|
msgid "Copy invite link for %{invite_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{ammo_type_name}"
|
msgid "Delete %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:102
|
#: lib/cannery_web/live/container_live/index.html.heex:103
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:158
|
#: lib/cannery_web/live/container_live/index.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:55
|
#: lib/cannery_web/live/container_live/show.html.heex:55
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{container_name}"
|
msgid "Delete %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:65
|
#: lib/cannery_web/live/tag_live/index.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{tag_name}"
|
msgid "Delete %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -290,30 +290,30 @@ msgid "Delete invite for %{invite_name}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:130
|
#: lib/cannery_web/live/range_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete shot record of %{shot_group_count} shots"
|
msgid "Delete shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:74
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:75
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:77
|
#: lib/cannery_web/live/container_live/index.html.heex:78
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:133
|
#: lib/cannery_web/live/container_live/index.html.heex:134
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:42
|
#: lib/cannery_web/live/container_live/show.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{container_name}"
|
msgid "Edit %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:52
|
#: lib/cannery_web/live/tag_live/index.html.heex:53
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{tag_name}"
|
msgid "Edit %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:142
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:143
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
||||||
@ -329,44 +329,44 @@ msgstr ""
|
|||||||
msgid "Edit shot group of %{shot_group_count} shots"
|
msgid "Edit shot group of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:113
|
#: lib/cannery_web/live/range_live/index.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit shot record of %{shot_group_count} shots"
|
msgid "Edit shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:97
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Stage"
|
msgid "Stage"
|
||||||
msgstr "Munition markieren"
|
msgstr "Munition markieren"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:65
|
#: lib/cannery_web/live/container_live/index.html.heex:66
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:122
|
#: lib/cannery_web/live/container_live/index.html.heex:123
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag %{container_name}"
|
msgid "Tag %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:95
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unstage"
|
msgid "Unstage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:65
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View %{ammo_type_name}"
|
msgid "View %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:154
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:155
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:169
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:170
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:130
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "View ammo group of %{ammo_group_count} bullets"
|
msgid "View ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -38,7 +38,7 @@ msgstr "Admins:"
|
|||||||
msgid "Ammo"
|
msgid "Ammo"
|
||||||
msgstr "Munition"
|
msgstr "Munition"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:89
|
#: lib/cannery_web/components/ammo_group_table_component.ex:90
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo type"
|
msgid "Ammo type"
|
||||||
@ -50,49 +50,49 @@ msgid "Background color"
|
|||||||
msgstr "Hintergrundfarbe"
|
msgstr "Hintergrundfarbe"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Blank"
|
msgid "Blank"
|
||||||
msgstr "Knallpatrone"
|
msgstr "Knallpatrone"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr "Messing"
|
msgstr "Messing"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet core"
|
msgid "Bullet core"
|
||||||
msgstr "Projektilkern"
|
msgstr "Projektilkern"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet type"
|
msgid "Bullet type"
|
||||||
msgstr "Patronenart"
|
msgstr "Patronenart"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Caliber"
|
msgid "Caliber"
|
||||||
msgstr "Kaliber"
|
msgstr "Kaliber"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cartridge"
|
msgid "Cartridge"
|
||||||
msgstr "Patrone"
|
msgstr "Patrone"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Case material"
|
msgid "Case material"
|
||||||
msgstr "Gehäusematerial"
|
msgstr "Gehäusematerial"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
|
#: lib/cannery_web/components/ammo_group_table_component.ex:66
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container"
|
msgid "Container"
|
||||||
msgstr "Behälter"
|
msgstr "Behälter"
|
||||||
@ -106,12 +106,12 @@ msgid "Containers"
|
|||||||
msgstr "Behälter"
|
msgstr "Behälter"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Corrosive"
|
msgid "Corrosive"
|
||||||
msgstr "Korrosiv"
|
msgstr "Korrosiv"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:76
|
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count"
|
msgid "Count"
|
||||||
@ -141,7 +141,7 @@ msgstr "Beschreibung:"
|
|||||||
msgid "Easy to Use:"
|
msgid "Easy to Use:"
|
||||||
msgstr "Einfache Anwendung:"
|
msgstr "Einfache Anwendung:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:33
|
#: lib/cannery_web/live/invite_live/index.ex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Invite"
|
msgid "Edit Invite"
|
||||||
msgstr "Einladung bearbeiten"
|
msgstr "Einladung bearbeiten"
|
||||||
@ -151,24 +151,24 @@ msgstr "Einladung bearbeiten"
|
|||||||
msgid "Edit Tag"
|
msgid "Edit Tag"
|
||||||
msgstr "Tag bearbeiten"
|
msgstr "Tag bearbeiten"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Example bullet type abbreviations"
|
msgid "Example bullet type abbreviations"
|
||||||
msgstr "Beispiel Munitionstyp Abkürzungen"
|
msgstr "Beispiel Munitionstyp Abkürzungen"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "FMJ"
|
msgid "FMJ"
|
||||||
msgstr "VM"
|
msgstr "VM"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Grains"
|
msgid "Grains"
|
||||||
msgstr "Körner"
|
msgstr "Körner"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Incendiary"
|
msgid "Incendiary"
|
||||||
msgstr "Brandmunition"
|
msgstr "Brandmunition"
|
||||||
@ -189,7 +189,7 @@ msgid "Invite Only"
|
|||||||
msgstr "Nur mit Einladung"
|
msgstr "Nur mit Einladung"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:41
|
#: lib/cannery_web/live/invite_live/index.ex:31
|
||||||
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invites"
|
msgid "Invites"
|
||||||
@ -202,7 +202,7 @@ msgstr "Für 60 Tage eingeloggt bleiben"
|
|||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:47
|
#: lib/cannery_web/components/container_table_component.ex:47
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
|
#: lib/cannery_web/live/container_live/form_component.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr "Standort"
|
msgstr "Standort"
|
||||||
@ -213,13 +213,13 @@ msgstr "Standort"
|
|||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr "Standort:"
|
msgstr "Standort:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
|
#: lib/cannery_web/live/container_live/form_component.html.heex:41
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Magazine, Clip, Ammo Box, etc"
|
msgid "Magazine, Clip, Ammo Box, etc"
|
||||||
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
|
msgstr "Magazin, Ladestreifen, Munitionskiste usw."
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Manufacturer"
|
msgid "Manufacturer"
|
||||||
msgstr "Hersteller"
|
msgstr "Hersteller"
|
||||||
@ -256,7 +256,7 @@ msgstr "Neuer Munitionstyp"
|
|||||||
msgid "New Container"
|
msgid "New Container"
|
||||||
msgstr "Neuer Behälter"
|
msgstr "Neuer Behälter"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:37
|
#: lib/cannery_web/live/invite_live/index.ex:27
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Invite"
|
msgid "New Invite"
|
||||||
msgstr "Neue Einladung"
|
msgstr "Neue Einladung"
|
||||||
@ -267,18 +267,18 @@ msgid "New Tag"
|
|||||||
msgstr "Neuer Tag"
|
msgstr "Neuer Tag"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:71
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:72
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo"
|
msgid "No Ammo"
|
||||||
msgstr "Keine Munition"
|
msgstr "Keine Munition"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:167
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:163
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No ammo for this type"
|
msgid "No ammo for this type"
|
||||||
msgstr "Keine Munition dieser Art"
|
msgstr "Keine Munition dieser Art"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:8
|
#: lib/cannery_web/live/container_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:47
|
#: lib/cannery_web/live/container_live/index.html.heex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No containers"
|
msgid "No containers"
|
||||||
msgstr "Kein Behälter"
|
msgstr "Kein Behälter"
|
||||||
@ -290,13 +290,13 @@ msgstr "Keine Einladung"
|
|||||||
|
|
||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:43
|
#: lib/cannery_web/live/tag_live/index.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No tags"
|
msgid "No tags"
|
||||||
msgstr "Keine Tags"
|
msgstr "Keine Tags"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
#: lib/cannery_web/components/ammo_group_table_component.ex:82
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
||||||
@ -305,36 +305,36 @@ msgstr "Keine Tags"
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Bemerkungen"
|
msgstr "Bemerkungen"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:26
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:29
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Notes:"
|
msgid "Notes:"
|
||||||
msgstr "Bemerkungen:"
|
msgstr "Bemerkungen:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
|
#: lib/cannery_web/live/container_live/form_component.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "On the bookshelf"
|
msgid "On the bookshelf"
|
||||||
msgstr "Auf dem Bücherregal"
|
msgstr "Auf dem Bücherregal"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr "Druck"
|
msgstr "Druck"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid"
|
msgid "Price paid"
|
||||||
msgstr "Kaufpreis"
|
msgstr "Kaufpreis"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:41
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid:"
|
msgid "Price paid:"
|
||||||
msgstr "Kaufpreis:"
|
msgstr "Kaufpreis:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Primer type"
|
msgid "Primer type"
|
||||||
msgstr "Zündertyp"
|
msgstr "Zündertyp"
|
||||||
@ -367,7 +367,7 @@ msgstr "Einstellungen"
|
|||||||
msgid "Simple:"
|
msgid "Simple:"
|
||||||
msgstr "Einfach:"
|
msgstr "Einfach:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Steel"
|
msgid "Steel"
|
||||||
msgstr "Stahl"
|
msgstr "Stahl"
|
||||||
@ -402,14 +402,14 @@ msgid "The self-hosted firearm tracker website"
|
|||||||
msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
|
msgstr "Die selbst-gehostete Website zur Verwaltung von Schusswaffen"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracer"
|
msgid "Tracer"
|
||||||
msgstr "Leuchtspur"
|
msgstr "Leuchtspur"
|
||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:48
|
#: lib/cannery_web/components/container_table_component.ex:48
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
|
#: lib/cannery_web/live/container_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Art"
|
msgstr "Art"
|
||||||
@ -440,7 +440,7 @@ msgstr "Ihre Daten bleiben bei Ihnen, Punkt"
|
|||||||
msgid "No tags for this container"
|
msgid "No tags for this container"
|
||||||
msgstr "Keine Tags für diesen Behälter"
|
msgstr "Keine Tags für diesen Behälter"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:72
|
#: lib/cannery_web/components/ammo_group_table_component.ex:73
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Range"
|
msgid "Range"
|
||||||
@ -451,10 +451,10 @@ msgstr "Schießplatz"
|
|||||||
msgid "Range day"
|
msgid "Range day"
|
||||||
msgstr "Range Day"
|
msgstr "Range Day"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
|
#: lib/cannery_web/live/range_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Datum"
|
msgstr "Datum"
|
||||||
@ -487,7 +487,7 @@ msgid "New Shot Records"
|
|||||||
msgstr "Neue Schießkladde"
|
msgstr "Neue Schießkladde"
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:55
|
#: lib/cannery_web/live/range_live/index.html.heex:55
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:97
|
#: lib/cannery_web/live/range_live/index.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No shots recorded"
|
msgid "No shots recorded"
|
||||||
msgstr "Keine Schüsse dokumentiert"
|
msgstr "Keine Schüsse dokumentiert"
|
||||||
@ -526,49 +526,49 @@ msgstr "Kein weiterer Behälter"
|
|||||||
msgid "Shot log"
|
msgid "Shot log"
|
||||||
msgstr "Schießkladde"
|
msgstr "Schießkladde"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:153
|
#: lib/cannery_web/components/ammo_group_table_component.ex:154
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:229
|
#: lib/cannery_web/components/ammo_group_table_component.ex:230
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:42
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:45
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:47
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "$%{amount}"
|
msgid "$%{amount}"
|
||||||
msgstr "$%{amount}"
|
msgstr "$%{amount}"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bimetal"
|
msgid "Bimetal"
|
||||||
msgstr "Bimetall"
|
msgstr "Bimetall"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Jacket type"
|
msgid "Jacket type"
|
||||||
msgstr "Patronenhülse"
|
msgstr "Patronenhülse"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Muzzle velocity"
|
msgid "Muzzle velocity"
|
||||||
msgstr "Mündungsgeschwindigkeit"
|
msgstr "Mündungsgeschwindigkeit"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder grains per charge"
|
msgid "Powder grains per charge"
|
||||||
msgstr "Pulverkörner pro Ladung"
|
msgstr "Pulverkörner pro Ladung"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder type"
|
msgid "Powder type"
|
||||||
msgstr "Pulverart"
|
msgstr "Pulverart"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "UPC"
|
msgid "UPC"
|
||||||
msgstr "UPC"
|
msgstr "UPC"
|
||||||
@ -592,7 +592,7 @@ msgid "New password"
|
|||||||
msgstr "Neues Passwort"
|
msgstr "Neues Passwort"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Firing type"
|
msgid "Firing type"
|
||||||
msgstr "Patronenhülsenform"
|
msgstr "Patronenhülsenform"
|
||||||
@ -621,14 +621,14 @@ msgstr "Editiere %{name} Tags"
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr "Patronen:"
|
msgstr "Patronen:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:226
|
#: lib/cannery_web/components/ammo_group_table_component.ex:227
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:143
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
msgstr "Keine Preisinformationen"
|
msgstr "Keine Preisinformationen"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "% left"
|
msgid "% left"
|
||||||
msgstr "% verbleibend"
|
msgstr "% verbleibend"
|
||||||
@ -689,12 +689,12 @@ msgstr "Passwort zurücksetzen"
|
|||||||
msgid "Record Shots"
|
msgid "Record Shots"
|
||||||
msgstr "Schüsse dokumentieren"
|
msgstr "Schüsse dokumentieren"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copies"
|
msgid "Copies"
|
||||||
msgstr "Kopien"
|
msgstr "Kopien"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:122
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Added on:"
|
msgid "Added on:"
|
||||||
msgstr "Hinzugefügt am:"
|
msgstr "Hinzugefügt am:"
|
||||||
@ -774,7 +774,7 @@ msgid "This ammo is not in a container"
|
|||||||
msgstr "Diese Munitionsgruppe ist nicht in einem Behälter"
|
msgstr "Diese Munitionsgruppe ist nicht in einem Behälter"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:98
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:96
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:23
|
#: lib/cannery_web/live/container_live/show.html.heex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Packs:"
|
msgid "Packs:"
|
||||||
@ -796,20 +796,20 @@ msgstr ""
|
|||||||
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:54
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:57
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Container:"
|
msgid "Container:"
|
||||||
msgstr "Behälter"
|
msgstr "Behälter"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:39
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:149
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
|
#: lib/cannery_web/live/container_live/show.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:187
|
#: lib/cannery_web/components/ammo_group_table_component.ex:188
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -832,8 +832,8 @@ msgstr ""
|
|||||||
msgid "Rounds"
|
msgid "Rounds"
|
||||||
msgstr "Patronen:"
|
msgstr "Patronen:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:159
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:155
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:39
|
#: lib/cannery_web/live/container_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:104
|
#: lib/cannery_web/live/container_live/show.html.heex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View as table"
|
msgid "View as table"
|
||||||
@ -844,7 +844,7 @@ msgstr ""
|
|||||||
msgid "Total ever packs"
|
msgid "Total ever packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:114
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:113
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever packs:"
|
msgid "Total ever packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -854,7 +854,7 @@ msgstr ""
|
|||||||
msgid "Total ever rounds"
|
msgid "Total ever rounds"
|
||||||
msgstr "Summe aller Patronen"
|
msgstr "Summe aller Patronen"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:86
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:87
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Total ever rounds:"
|
msgid "Total ever rounds:"
|
||||||
msgstr "Summe abgegebener Schüsse:"
|
msgstr "Summe abgegebener Schüsse:"
|
||||||
@ -864,7 +864,7 @@ msgstr "Summe abgegebener Schüsse:"
|
|||||||
msgid "Used packs"
|
msgid "Used packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:106
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:105
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used packs:"
|
msgid "Used packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -874,7 +874,7 @@ msgstr ""
|
|||||||
msgid "Used rounds"
|
msgid "Used rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:78
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:79
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Used rounds:"
|
msgid "Used rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -985,39 +985,39 @@ msgid "UPC:"
|
|||||||
msgstr "UPC"
|
msgstr "UPC"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Average CPR"
|
msgid "Average CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.ex:135
|
#: lib/cannery_web/live/ammo_type_live/show.ex:150
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr "%{name} bearbeiten"
|
msgstr "%{name} bearbeiten"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:233
|
#: lib/cannery_web/components/ammo_group_table_component.ex:234
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR"
|
msgid "CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:46
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR:"
|
msgid "CPR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count"
|
msgid "Original Count"
|
||||||
msgstr "Ursprüngliche Anzahl:"
|
msgstr "Ursprüngliche Anzahl:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:21
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:24
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count:"
|
msgid "Original Count:"
|
||||||
msgstr "Ursprüngliche Anzahl:"
|
msgstr "Ursprüngliche Anzahl:"
|
||||||
@ -1032,28 +1032,28 @@ msgstr ""
|
|||||||
msgid "Total packs:"
|
msgid "Total packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
#: lib/cannery_web/components/ammo_group_table_component.ex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on"
|
msgid "Last used on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:36
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:171
|
#: lib/cannery_web/components/ammo_group_table_component.ex:172
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:57
|
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on"
|
msgid "Purchased on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:31
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:34
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on:"
|
msgid "Purchased on:"
|
||||||
@ -1065,32 +1065,32 @@ msgid "Edit ammo"
|
|||||||
msgstr "Munitionstyp bearbeiten"
|
msgstr "Munitionstyp bearbeiten"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:46
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:47
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "No Ammo types"
|
msgid "No Ammo types"
|
||||||
msgstr "Keine Munitionsarten"
|
msgstr "Keine Munitionsarten"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:33
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search catalog"
|
msgid "Search catalog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:58
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:59
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search ammo"
|
msgid "Search ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:33
|
#: lib/cannery_web/live/container_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search containers"
|
msgid "Search containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:36
|
#: lib/cannery_web/live/tag_live/index.html.heex:37
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search tags"
|
msgid "Search tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:90
|
#: lib/cannery_web/live/range_live/index.html.heex:91
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search shot records"
|
msgid "Search shot records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1198,3 +1198,54 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "+P"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid ".223"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "5.56x46mm NATO"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Boxer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Centerfire"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
|
||||||
|
#: lib/cannery_web/live/range_live/form_component.html.heex:34
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Really great weather"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/ammo_group_table_component.ex:54
|
||||||
|
#: lib/cannery_web/components/ammo_type_table_component.ex:121
|
||||||
|
#: lib/cannery_web/components/container_table_component.ex:67
|
||||||
|
#: lib/cannery_web/components/move_ammo_group_component.ex:70
|
||||||
|
#: lib/cannery_web/components/shot_group_table_component.ex:45
|
||||||
|
#: lib/cannery_web/live/ammo_group_live/show.ex:94
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:105
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Live Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:90
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
@ -112,11 +112,6 @@ msgstr "Unbefugt"
|
|||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr "Nutzerkonto Bestätigungslink ist ungültig oder abgelaufen."
|
msgstr "Nutzerkonto Bestätigungslink ist ungültig oder abgelaufen."
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:18
|
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "You are not authorized to view this page"
|
|
||||||
msgstr "Sie sind nicht berechtigt, diese Seite aufzurufen"
|
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_auth.ex:177
|
#: lib/cannery_web/controllers/user_auth.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
|
@ -65,15 +65,15 @@ msgstr ""
|
|||||||
"Sind Sie sicher, dass sie %{email} löschen möchten? Dies kann nicht "
|
"Sind Sie sicher, dass sie %{email} löschen möchten? Dies kann nicht "
|
||||||
"zurückgenommen werden!"
|
"zurückgenommen werden!"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:99
|
#: lib/cannery_web/live/container_live/index.html.heex:100
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:155
|
#: lib/cannery_web/live/container_live/index.html.heex:156
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:52
|
#: lib/cannery_web/live/container_live/show.html.heex:52
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:63
|
#: lib/cannery_web/live/tag_live/index.html.heex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}?"
|
msgid "Are you sure you want to delete %{name}?"
|
||||||
msgstr "Sind Sie sicher, dass sie %{name} löschen möchten?"
|
msgstr "Sind Sie sicher, dass sie %{name} löschen möchten?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:167
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:168
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this ammo?"
|
msgid "Are you sure you want to delete this ammo?"
|
||||||
@ -128,12 +128,12 @@ msgstr "Passwort erfolgreich geändert."
|
|||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
|
msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
|
#: lib/cannery_web/live/container_live/form_component.html.heex:57
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
|
#: lib/cannery_web/live/range_live/form_component.html.heex:46
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
@ -177,7 +177,7 @@ msgid "Are you sure you want to unstage this ammo?"
|
|||||||
msgstr "Sind sie sicher, dass Sie diese Munition demarkieren möchten?"
|
msgstr "Sind sie sicher, dass Sie diese Munition demarkieren möchten?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:127
|
#: lib/cannery_web/live/range_live/index.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this shot record?"
|
msgid "Are you sure you want to delete this shot record?"
|
||||||
msgstr "Sind sie sicher, dass sie die Schießkladde löschen möchten?"
|
msgstr "Sind sie sicher, dass sie die Schießkladde löschen möchten?"
|
||||||
@ -203,7 +203,7 @@ msgstr "%{email} erfolgreich bestätigt."
|
|||||||
msgid "Ammo moved to %{name} successfully"
|
msgid "Ammo moved to %{name} successfully"
|
||||||
msgstr "Munition erfolgreich zu %{name} verschoben"
|
msgstr "Munition erfolgreich zu %{name} verschoben"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:126
|
#: lib/cannery_web/live/invite_live/index.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copied to clipboard"
|
msgid "Copied to clipboard"
|
||||||
msgstr "Der Zwischenablage hinzugefügt"
|
msgstr "Der Zwischenablage hinzugefügt"
|
||||||
@ -219,7 +219,7 @@ msgstr "%{name} erfolgreich entfernt"
|
|||||||
msgid "You'll need to"
|
msgid "You'll need to"
|
||||||
msgstr "Sie müssen"
|
msgstr "Sie müssen"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Creating..."
|
msgid "Creating..."
|
||||||
msgstr "Erstellen..."
|
msgstr "Erstellen..."
|
||||||
@ -257,7 +257,7 @@ msgid_plural "Ammo added successfully"
|
|||||||
msgstr[0] "Munitionsgruppe erfolgreich aktualisiert"
|
msgstr[0] "Munitionsgruppe erfolgreich aktualisiert"
|
||||||
msgstr[1] "Munitionsgruppe erfolgreich aktualisiert"
|
msgstr[1] "Munitionsgruppe erfolgreich aktualisiert"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:97
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
||||||
@ -268,27 +268,27 @@ msgstr "Sind Sie sicher, dass sie %{name} löschen möchten?"
|
|||||||
msgid "Register to setup Cannery"
|
msgid "Register to setup Cannery"
|
||||||
msgstr "Registrieren Sie sich, um %{name} zu bearbeiten"
|
msgstr "Registrieren Sie sich, um %{name} zu bearbeiten"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:53
|
#: lib/cannery_web/live/invite_live/index.ex:43
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} deleted succesfully"
|
msgid "%{invite_name} deleted succesfully"
|
||||||
msgstr "%{name} erfolgreich gelöscht"
|
msgstr "%{name} erfolgreich gelöscht"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:114
|
#: lib/cannery_web/live/invite_live/index.ex:104
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} disabled succesfully"
|
msgid "%{invite_name} disabled succesfully"
|
||||||
msgstr "%{name} erfolgreich deaktiviert"
|
msgstr "%{name} erfolgreich deaktiviert"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:90
|
#: lib/cannery_web/live/invite_live/index.ex:80
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} enabled succesfully"
|
msgid "%{invite_name} enabled succesfully"
|
||||||
msgstr "%{name} erfolgreich aktiviert"
|
msgstr "%{name} erfolgreich aktiviert"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:68
|
#: lib/cannery_web/live/invite_live/index.ex:58
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} updated succesfully"
|
msgid "%{invite_name} updated succesfully"
|
||||||
msgstr "%{name} erfolgreich aktualisiert"
|
msgstr "%{name} erfolgreich aktualisiert"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:135
|
#: lib/cannery_web/live/invite_live/index.ex:125
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{user_email} deleted succesfully"
|
msgid "%{user_email} deleted succesfully"
|
||||||
msgstr "%{name} erfolgreich gelöscht"
|
msgstr "%{name} erfolgreich gelöscht"
|
||||||
|
@ -34,7 +34,7 @@ msgstr ""
|
|||||||
msgid "Ammo"
|
msgid "Ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:89
|
#: lib/cannery_web/components/ammo_group_table_component.ex:90
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo type"
|
msgid "Ammo type"
|
||||||
@ -46,49 +46,49 @@ msgid "Background color"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Blank"
|
msgid "Blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet core"
|
msgid "Bullet core"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet type"
|
msgid "Bullet type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Caliber"
|
msgid "Caliber"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cartridge"
|
msgid "Cartridge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Case material"
|
msgid "Case material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
|
#: lib/cannery_web/components/ammo_group_table_component.ex:66
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container"
|
msgid "Container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -102,12 +102,12 @@ msgid "Containers"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Corrosive"
|
msgid "Corrosive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:76
|
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count"
|
msgid "Count"
|
||||||
@ -137,7 +137,7 @@ msgstr ""
|
|||||||
msgid "Easy to Use:"
|
msgid "Easy to Use:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:33
|
#: lib/cannery_web/live/invite_live/index.ex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Invite"
|
msgid "Edit Invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -147,24 +147,24 @@ msgstr ""
|
|||||||
msgid "Edit Tag"
|
msgid "Edit Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Example bullet type abbreviations"
|
msgid "Example bullet type abbreviations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "FMJ"
|
msgid "FMJ"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Grains"
|
msgid "Grains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Incendiary"
|
msgid "Incendiary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -185,7 +185,7 @@ msgid "Invite Only"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:41
|
#: lib/cannery_web/live/invite_live/index.ex:31
|
||||||
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invites"
|
msgid "Invites"
|
||||||
@ -198,7 +198,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:47
|
#: lib/cannery_web/components/container_table_component.ex:47
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
|
#: lib/cannery_web/live/container_live/form_component.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -209,13 +209,13 @@ msgstr ""
|
|||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
|
#: lib/cannery_web/live/container_live/form_component.html.heex:41
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Magazine, Clip, Ammo Box, etc"
|
msgid "Magazine, Clip, Ammo Box, etc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Manufacturer"
|
msgid "Manufacturer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -252,7 +252,7 @@ msgstr ""
|
|||||||
msgid "New Container"
|
msgid "New Container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:37
|
#: lib/cannery_web/live/invite_live/index.ex:27
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Invite"
|
msgid "New Invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -263,18 +263,18 @@ msgid "New Tag"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:71
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:72
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo"
|
msgid "No Ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:167
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:163
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No ammo for this type"
|
msgid "No ammo for this type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:8
|
#: lib/cannery_web/live/container_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:47
|
#: lib/cannery_web/live/container_live/index.html.heex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No containers"
|
msgid "No containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -286,13 +286,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:43
|
#: lib/cannery_web/live/tag_live/index.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No tags"
|
msgid "No tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
#: lib/cannery_web/components/ammo_group_table_component.ex:82
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
||||||
@ -301,36 +301,36 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:26
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:29
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Notes:"
|
msgid "Notes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
|
#: lib/cannery_web/live/container_live/form_component.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "On the bookshelf"
|
msgid "On the bookshelf"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid"
|
msgid "Price paid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:41
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid:"
|
msgid "Price paid:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Primer type"
|
msgid "Primer type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -361,7 +361,7 @@ msgstr ""
|
|||||||
msgid "Simple:"
|
msgid "Simple:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Steel"
|
msgid "Steel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -396,14 +396,14 @@ msgid "The self-hosted firearm tracker website"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracer"
|
msgid "Tracer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:48
|
#: lib/cannery_web/components/container_table_component.ex:48
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
|
#: lib/cannery_web/live/container_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -434,7 +434,7 @@ msgstr ""
|
|||||||
msgid "No tags for this container"
|
msgid "No tags for this container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:72
|
#: lib/cannery_web/components/ammo_group_table_component.ex:73
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Range"
|
msgid "Range"
|
||||||
@ -445,10 +445,10 @@ msgstr ""
|
|||||||
msgid "Range day"
|
msgid "Range day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
|
#: lib/cannery_web/live/range_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -481,7 +481,7 @@ msgid "New Shot Records"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:55
|
#: lib/cannery_web/live/range_live/index.html.heex:55
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:97
|
#: lib/cannery_web/live/range_live/index.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No shots recorded"
|
msgid "No shots recorded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -520,49 +520,49 @@ msgstr ""
|
|||||||
msgid "Shot log"
|
msgid "Shot log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:153
|
#: lib/cannery_web/components/ammo_group_table_component.ex:154
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:229
|
#: lib/cannery_web/components/ammo_group_table_component.ex:230
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:42
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:45
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:47
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "$%{amount}"
|
msgid "$%{amount}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bimetal"
|
msgid "Bimetal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Jacket type"
|
msgid "Jacket type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Muzzle velocity"
|
msgid "Muzzle velocity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder grains per charge"
|
msgid "Powder grains per charge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder type"
|
msgid "Powder type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "UPC"
|
msgid "UPC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -586,7 +586,7 @@ msgid "New password"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Firing type"
|
msgid "Firing type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -615,14 +615,14 @@ msgstr ""
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:226
|
#: lib/cannery_web/components/ammo_group_table_component.ex:227
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:143
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "% left"
|
msgid "% left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -683,12 +683,12 @@ msgstr ""
|
|||||||
msgid "Record Shots"
|
msgid "Record Shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copies"
|
msgid "Copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:122
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Added on:"
|
msgid "Added on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -768,7 +768,7 @@ msgid "This ammo is not in a container"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:98
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:96
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:23
|
#: lib/cannery_web/live/container_live/show.html.heex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Packs:"
|
msgid "Packs:"
|
||||||
@ -790,20 +790,20 @@ msgstr ""
|
|||||||
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:54
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:57
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container:"
|
msgid "Container:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:39
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:149
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
|
#: lib/cannery_web/live/container_live/show.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:187
|
#: lib/cannery_web/components/ammo_group_table_component.ex:188
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -826,8 +826,8 @@ msgstr ""
|
|||||||
msgid "Rounds"
|
msgid "Rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:159
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:155
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:39
|
#: lib/cannery_web/live/container_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:104
|
#: lib/cannery_web/live/container_live/show.html.heex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View as table"
|
msgid "View as table"
|
||||||
@ -838,7 +838,7 @@ msgstr ""
|
|||||||
msgid "Total ever packs"
|
msgid "Total ever packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:114
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:113
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever packs:"
|
msgid "Total ever packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -848,7 +848,7 @@ msgstr ""
|
|||||||
msgid "Total ever rounds"
|
msgid "Total ever rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:86
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:87
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever rounds:"
|
msgid "Total ever rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -858,7 +858,7 @@ msgstr ""
|
|||||||
msgid "Used packs"
|
msgid "Used packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:106
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:105
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used packs:"
|
msgid "Used packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -868,7 +868,7 @@ msgstr ""
|
|||||||
msgid "Used rounds"
|
msgid "Used rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:78
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:79
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used rounds:"
|
msgid "Used rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -979,39 +979,39 @@ msgid "UPC:"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Average CPR"
|
msgid "Average CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.ex:135
|
#: lib/cannery_web/live/ammo_type_live/show.ex:150
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:233
|
#: lib/cannery_web/components/ammo_group_table_component.ex:234
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR"
|
msgid "CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:46
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR:"
|
msgid "CPR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Original Count"
|
msgid "Original Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:21
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Original Count:"
|
msgid "Original Count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1026,28 +1026,28 @@ msgstr ""
|
|||||||
msgid "Total packs:"
|
msgid "Total packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
#: lib/cannery_web/components/ammo_group_table_component.ex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on"
|
msgid "Last used on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:36
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:171
|
#: lib/cannery_web/components/ammo_group_table_component.ex:172
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:57
|
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on"
|
msgid "Purchased on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:31
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:34
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on:"
|
msgid "Purchased on:"
|
||||||
@ -1059,32 +1059,32 @@ msgid "Edit ammo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:46
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo types"
|
msgid "No Ammo types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:33
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search catalog"
|
msgid "Search catalog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:58
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search ammo"
|
msgid "Search ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:33
|
#: lib/cannery_web/live/container_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search containers"
|
msgid "Search containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:36
|
#: lib/cannery_web/live/tag_live/index.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search tags"
|
msgid "Search tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:90
|
#: lib/cannery_web/live/range_live/index.html.heex:91
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search shot records"
|
msgid "Search shot records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1181,3 +1181,54 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "+P"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid ".223"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "5.56x46mm NATO"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Boxer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Centerfire"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
|
||||||
|
#: lib/cannery_web/live/range_live/form_component.html.heex:34
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Really great weather"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/ammo_group_table_component.ex:54
|
||||||
|
#: lib/cannery_web/components/ammo_type_table_component.ex:121
|
||||||
|
#: lib/cannery_web/components/container_table_component.ex:67
|
||||||
|
#: lib/cannery_web/components/move_ammo_group_component.ex:70
|
||||||
|
#: lib/cannery_web/components/shot_group_table_component.ex:45
|
||||||
|
#: lib/cannery_web/live/ammo_group_live/show.ex:94
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:105
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Live Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:90
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
@ -66,7 +66,7 @@ msgstr ""
|
|||||||
msgid "Invite someone new!"
|
msgid "Invite someone new!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:122
|
#: lib/cannery_web/components/core_components/topbar.html.heex:124
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
||||||
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
||||||
@ -97,7 +97,7 @@ msgstr ""
|
|||||||
msgid "New Tag"
|
msgid "New Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:114
|
#: lib/cannery_web/components/core_components/topbar.html.heex:116
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
||||||
@ -120,12 +120,12 @@ msgstr ""
|
|||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
|
#: lib/cannery_web/live/container_live/form_component.html.heex:55
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
|
#: lib/cannery_web/live/range_live/form_component.html.heex:44
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -156,7 +156,7 @@ msgstr ""
|
|||||||
msgid "Why not get some ready to shoot?"
|
msgid "Why not get some ready to shoot?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:45
|
#: lib/cannery_web/live/range_live/index.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@ -183,12 +183,12 @@ msgstr ""
|
|||||||
msgid "add a container first"
|
msgid "add a container first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/templates/user_settings/edit.html.heex:111
|
#: lib/cannery_web/templates/user_settings/edit.html.heex:110
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Change Language"
|
msgid "Change Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -209,7 +209,7 @@ msgid "add an ammo type first"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:120
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:121
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Move ammo"
|
msgid "Move ammo"
|
||||||
@ -237,13 +237,13 @@ msgstr ""
|
|||||||
msgid "Export Data as JSON"
|
msgid "Export Data as JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:84
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{ammo_type_name}"
|
msgid "Clone %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:87
|
#: lib/cannery_web/live/container_live/index.html.heex:88
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:143
|
#: lib/cannery_web/live/container_live/index.html.heex:144
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{container_name}"
|
msgid "Clone %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -253,20 +253,20 @@ msgstr ""
|
|||||||
msgid "Copy invite link for %{invite_name}"
|
msgid "Copy invite link for %{invite_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{ammo_type_name}"
|
msgid "Delete %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:102
|
#: lib/cannery_web/live/container_live/index.html.heex:103
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:158
|
#: lib/cannery_web/live/container_live/index.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:55
|
#: lib/cannery_web/live/container_live/show.html.heex:55
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{container_name}"
|
msgid "Delete %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:65
|
#: lib/cannery_web/live/tag_live/index.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{tag_name}"
|
msgid "Delete %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -277,30 +277,30 @@ msgid "Delete invite for %{invite_name}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:130
|
#: lib/cannery_web/live/range_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete shot record of %{shot_group_count} shots"
|
msgid "Delete shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:74
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:75
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:77
|
#: lib/cannery_web/live/container_live/index.html.heex:78
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:133
|
#: lib/cannery_web/live/container_live/index.html.heex:134
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:42
|
#: lib/cannery_web/live/container_live/show.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{container_name}"
|
msgid "Edit %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:52
|
#: lib/cannery_web/live/tag_live/index.html.heex:53
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{tag_name}"
|
msgid "Edit %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:142
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:143
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
||||||
@ -316,44 +316,44 @@ msgstr ""
|
|||||||
msgid "Edit shot group of %{shot_group_count} shots"
|
msgid "Edit shot group of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:113
|
#: lib/cannery_web/live/range_live/index.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit shot record of %{shot_group_count} shots"
|
msgid "Edit shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:97
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Stage"
|
msgid "Stage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:65
|
#: lib/cannery_web/live/container_live/index.html.heex:66
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:122
|
#: lib/cannery_web/live/container_live/index.html.heex:123
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag %{container_name}"
|
msgid "Tag %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:95
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unstage"
|
msgid "Unstage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:65
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View %{ammo_type_name}"
|
msgid "View %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:154
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:155
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:169
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:170
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:130
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "View ammo group of %{ammo_group_count} bullets"
|
msgid "View ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -34,7 +34,7 @@ msgstr ""
|
|||||||
msgid "Ammo"
|
msgid "Ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:89
|
#: lib/cannery_web/components/ammo_group_table_component.ex:90
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo type"
|
msgid "Ammo type"
|
||||||
@ -46,49 +46,49 @@ msgid "Background color"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Blank"
|
msgid "Blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet core"
|
msgid "Bullet core"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet type"
|
msgid "Bullet type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Caliber"
|
msgid "Caliber"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cartridge"
|
msgid "Cartridge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Case material"
|
msgid "Case material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
|
#: lib/cannery_web/components/ammo_group_table_component.ex:66
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container"
|
msgid "Container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -102,12 +102,12 @@ msgid "Containers"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Corrosive"
|
msgid "Corrosive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:76
|
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count"
|
msgid "Count"
|
||||||
@ -137,7 +137,7 @@ msgstr ""
|
|||||||
msgid "Easy to Use:"
|
msgid "Easy to Use:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:33
|
#: lib/cannery_web/live/invite_live/index.ex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Invite"
|
msgid "Edit Invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -147,24 +147,24 @@ msgstr ""
|
|||||||
msgid "Edit Tag"
|
msgid "Edit Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Example bullet type abbreviations"
|
msgid "Example bullet type abbreviations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "FMJ"
|
msgid "FMJ"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Grains"
|
msgid "Grains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Incendiary"
|
msgid "Incendiary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -185,7 +185,7 @@ msgid "Invite Only"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:41
|
#: lib/cannery_web/live/invite_live/index.ex:31
|
||||||
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invites"
|
msgid "Invites"
|
||||||
@ -198,7 +198,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:47
|
#: lib/cannery_web/components/container_table_component.ex:47
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
|
#: lib/cannery_web/live/container_live/form_component.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -209,13 +209,13 @@ msgstr ""
|
|||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
|
#: lib/cannery_web/live/container_live/form_component.html.heex:41
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Magazine, Clip, Ammo Box, etc"
|
msgid "Magazine, Clip, Ammo Box, etc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Manufacturer"
|
msgid "Manufacturer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -252,7 +252,7 @@ msgstr ""
|
|||||||
msgid "New Container"
|
msgid "New Container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:37
|
#: lib/cannery_web/live/invite_live/index.ex:27
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Invite"
|
msgid "New Invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -263,18 +263,18 @@ msgid "New Tag"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:71
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:72
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo"
|
msgid "No Ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:167
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:163
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No ammo for this type"
|
msgid "No ammo for this type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:8
|
#: lib/cannery_web/live/container_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:47
|
#: lib/cannery_web/live/container_live/index.html.heex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No containers"
|
msgid "No containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -286,13 +286,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:43
|
#: lib/cannery_web/live/tag_live/index.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No tags"
|
msgid "No tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
#: lib/cannery_web/components/ammo_group_table_component.ex:82
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
||||||
@ -301,36 +301,36 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:26
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:29
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Notes:"
|
msgid "Notes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
|
#: lib/cannery_web/live/container_live/form_component.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "On the bookshelf"
|
msgid "On the bookshelf"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid"
|
msgid "Price paid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:41
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid:"
|
msgid "Price paid:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Primer type"
|
msgid "Primer type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -361,7 +361,7 @@ msgstr ""
|
|||||||
msgid "Simple:"
|
msgid "Simple:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Steel"
|
msgid "Steel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -396,14 +396,14 @@ msgid "The self-hosted firearm tracker website"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracer"
|
msgid "Tracer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:48
|
#: lib/cannery_web/components/container_table_component.ex:48
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
|
#: lib/cannery_web/live/container_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -434,7 +434,7 @@ msgstr ""
|
|||||||
msgid "No tags for this container"
|
msgid "No tags for this container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:72
|
#: lib/cannery_web/components/ammo_group_table_component.ex:73
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Range"
|
msgid "Range"
|
||||||
@ -445,10 +445,10 @@ msgstr ""
|
|||||||
msgid "Range day"
|
msgid "Range day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
|
#: lib/cannery_web/live/range_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -481,7 +481,7 @@ msgid "New Shot Records"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:55
|
#: lib/cannery_web/live/range_live/index.html.heex:55
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:97
|
#: lib/cannery_web/live/range_live/index.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No shots recorded"
|
msgid "No shots recorded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -520,49 +520,49 @@ msgstr ""
|
|||||||
msgid "Shot log"
|
msgid "Shot log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:153
|
#: lib/cannery_web/components/ammo_group_table_component.ex:154
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:229
|
#: lib/cannery_web/components/ammo_group_table_component.ex:230
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:42
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:45
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:47
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "$%{amount}"
|
msgid "$%{amount}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bimetal"
|
msgid "Bimetal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Jacket type"
|
msgid "Jacket type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Muzzle velocity"
|
msgid "Muzzle velocity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder grains per charge"
|
msgid "Powder grains per charge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder type"
|
msgid "Powder type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "UPC"
|
msgid "UPC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -586,7 +586,7 @@ msgid "New password"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Firing type"
|
msgid "Firing type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -615,14 +615,14 @@ msgstr ""
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:226
|
#: lib/cannery_web/components/ammo_group_table_component.ex:227
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:143
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "% left"
|
msgid "% left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -683,12 +683,12 @@ msgstr ""
|
|||||||
msgid "Record Shots"
|
msgid "Record Shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copies"
|
msgid "Copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:122
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Added on:"
|
msgid "Added on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -768,7 +768,7 @@ msgid "This ammo is not in a container"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:98
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:96
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:23
|
#: lib/cannery_web/live/container_live/show.html.heex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Packs:"
|
msgid "Packs:"
|
||||||
@ -790,20 +790,20 @@ msgstr ""
|
|||||||
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:54
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:57
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Container:"
|
msgid "Container:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:39
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:149
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
|
#: lib/cannery_web/live/container_live/show.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:187
|
#: lib/cannery_web/components/ammo_group_table_component.ex:188
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -826,8 +826,8 @@ msgstr ""
|
|||||||
msgid "Rounds"
|
msgid "Rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:159
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:155
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:39
|
#: lib/cannery_web/live/container_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:104
|
#: lib/cannery_web/live/container_live/show.html.heex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View as table"
|
msgid "View as table"
|
||||||
@ -838,7 +838,7 @@ msgstr ""
|
|||||||
msgid "Total ever packs"
|
msgid "Total ever packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:114
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:113
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever packs:"
|
msgid "Total ever packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -848,7 +848,7 @@ msgstr ""
|
|||||||
msgid "Total ever rounds"
|
msgid "Total ever rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:86
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:87
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Total ever rounds:"
|
msgid "Total ever rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -858,7 +858,7 @@ msgstr ""
|
|||||||
msgid "Used packs"
|
msgid "Used packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:106
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:105
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used packs:"
|
msgid "Used packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -868,7 +868,7 @@ msgstr ""
|
|||||||
msgid "Used rounds"
|
msgid "Used rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:78
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:79
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Used rounds:"
|
msgid "Used rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -979,39 +979,39 @@ msgid "UPC:"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Average CPR"
|
msgid "Average CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.ex:135
|
#: lib/cannery_web/live/ammo_type_live/show.ex:150
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:233
|
#: lib/cannery_web/components/ammo_group_table_component.ex:234
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR"
|
msgid "CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:46
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR:"
|
msgid "CPR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count"
|
msgid "Original Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:21
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:24
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count:"
|
msgid "Original Count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1026,28 +1026,28 @@ msgstr ""
|
|||||||
msgid "Total packs:"
|
msgid "Total packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
#: lib/cannery_web/components/ammo_group_table_component.ex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on"
|
msgid "Last used on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:36
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:171
|
#: lib/cannery_web/components/ammo_group_table_component.ex:172
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:57
|
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on"
|
msgid "Purchased on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:31
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:34
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on:"
|
msgid "Purchased on:"
|
||||||
@ -1059,32 +1059,32 @@ msgid "Edit ammo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:46
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:47
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "No Ammo types"
|
msgid "No Ammo types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:33
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search catalog"
|
msgid "Search catalog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:58
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:59
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search ammo"
|
msgid "Search ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:33
|
#: lib/cannery_web/live/container_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search containers"
|
msgid "Search containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:36
|
#: lib/cannery_web/live/tag_live/index.html.heex:37
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search tags"
|
msgid "Search tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:90
|
#: lib/cannery_web/live/range_live/index.html.heex:91
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search shot records"
|
msgid "Search shot records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1181,3 +1181,54 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "+P"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid ".223"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "5.56x46mm NATO"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Boxer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Centerfire"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
|
||||||
|
#: lib/cannery_web/live/range_live/form_component.html.heex:34
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Really great weather"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/ammo_group_table_component.ex:54
|
||||||
|
#: lib/cannery_web/components/ammo_type_table_component.ex:121
|
||||||
|
#: lib/cannery_web/components/container_table_component.ex:67
|
||||||
|
#: lib/cannery_web/components/move_ammo_group_component.ex:70
|
||||||
|
#: lib/cannery_web/components/shot_group_table_component.ex:45
|
||||||
|
#: lib/cannery_web/live/ammo_group_live/show.ex:94
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:105
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Live Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:90
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
@ -98,11 +98,6 @@ msgstr ""
|
|||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:18
|
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "You are not authorized to view this page"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_auth.ex:177
|
#: lib/cannery_web/controllers/user_auth.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
|
@ -50,15 +50,15 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:99
|
#: lib/cannery_web/live/container_live/index.html.heex:100
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:155
|
#: lib/cannery_web/live/container_live/index.html.heex:156
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:52
|
#: lib/cannery_web/live/container_live/show.html.heex:52
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:63
|
#: lib/cannery_web/live/tag_live/index.html.heex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}?"
|
msgid "Are you sure you want to delete %{name}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:167
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:168
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this ammo?"
|
msgid "Are you sure you want to delete this ammo?"
|
||||||
@ -109,12 +109,12 @@ msgstr ""
|
|||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
|
#: lib/cannery_web/live/container_live/form_component.html.heex:57
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
|
#: lib/cannery_web/live/range_live/form_component.html.heex:46
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
@ -156,7 +156,7 @@ msgid "Are you sure you want to unstage this ammo?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:127
|
#: lib/cannery_web/live/range_live/index.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this shot record?"
|
msgid "Are you sure you want to delete this shot record?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -182,7 +182,7 @@ msgstr ""
|
|||||||
msgid "Ammo moved to %{name} successfully"
|
msgid "Ammo moved to %{name} successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:126
|
#: lib/cannery_web/live/invite_live/index.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copied to clipboard"
|
msgid "Copied to clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -198,7 +198,7 @@ msgstr ""
|
|||||||
msgid "You'll need to"
|
msgid "You'll need to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Creating..."
|
msgid "Creating..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -236,7 +236,7 @@ msgid_plural "Ammo added successfully"
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:97
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
||||||
@ -247,27 +247,27 @@ msgstr ""
|
|||||||
msgid "Register to setup Cannery"
|
msgid "Register to setup Cannery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:53
|
#: lib/cannery_web/live/invite_live/index.ex:43
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} deleted succesfully"
|
msgid "%{invite_name} deleted succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:114
|
#: lib/cannery_web/live/invite_live/index.ex:104
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} disabled succesfully"
|
msgid "%{invite_name} disabled succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:90
|
#: lib/cannery_web/live/invite_live/index.ex:80
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} enabled succesfully"
|
msgid "%{invite_name} enabled succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:68
|
#: lib/cannery_web/live/invite_live/index.ex:58
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} updated succesfully"
|
msgid "%{invite_name} updated succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:135
|
#: lib/cannery_web/live/invite_live/index.ex:125
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{user_email} deleted succesfully"
|
msgid "%{user_email} deleted succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -98,11 +98,6 @@ msgstr ""
|
|||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:18
|
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "You are not authorized to view this page"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_auth.ex:177
|
#: lib/cannery_web/controllers/user_auth.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
|
@ -79,7 +79,7 @@ msgstr "¿Has olvidado tu contraseña?"
|
|||||||
msgid "Invite someone new!"
|
msgid "Invite someone new!"
|
||||||
msgstr "¡Invita a alguien nuevo!"
|
msgstr "¡Invita a alguien nuevo!"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:122
|
#: lib/cannery_web/components/core_components/topbar.html.heex:124
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
||||||
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
||||||
@ -110,7 +110,7 @@ msgstr "Nuevo Contenedor"
|
|||||||
msgid "New Tag"
|
msgid "New Tag"
|
||||||
msgstr "Nueva Etiqueta"
|
msgstr "Nueva Etiqueta"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:114
|
#: lib/cannery_web/components/core_components/topbar.html.heex:116
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
||||||
@ -133,12 +133,12 @@ msgstr "Reenviar instrucciones de confirmación"
|
|||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr "Resetear contraseña"
|
msgstr "Resetear contraseña"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
|
#: lib/cannery_web/live/container_live/form_component.html.heex:55
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
|
#: lib/cannery_web/live/range_live/form_component.html.heex:44
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -169,7 +169,7 @@ msgstr "Preparar munición"
|
|||||||
msgid "Why not get some ready to shoot?"
|
msgid "Why not get some ready to shoot?"
|
||||||
msgstr "¿Por qué no preparar parte para disparar?"
|
msgstr "¿Por qué no preparar parte para disparar?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:45
|
#: lib/cannery_web/live/range_live/index.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@ -196,12 +196,12 @@ msgstr "Copiar al portapapeles"
|
|||||||
msgid "add a container first"
|
msgid "add a container first"
|
||||||
msgstr "añade primero un contenedor"
|
msgstr "añade primero un contenedor"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Crear"
|
msgstr "Crear"
|
||||||
|
|
||||||
#: lib/cannery_web/templates/user_settings/edit.html.heex:111
|
#: lib/cannery_web/templates/user_settings/edit.html.heex:110
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Change Language"
|
msgid "Change Language"
|
||||||
msgstr "Cambiar Lenguaje"
|
msgstr "Cambiar Lenguaje"
|
||||||
@ -222,7 +222,7 @@ msgid "add an ammo type first"
|
|||||||
msgstr "añade primero un tipo de munición"
|
msgstr "añade primero un tipo de munición"
|
||||||
|
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:120
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:121
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Move ammo"
|
msgid "Move ammo"
|
||||||
@ -250,13 +250,13 @@ msgstr "Desmontar del campo de tiro"
|
|||||||
msgid "Export Data as JSON"
|
msgid "Export Data as JSON"
|
||||||
msgstr "Exportar datos como JSON"
|
msgstr "Exportar datos como JSON"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:84
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{ammo_type_name}"
|
msgid "Clone %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:87
|
#: lib/cannery_web/live/container_live/index.html.heex:88
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:143
|
#: lib/cannery_web/live/container_live/index.html.heex:144
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{container_name}"
|
msgid "Clone %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -266,20 +266,20 @@ msgstr ""
|
|||||||
msgid "Copy invite link for %{invite_name}"
|
msgid "Copy invite link for %{invite_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{ammo_type_name}"
|
msgid "Delete %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:102
|
#: lib/cannery_web/live/container_live/index.html.heex:103
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:158
|
#: lib/cannery_web/live/container_live/index.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:55
|
#: lib/cannery_web/live/container_live/show.html.heex:55
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{container_name}"
|
msgid "Delete %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:65
|
#: lib/cannery_web/live/tag_live/index.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{tag_name}"
|
msgid "Delete %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -290,30 +290,30 @@ msgid "Delete invite for %{invite_name}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:130
|
#: lib/cannery_web/live/range_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete shot record of %{shot_group_count} shots"
|
msgid "Delete shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:74
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:75
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:77
|
#: lib/cannery_web/live/container_live/index.html.heex:78
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:133
|
#: lib/cannery_web/live/container_live/index.html.heex:134
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:42
|
#: lib/cannery_web/live/container_live/show.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{container_name}"
|
msgid "Edit %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:52
|
#: lib/cannery_web/live/tag_live/index.html.heex:53
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{tag_name}"
|
msgid "Edit %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:142
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:143
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
||||||
@ -329,44 +329,44 @@ msgstr ""
|
|||||||
msgid "Edit shot group of %{shot_group_count} shots"
|
msgid "Edit shot group of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:113
|
#: lib/cannery_web/live/range_live/index.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit shot record of %{shot_group_count} shots"
|
msgid "Edit shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:97
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Stage"
|
msgid "Stage"
|
||||||
msgstr "Preparar munición"
|
msgstr "Preparar munición"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:65
|
#: lib/cannery_web/live/container_live/index.html.heex:66
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:122
|
#: lib/cannery_web/live/container_live/index.html.heex:123
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag %{container_name}"
|
msgid "Tag %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:95
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unstage"
|
msgid "Unstage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:65
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View %{ammo_type_name}"
|
msgid "View %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:154
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:155
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:169
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:170
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:130
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "View ammo group of %{ammo_group_count} bullets"
|
msgid "View ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -38,7 +38,7 @@ msgstr "Aministradores:"
|
|||||||
msgid "Ammo"
|
msgid "Ammo"
|
||||||
msgstr "Munición"
|
msgstr "Munición"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:89
|
#: lib/cannery_web/components/ammo_group_table_component.ex:90
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo type"
|
msgid "Ammo type"
|
||||||
@ -50,49 +50,49 @@ msgid "Background color"
|
|||||||
msgstr "Color de fondo"
|
msgstr "Color de fondo"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Blank"
|
msgid "Blank"
|
||||||
msgstr "Fogueo"
|
msgstr "Fogueo"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr "Latón"
|
msgstr "Latón"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet core"
|
msgid "Bullet core"
|
||||||
msgstr "Núcleo de bala"
|
msgstr "Núcleo de bala"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet type"
|
msgid "Bullet type"
|
||||||
msgstr "Tipo de bala"
|
msgstr "Tipo de bala"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Caliber"
|
msgid "Caliber"
|
||||||
msgstr "Calibre"
|
msgstr "Calibre"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cartridge"
|
msgid "Cartridge"
|
||||||
msgstr "Cartucho"
|
msgstr "Cartucho"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Case material"
|
msgid "Case material"
|
||||||
msgstr "Material del casquillo"
|
msgstr "Material del casquillo"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
|
#: lib/cannery_web/components/ammo_group_table_component.ex:66
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container"
|
msgid "Container"
|
||||||
msgstr "Contenedor"
|
msgstr "Contenedor"
|
||||||
@ -106,12 +106,12 @@ msgid "Containers"
|
|||||||
msgstr "Contenedores"
|
msgstr "Contenedores"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Corrosive"
|
msgid "Corrosive"
|
||||||
msgstr "Corrosiva"
|
msgstr "Corrosiva"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:76
|
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count"
|
msgid "Count"
|
||||||
@ -141,7 +141,7 @@ msgstr "Descripción:"
|
|||||||
msgid "Easy to Use:"
|
msgid "Easy to Use:"
|
||||||
msgstr "Facil de Usar:"
|
msgstr "Facil de Usar:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:33
|
#: lib/cannery_web/live/invite_live/index.ex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Invite"
|
msgid "Edit Invite"
|
||||||
msgstr "Editar Invitación"
|
msgstr "Editar Invitación"
|
||||||
@ -151,24 +151,24 @@ msgstr "Editar Invitación"
|
|||||||
msgid "Edit Tag"
|
msgid "Edit Tag"
|
||||||
msgstr "Editar Etiqueta"
|
msgstr "Editar Etiqueta"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Example bullet type abbreviations"
|
msgid "Example bullet type abbreviations"
|
||||||
msgstr "Abreviaciones de tipo de bala ejemplo"
|
msgstr "Abreviaciones de tipo de bala ejemplo"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "FMJ"
|
msgid "FMJ"
|
||||||
msgstr "Bala encamisada"
|
msgstr "Bala encamisada"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Grains"
|
msgid "Grains"
|
||||||
msgstr "Grano"
|
msgstr "Grano"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Incendiary"
|
msgid "Incendiary"
|
||||||
msgstr "Incendiaria"
|
msgstr "Incendiaria"
|
||||||
@ -189,7 +189,7 @@ msgid "Invite Only"
|
|||||||
msgstr "Solo Invitación"
|
msgstr "Solo Invitación"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:41
|
#: lib/cannery_web/live/invite_live/index.ex:31
|
||||||
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invites"
|
msgid "Invites"
|
||||||
@ -202,7 +202,7 @@ msgstr "Mantener registrado durante 60 días"
|
|||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:47
|
#: lib/cannery_web/components/container_table_component.ex:47
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
|
#: lib/cannery_web/live/container_live/form_component.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr "Localización"
|
msgstr "Localización"
|
||||||
@ -213,13 +213,13 @@ msgstr "Localización"
|
|||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr "Localización:"
|
msgstr "Localización:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
|
#: lib/cannery_web/live/container_live/form_component.html.heex:41
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Magazine, Clip, Ammo Box, etc"
|
msgid "Magazine, Clip, Ammo Box, etc"
|
||||||
msgstr "Cargador, Clip, Caja de Munición, etc"
|
msgstr "Cargador, Clip, Caja de Munición, etc"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Manufacturer"
|
msgid "Manufacturer"
|
||||||
msgstr "Fabricante"
|
msgstr "Fabricante"
|
||||||
@ -256,7 +256,7 @@ msgstr "Nuevo tipo de Munición"
|
|||||||
msgid "New Container"
|
msgid "New Container"
|
||||||
msgstr "Nuevo Contenedor"
|
msgstr "Nuevo Contenedor"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:37
|
#: lib/cannery_web/live/invite_live/index.ex:27
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Invite"
|
msgid "New Invite"
|
||||||
msgstr "Nueva Invitación"
|
msgstr "Nueva Invitación"
|
||||||
@ -267,18 +267,18 @@ msgid "New Tag"
|
|||||||
msgstr "Nueva Etiqueta"
|
msgstr "Nueva Etiqueta"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:71
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:72
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo"
|
msgid "No Ammo"
|
||||||
msgstr "Sin Munición"
|
msgstr "Sin Munición"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:167
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:163
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No ammo for this type"
|
msgid "No ammo for this type"
|
||||||
msgstr "Sin munición para este tipo"
|
msgstr "Sin munición para este tipo"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:8
|
#: lib/cannery_web/live/container_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:47
|
#: lib/cannery_web/live/container_live/index.html.heex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No containers"
|
msgid "No containers"
|
||||||
msgstr "Sin contenedores"
|
msgstr "Sin contenedores"
|
||||||
@ -290,13 +290,13 @@ msgstr "Sin invitaciones"
|
|||||||
|
|
||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:43
|
#: lib/cannery_web/live/tag_live/index.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No tags"
|
msgid "No tags"
|
||||||
msgstr "Sin etiquetas"
|
msgstr "Sin etiquetas"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
#: lib/cannery_web/components/ammo_group_table_component.ex:82
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
||||||
@ -305,36 +305,36 @@ msgstr "Sin etiquetas"
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notas"
|
msgstr "Notas"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:26
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:29
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Notes:"
|
msgid "Notes:"
|
||||||
msgstr "Notas:"
|
msgstr "Notas:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
|
#: lib/cannery_web/live/container_live/form_component.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "On the bookshelf"
|
msgid "On the bookshelf"
|
||||||
msgstr "En la estantería"
|
msgstr "En la estantería"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr "Presión"
|
msgstr "Presión"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid"
|
msgid "Price paid"
|
||||||
msgstr "Precio pagado"
|
msgstr "Precio pagado"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:41
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid:"
|
msgid "Price paid:"
|
||||||
msgstr "Precio pagado:"
|
msgstr "Precio pagado:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Primer type"
|
msgid "Primer type"
|
||||||
msgstr "Tipo de espoleta"
|
msgstr "Tipo de espoleta"
|
||||||
@ -367,7 +367,7 @@ msgstr "Ajustes"
|
|||||||
msgid "Simple:"
|
msgid "Simple:"
|
||||||
msgstr "Simple:"
|
msgstr "Simple:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Steel"
|
msgid "Steel"
|
||||||
msgstr "Acero"
|
msgstr "Acero"
|
||||||
@ -403,14 +403,14 @@ msgid "The self-hosted firearm tracker website"
|
|||||||
msgstr "La página de seguimiento de armas autogestionada"
|
msgstr "La página de seguimiento de armas autogestionada"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracer"
|
msgid "Tracer"
|
||||||
msgstr "Trazadora"
|
msgstr "Trazadora"
|
||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:48
|
#: lib/cannery_web/components/container_table_component.ex:48
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
|
#: lib/cannery_web/live/container_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Tipo"
|
msgstr "Tipo"
|
||||||
@ -441,7 +441,7 @@ msgstr "Tus datos se quedan contigo, sin excepciones"
|
|||||||
msgid "No tags for this container"
|
msgid "No tags for this container"
|
||||||
msgstr "Contenedor sin etiquetas"
|
msgstr "Contenedor sin etiquetas"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:72
|
#: lib/cannery_web/components/ammo_group_table_component.ex:73
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Range"
|
msgid "Range"
|
||||||
@ -452,10 +452,10 @@ msgstr "Campo de tiro"
|
|||||||
msgid "Range day"
|
msgid "Range day"
|
||||||
msgstr "Día de disparar"
|
msgstr "Día de disparar"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
|
#: lib/cannery_web/live/range_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Fecha"
|
msgstr "Fecha"
|
||||||
@ -488,7 +488,7 @@ msgid "New Shot Records"
|
|||||||
msgstr "Nuevos Tiros Récord"
|
msgstr "Nuevos Tiros Récord"
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:55
|
#: lib/cannery_web/live/range_live/index.html.heex:55
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:97
|
#: lib/cannery_web/live/range_live/index.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No shots recorded"
|
msgid "No shots recorded"
|
||||||
msgstr "No se han grabado tiros"
|
msgstr "No se han grabado tiros"
|
||||||
@ -527,49 +527,49 @@ msgstr "No hay otros contenedores"
|
|||||||
msgid "Shot log"
|
msgid "Shot log"
|
||||||
msgstr "Registro de tiros"
|
msgstr "Registro de tiros"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:153
|
#: lib/cannery_web/components/ammo_group_table_component.ex:154
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:229
|
#: lib/cannery_web/components/ammo_group_table_component.ex:230
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:42
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:45
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:47
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "$%{amount}"
|
msgid "$%{amount}"
|
||||||
msgstr "$%{amount}"
|
msgstr "$%{amount}"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bimetal"
|
msgid "Bimetal"
|
||||||
msgstr "Bimetal"
|
msgstr "Bimetal"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Jacket type"
|
msgid "Jacket type"
|
||||||
msgstr "Tipo de camisa"
|
msgstr "Tipo de camisa"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Muzzle velocity"
|
msgid "Muzzle velocity"
|
||||||
msgstr "Velocidad de boca"
|
msgstr "Velocidad de boca"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder grains per charge"
|
msgid "Powder grains per charge"
|
||||||
msgstr "Granos de polvora por carga"
|
msgstr "Granos de polvora por carga"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder type"
|
msgid "Powder type"
|
||||||
msgstr "Tipo de polvora"
|
msgstr "Tipo de polvora"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "UPC"
|
msgid "UPC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -593,7 +593,7 @@ msgid "New password"
|
|||||||
msgstr "Nueva contraseña"
|
msgstr "Nueva contraseña"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Firing type"
|
msgid "Firing type"
|
||||||
msgstr "Tipo de fuego"
|
msgstr "Tipo de fuego"
|
||||||
@ -622,14 +622,14 @@ msgstr "Editar etiquetas de %{name}"
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr "Balas:"
|
msgstr "Balas:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:226
|
#: lib/cannery_web/components/ammo_group_table_component.ex:227
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:143
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
msgstr "No hay información de coste"
|
msgstr "No hay información de coste"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "% left"
|
msgid "% left"
|
||||||
msgstr "% restantes"
|
msgstr "% restantes"
|
||||||
@ -690,12 +690,12 @@ msgstr "Reestablecer contraseña"
|
|||||||
msgid "Record Shots"
|
msgid "Record Shots"
|
||||||
msgstr "Tiros Récord"
|
msgstr "Tiros Récord"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copies"
|
msgid "Copies"
|
||||||
msgstr "Copias"
|
msgstr "Copias"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:122
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Added on:"
|
msgid "Added on:"
|
||||||
msgstr "Añadido en:"
|
msgstr "Añadido en:"
|
||||||
@ -775,7 +775,7 @@ msgid "This ammo is not in a container"
|
|||||||
msgstr "Esta munición no está en un contenedor"
|
msgstr "Esta munición no está en un contenedor"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:98
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:96
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:23
|
#: lib/cannery_web/live/container_live/show.html.heex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Packs:"
|
msgid "Packs:"
|
||||||
@ -798,20 +798,20 @@ msgid "Leave \"Uses left\" blank to make invite unlimited"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Deje \"Usos restantes\" en blanco para hacer las invitaciónes ilimitadas"
|
"Deje \"Usos restantes\" en blanco para hacer las invitaciónes ilimitadas"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:54
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:57
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container:"
|
msgid "Container:"
|
||||||
msgstr "Contenedor:"
|
msgstr "Contenedor:"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:39
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:149
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
|
#: lib/cannery_web/live/container_live/show.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr "Mostrar usadas"
|
msgstr "Mostrar usadas"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:187
|
#: lib/cannery_web/components/ammo_group_table_component.ex:188
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -834,8 +834,8 @@ msgstr "Paquetes"
|
|||||||
msgid "Rounds"
|
msgid "Rounds"
|
||||||
msgstr "Balas"
|
msgstr "Balas"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:159
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:155
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:39
|
#: lib/cannery_web/live/container_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:104
|
#: lib/cannery_web/live/container_live/show.html.heex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View as table"
|
msgid "View as table"
|
||||||
@ -846,7 +846,7 @@ msgstr "Ver como tabla"
|
|||||||
msgid "Total ever packs"
|
msgid "Total ever packs"
|
||||||
msgstr "Paquetes totales"
|
msgstr "Paquetes totales"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:114
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:113
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever packs:"
|
msgid "Total ever packs:"
|
||||||
msgstr "Paquetes totales:"
|
msgstr "Paquetes totales:"
|
||||||
@ -856,7 +856,7 @@ msgstr "Paquetes totales:"
|
|||||||
msgid "Total ever rounds"
|
msgid "Total ever rounds"
|
||||||
msgstr "Balas totales"
|
msgstr "Balas totales"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:86
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:87
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever rounds:"
|
msgid "Total ever rounds:"
|
||||||
msgstr "Balas totales:"
|
msgstr "Balas totales:"
|
||||||
@ -866,7 +866,7 @@ msgstr "Balas totales:"
|
|||||||
msgid "Used packs"
|
msgid "Used packs"
|
||||||
msgstr "Paquetes usados"
|
msgstr "Paquetes usados"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:106
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:105
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used packs:"
|
msgid "Used packs:"
|
||||||
msgstr "Paquetes usados:"
|
msgstr "Paquetes usados:"
|
||||||
@ -876,7 +876,7 @@ msgstr "Paquetes usados:"
|
|||||||
msgid "Used rounds"
|
msgid "Used rounds"
|
||||||
msgstr "Balas usadas"
|
msgstr "Balas usadas"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:78
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:79
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used rounds:"
|
msgid "Used rounds:"
|
||||||
msgstr "Balas usadas:"
|
msgstr "Balas usadas:"
|
||||||
@ -987,39 +987,39 @@ msgid "UPC:"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Average CPR"
|
msgid "Average CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.ex:135
|
#: lib/cannery_web/live/ammo_type_live/show.ex:150
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr "Editar %{ammo_type_name}"
|
msgstr "Editar %{ammo_type_name}"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:233
|
#: lib/cannery_web/components/ammo_group_table_component.ex:234
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr "Vacio"
|
msgstr "Vacio"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR"
|
msgid "CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:46
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR:"
|
msgid "CPR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Original Count"
|
msgid "Original Count"
|
||||||
msgstr "Cantidad Original"
|
msgstr "Cantidad Original"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:21
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Original Count:"
|
msgid "Original Count:"
|
||||||
msgstr "Cantidad Original:"
|
msgstr "Cantidad Original:"
|
||||||
@ -1034,28 +1034,28 @@ msgstr "Menu principal"
|
|||||||
msgid "Total packs:"
|
msgid "Total packs:"
|
||||||
msgstr "Paquetes totales:"
|
msgstr "Paquetes totales:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
#: lib/cannery_web/components/ammo_group_table_component.ex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on"
|
msgid "Last used on"
|
||||||
msgstr "Usada por última vez en"
|
msgstr "Usada por última vez en"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:36
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr "Usada por última vez en:"
|
msgstr "Usada por última vez en:"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:171
|
#: lib/cannery_web/components/ammo_group_table_component.ex:172
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr "Nunca usada"
|
msgstr "Nunca usada"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:57
|
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on"
|
msgid "Purchased on"
|
||||||
msgstr "Comprada en"
|
msgstr "Comprada en"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:31
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:34
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on:"
|
msgid "Purchased on:"
|
||||||
@ -1067,32 +1067,32 @@ msgid "Edit ammo"
|
|||||||
msgstr "Editar munición"
|
msgstr "Editar munición"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:46
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:47
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "No Ammo types"
|
msgid "No Ammo types"
|
||||||
msgstr "Sin tipo de Munición"
|
msgstr "Sin tipo de Munición"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:33
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search catalog"
|
msgid "Search catalog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:58
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:59
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search ammo"
|
msgid "Search ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:33
|
#: lib/cannery_web/live/container_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search containers"
|
msgid "Search containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:36
|
#: lib/cannery_web/live/tag_live/index.html.heex:37
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search tags"
|
msgid "Search tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:90
|
#: lib/cannery_web/live/range_live/index.html.heex:91
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search shot records"
|
msgid "Search shot records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1200,3 +1200,54 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "+P"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid ".223"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "5.56x46mm NATO"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Boxer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Centerfire"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
|
||||||
|
#: lib/cannery_web/live/range_live/form_component.html.heex:34
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Really great weather"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/ammo_group_table_component.ex:54
|
||||||
|
#: lib/cannery_web/components/ammo_type_table_component.ex:121
|
||||||
|
#: lib/cannery_web/components/container_table_component.ex:67
|
||||||
|
#: lib/cannery_web/components/move_ammo_group_component.ex:70
|
||||||
|
#: lib/cannery_web/components/shot_group_table_component.ex:45
|
||||||
|
#: lib/cannery_web/live/ammo_group_live/show.ex:94
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:105
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Live Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:90
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
@ -114,11 +114,6 @@ msgstr "No autorizado"
|
|||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr "El enlace de confirmación de usuario no es válido o ha caducado."
|
msgstr "El enlace de confirmación de usuario no es válido o ha caducado."
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:18
|
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "You are not authorized to view this page"
|
|
||||||
msgstr "No está autorizado a ver esta página"
|
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_auth.ex:177
|
#: lib/cannery_web/controllers/user_auth.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
|
@ -65,15 +65,15 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
||||||
msgstr "Está seguro que desea eliminar %{email}? Esta acción es permanente!"
|
msgstr "Está seguro que desea eliminar %{email}? Esta acción es permanente!"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:99
|
#: lib/cannery_web/live/container_live/index.html.heex:100
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:155
|
#: lib/cannery_web/live/container_live/index.html.heex:156
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:52
|
#: lib/cannery_web/live/container_live/show.html.heex:52
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:63
|
#: lib/cannery_web/live/tag_live/index.html.heex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}?"
|
msgid "Are you sure you want to delete %{name}?"
|
||||||
msgstr "Está seguro que desea eliminar %{name}?"
|
msgstr "Está seguro que desea eliminar %{name}?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:167
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:168
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this ammo?"
|
msgid "Are you sure you want to delete this ammo?"
|
||||||
@ -128,12 +128,12 @@ msgstr "Contraseña cambiada exitosamente."
|
|||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr "Por favor chequea el correo para verificar tu cuenta"
|
msgstr "Por favor chequea el correo para verificar tu cuenta"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
|
#: lib/cannery_web/live/container_live/form_component.html.heex:57
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
|
#: lib/cannery_web/live/range_live/form_component.html.heex:46
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
@ -176,7 +176,7 @@ msgid "Are you sure you want to unstage this ammo?"
|
|||||||
msgstr "Está seguro que desea desmontar esta munición?"
|
msgstr "Está seguro que desea desmontar esta munición?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:127
|
#: lib/cannery_web/live/range_live/index.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this shot record?"
|
msgid "Are you sure you want to delete this shot record?"
|
||||||
msgstr "¿Está segure que quiere borrar este récord de disparos?"
|
msgstr "¿Está segure que quiere borrar este récord de disparos?"
|
||||||
@ -202,7 +202,7 @@ msgstr "%{email} confirmado exitosamente."
|
|||||||
msgid "Ammo moved to %{name} successfully"
|
msgid "Ammo moved to %{name} successfully"
|
||||||
msgstr "Munición movida a %{name} exitosamente"
|
msgstr "Munición movida a %{name} exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:126
|
#: lib/cannery_web/live/invite_live/index.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copied to clipboard"
|
msgid "Copied to clipboard"
|
||||||
msgstr "Copiado al portapapeles"
|
msgstr "Copiado al portapapeles"
|
||||||
@ -218,7 +218,7 @@ msgstr "%{name} eliminado exitosamente"
|
|||||||
msgid "You'll need to"
|
msgid "You'll need to"
|
||||||
msgstr "Necesitará hacerlo"
|
msgstr "Necesitará hacerlo"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Creating..."
|
msgid "Creating..."
|
||||||
msgstr "Creando..."
|
msgstr "Creando..."
|
||||||
@ -256,7 +256,7 @@ msgid_plural "Ammo added successfully"
|
|||||||
msgstr[0] "Munición añadida exitosamente"
|
msgstr[0] "Munición añadida exitosamente"
|
||||||
msgstr[1] "Municiones añadidas exitosamente"
|
msgstr[1] "Municiones añadidas exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:97
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
||||||
@ -269,27 +269,27 @@ msgstr ""
|
|||||||
msgid "Register to setup Cannery"
|
msgid "Register to setup Cannery"
|
||||||
msgstr "Regístrese para configurar %{name}"
|
msgstr "Regístrese para configurar %{name}"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:53
|
#: lib/cannery_web/live/invite_live/index.ex:43
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} deleted succesfully"
|
msgid "%{invite_name} deleted succesfully"
|
||||||
msgstr "%{name} borrado exitosamente"
|
msgstr "%{name} borrado exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:114
|
#: lib/cannery_web/live/invite_live/index.ex:104
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} disabled succesfully"
|
msgid "%{invite_name} disabled succesfully"
|
||||||
msgstr "%{name} desactivado exitosamente"
|
msgstr "%{name} desactivado exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:90
|
#: lib/cannery_web/live/invite_live/index.ex:80
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} enabled succesfully"
|
msgid "%{invite_name} enabled succesfully"
|
||||||
msgstr "%{name} activado exitosamente"
|
msgstr "%{name} activado exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:68
|
#: lib/cannery_web/live/invite_live/index.ex:58
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} updated succesfully"
|
msgid "%{invite_name} updated succesfully"
|
||||||
msgstr "%{name} actualizado exitosamente"
|
msgstr "%{name} actualizado exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:135
|
#: lib/cannery_web/live/invite_live/index.ex:125
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{user_email} deleted succesfully"
|
msgid "%{user_email} deleted succesfully"
|
||||||
msgstr "%{name} borrado exitosamente"
|
msgstr "%{name} borrado exitosamente"
|
||||||
|
@ -79,7 +79,7 @@ msgstr "Mot de passe oublié ?"
|
|||||||
msgid "Invite someone new!"
|
msgid "Invite someone new!"
|
||||||
msgstr "Invitez une nouvelle personne !"
|
msgstr "Invitez une nouvelle personne !"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:122
|
#: lib/cannery_web/components/core_components/topbar.html.heex:124
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
||||||
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
||||||
@ -110,7 +110,7 @@ msgstr "Nouveau conteneur"
|
|||||||
msgid "New Tag"
|
msgid "New Tag"
|
||||||
msgstr "Nouveau tag"
|
msgstr "Nouveau tag"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:114
|
#: lib/cannery_web/components/core_components/topbar.html.heex:116
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
||||||
@ -133,12 +133,12 @@ msgstr "Renvoyer les instructions de confirmation"
|
|||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr "Réinitialisé le mot de passe"
|
msgstr "Réinitialisé le mot de passe"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
|
#: lib/cannery_web/live/container_live/form_component.html.heex:55
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
|
#: lib/cannery_web/live/range_live/form_component.html.heex:44
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -169,7 +169,7 @@ msgstr "Munition préparée"
|
|||||||
msgid "Why not get some ready to shoot?"
|
msgid "Why not get some ready to shoot?"
|
||||||
msgstr "Pourquoi pas en préparer pour tirer ?"
|
msgstr "Pourquoi pas en préparer pour tirer ?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:45
|
#: lib/cannery_web/live/range_live/index.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@ -196,12 +196,12 @@ msgstr "Copier dans le presse-papier"
|
|||||||
msgid "add a container first"
|
msgid "add a container first"
|
||||||
msgstr "ajouter un conteneur en premier"
|
msgstr "ajouter un conteneur en premier"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr "Créer"
|
msgstr "Créer"
|
||||||
|
|
||||||
#: lib/cannery_web/templates/user_settings/edit.html.heex:111
|
#: lib/cannery_web/templates/user_settings/edit.html.heex:110
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Change Language"
|
msgid "Change Language"
|
||||||
msgstr "Changer la langue"
|
msgstr "Changer la langue"
|
||||||
@ -222,7 +222,7 @@ msgid "add an ammo type first"
|
|||||||
msgstr "Ajoutez d'abord un type de munitions"
|
msgstr "Ajoutez d'abord un type de munitions"
|
||||||
|
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:120
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:121
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Move ammo"
|
msgid "Move ammo"
|
||||||
@ -250,13 +250,13 @@ msgstr ""
|
|||||||
msgid "Export Data as JSON"
|
msgid "Export Data as JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:84
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{ammo_type_name}"
|
msgid "Clone %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:87
|
#: lib/cannery_web/live/container_live/index.html.heex:88
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:143
|
#: lib/cannery_web/live/container_live/index.html.heex:144
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{container_name}"
|
msgid "Clone %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -266,20 +266,20 @@ msgstr ""
|
|||||||
msgid "Copy invite link for %{invite_name}"
|
msgid "Copy invite link for %{invite_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{ammo_type_name}"
|
msgid "Delete %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:102
|
#: lib/cannery_web/live/container_live/index.html.heex:103
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:158
|
#: lib/cannery_web/live/container_live/index.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:55
|
#: lib/cannery_web/live/container_live/show.html.heex:55
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{container_name}"
|
msgid "Delete %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:65
|
#: lib/cannery_web/live/tag_live/index.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{tag_name}"
|
msgid "Delete %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -290,30 +290,30 @@ msgid "Delete invite for %{invite_name}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:130
|
#: lib/cannery_web/live/range_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete shot record of %{shot_group_count} shots"
|
msgid "Delete shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:74
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:75
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:77
|
#: lib/cannery_web/live/container_live/index.html.heex:78
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:133
|
#: lib/cannery_web/live/container_live/index.html.heex:134
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:42
|
#: lib/cannery_web/live/container_live/show.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{container_name}"
|
msgid "Edit %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:52
|
#: lib/cannery_web/live/tag_live/index.html.heex:53
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{tag_name}"
|
msgid "Edit %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:142
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:143
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
||||||
@ -329,44 +329,44 @@ msgstr ""
|
|||||||
msgid "Edit shot group of %{shot_group_count} shots"
|
msgid "Edit shot group of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:113
|
#: lib/cannery_web/live/range_live/index.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit shot record of %{shot_group_count} shots"
|
msgid "Edit shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:97
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Stage"
|
msgid "Stage"
|
||||||
msgstr "Munition préparée"
|
msgstr "Munition préparée"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:65
|
#: lib/cannery_web/live/container_live/index.html.heex:66
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:122
|
#: lib/cannery_web/live/container_live/index.html.heex:123
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag %{container_name}"
|
msgid "Tag %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:95
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unstage"
|
msgid "Unstage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:65
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View %{ammo_type_name}"
|
msgid "View %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:154
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:155
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:169
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:170
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:130
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "View ammo group of %{ammo_group_count} bullets"
|
msgid "View ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -38,7 +38,7 @@ msgstr "Administrateur·ices :"
|
|||||||
msgid "Ammo"
|
msgid "Ammo"
|
||||||
msgstr "Munition"
|
msgstr "Munition"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:89
|
#: lib/cannery_web/components/ammo_group_table_component.ex:90
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo type"
|
msgid "Ammo type"
|
||||||
@ -50,49 +50,49 @@ msgid "Background color"
|
|||||||
msgstr "Couleur de fond"
|
msgstr "Couleur de fond"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Blank"
|
msgid "Blank"
|
||||||
msgstr "Vide"
|
msgstr "Vide"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr "Cuivre"
|
msgstr "Cuivre"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet core"
|
msgid "Bullet core"
|
||||||
msgstr "Noyau de balle"
|
msgstr "Noyau de balle"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet type"
|
msgid "Bullet type"
|
||||||
msgstr "Type de balle"
|
msgstr "Type de balle"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Caliber"
|
msgid "Caliber"
|
||||||
msgstr "Calibre"
|
msgstr "Calibre"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cartridge"
|
msgid "Cartridge"
|
||||||
msgstr "Cartouche"
|
msgstr "Cartouche"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Case material"
|
msgid "Case material"
|
||||||
msgstr "Matériau de la caisse"
|
msgstr "Matériau de la caisse"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
|
#: lib/cannery_web/components/ammo_group_table_component.ex:66
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container"
|
msgid "Container"
|
||||||
msgstr "Conteneur"
|
msgstr "Conteneur"
|
||||||
@ -106,12 +106,12 @@ msgid "Containers"
|
|||||||
msgstr "Conteneurs"
|
msgstr "Conteneurs"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Corrosive"
|
msgid "Corrosive"
|
||||||
msgstr "Corrosive"
|
msgstr "Corrosive"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:76
|
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count"
|
msgid "Count"
|
||||||
@ -141,7 +141,7 @@ msgstr "Description :"
|
|||||||
msgid "Easy to Use:"
|
msgid "Easy to Use:"
|
||||||
msgstr "Simple à utiliser :"
|
msgstr "Simple à utiliser :"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:33
|
#: lib/cannery_web/live/invite_live/index.ex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Invite"
|
msgid "Edit Invite"
|
||||||
msgstr "Modifier l’invitation"
|
msgstr "Modifier l’invitation"
|
||||||
@ -151,24 +151,24 @@ msgstr "Modifier l’invitation"
|
|||||||
msgid "Edit Tag"
|
msgid "Edit Tag"
|
||||||
msgstr "Modifier le tag"
|
msgstr "Modifier le tag"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Example bullet type abbreviations"
|
msgid "Example bullet type abbreviations"
|
||||||
msgstr "Exemple d’abréviations de type de balle"
|
msgstr "Exemple d’abréviations de type de balle"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "FMJ"
|
msgid "FMJ"
|
||||||
msgstr "FMJ"
|
msgstr "FMJ"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Grains"
|
msgid "Grains"
|
||||||
msgstr "Graines"
|
msgstr "Graines"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Incendiary"
|
msgid "Incendiary"
|
||||||
msgstr "Incendiaire"
|
msgstr "Incendiaire"
|
||||||
@ -189,7 +189,7 @@ msgid "Invite Only"
|
|||||||
msgstr "Uniquement sur invitation"
|
msgstr "Uniquement sur invitation"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:41
|
#: lib/cannery_web/live/invite_live/index.ex:31
|
||||||
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invites"
|
msgid "Invites"
|
||||||
@ -202,7 +202,7 @@ msgstr "Me garder authentifié durant 60 jours"
|
|||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:47
|
#: lib/cannery_web/components/container_table_component.ex:47
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
|
#: lib/cannery_web/live/container_live/form_component.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr "Localisation"
|
msgstr "Localisation"
|
||||||
@ -213,13 +213,13 @@ msgstr "Localisation"
|
|||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr "Localisation :"
|
msgstr "Localisation :"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
|
#: lib/cannery_web/live/container_live/form_component.html.heex:41
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Magazine, Clip, Ammo Box, etc"
|
msgid "Magazine, Clip, Ammo Box, etc"
|
||||||
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
|
msgstr "Chargeur, lame-chargeur, boite de munition, etc."
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Manufacturer"
|
msgid "Manufacturer"
|
||||||
msgstr "Fabricant"
|
msgstr "Fabricant"
|
||||||
@ -256,7 +256,7 @@ msgstr "Nouveau type de munition"
|
|||||||
msgid "New Container"
|
msgid "New Container"
|
||||||
msgstr "Nouveau conteneur"
|
msgstr "Nouveau conteneur"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:37
|
#: lib/cannery_web/live/invite_live/index.ex:27
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Invite"
|
msgid "New Invite"
|
||||||
msgstr "Nouvelle invitation"
|
msgstr "Nouvelle invitation"
|
||||||
@ -267,18 +267,18 @@ msgid "New Tag"
|
|||||||
msgstr "Nouveau tag"
|
msgstr "Nouveau tag"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:71
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:72
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo"
|
msgid "No Ammo"
|
||||||
msgstr "Aucune munition"
|
msgstr "Aucune munition"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:167
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:163
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No ammo for this type"
|
msgid "No ammo for this type"
|
||||||
msgstr "Aucune munition pour ce type"
|
msgstr "Aucune munition pour ce type"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:8
|
#: lib/cannery_web/live/container_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:47
|
#: lib/cannery_web/live/container_live/index.html.heex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No containers"
|
msgid "No containers"
|
||||||
msgstr "Aucun conteneur"
|
msgstr "Aucun conteneur"
|
||||||
@ -290,13 +290,13 @@ msgstr "Aucune invitation"
|
|||||||
|
|
||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:43
|
#: lib/cannery_web/live/tag_live/index.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No tags"
|
msgid "No tags"
|
||||||
msgstr "Aucun tag"
|
msgstr "Aucun tag"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
#: lib/cannery_web/components/ammo_group_table_component.ex:82
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
||||||
@ -305,36 +305,36 @@ msgstr "Aucun tag"
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr "Notes"
|
msgstr "Notes"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:26
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:29
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Notes:"
|
msgid "Notes:"
|
||||||
msgstr "Notes :"
|
msgstr "Notes :"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
|
#: lib/cannery_web/live/container_live/form_component.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "On the bookshelf"
|
msgid "On the bookshelf"
|
||||||
msgstr "Sur l’étagère"
|
msgstr "Sur l’étagère"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr "Pression"
|
msgstr "Pression"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid"
|
msgid "Price paid"
|
||||||
msgstr "Prix payé"
|
msgstr "Prix payé"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:41
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid:"
|
msgid "Price paid:"
|
||||||
msgstr "Prix payé :"
|
msgstr "Prix payé :"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Primer type"
|
msgid "Primer type"
|
||||||
msgstr "Type d’amorce"
|
msgstr "Type d’amorce"
|
||||||
@ -367,7 +367,7 @@ msgstr "Paramètres"
|
|||||||
msgid "Simple:"
|
msgid "Simple:"
|
||||||
msgstr "Simple :"
|
msgstr "Simple :"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Steel"
|
msgid "Steel"
|
||||||
msgstr "Acier"
|
msgstr "Acier"
|
||||||
@ -404,14 +404,14 @@ msgid "The self-hosted firearm tracker website"
|
|||||||
msgstr "Le site web de suivi d’arme à feux auto-hébergé"
|
msgstr "Le site web de suivi d’arme à feux auto-hébergé"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracer"
|
msgid "Tracer"
|
||||||
msgstr "Traceuse"
|
msgstr "Traceuse"
|
||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:48
|
#: lib/cannery_web/components/container_table_component.ex:48
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
|
#: lib/cannery_web/live/container_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr "Type"
|
msgstr "Type"
|
||||||
@ -442,7 +442,7 @@ msgstr "Vos données restent avec vous, point final"
|
|||||||
msgid "No tags for this container"
|
msgid "No tags for this container"
|
||||||
msgstr "Aucun tag pour ce conteneur"
|
msgstr "Aucun tag pour ce conteneur"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:72
|
#: lib/cannery_web/components/ammo_group_table_component.ex:73
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Range"
|
msgid "Range"
|
||||||
@ -453,10 +453,10 @@ msgstr "Portée"
|
|||||||
msgid "Range day"
|
msgid "Range day"
|
||||||
msgstr "Journée de stand"
|
msgstr "Journée de stand"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
|
#: lib/cannery_web/live/range_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr "Date"
|
msgstr "Date"
|
||||||
@ -489,7 +489,7 @@ msgid "New Shot Records"
|
|||||||
msgstr "Nouveaux enregistrements de tir"
|
msgstr "Nouveaux enregistrements de tir"
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:55
|
#: lib/cannery_web/live/range_live/index.html.heex:55
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:97
|
#: lib/cannery_web/live/range_live/index.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No shots recorded"
|
msgid "No shots recorded"
|
||||||
msgstr "Aucun tir enregistré"
|
msgstr "Aucun tir enregistré"
|
||||||
@ -528,49 +528,49 @@ msgstr "Aucun autre conteneur"
|
|||||||
msgid "Shot log"
|
msgid "Shot log"
|
||||||
msgstr "Évènements de tir"
|
msgstr "Évènements de tir"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:153
|
#: lib/cannery_web/components/ammo_group_table_component.ex:154
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:229
|
#: lib/cannery_web/components/ammo_group_table_component.ex:230
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:42
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:45
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:47
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "$%{amount}"
|
msgid "$%{amount}"
|
||||||
msgstr "%{amount} $"
|
msgstr "%{amount} $"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bimetal"
|
msgid "Bimetal"
|
||||||
msgstr "Bi-métal"
|
msgstr "Bi-métal"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Jacket type"
|
msgid "Jacket type"
|
||||||
msgstr "Type de douille"
|
msgstr "Type de douille"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Muzzle velocity"
|
msgid "Muzzle velocity"
|
||||||
msgstr "Vélocité du canon"
|
msgstr "Vélocité du canon"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder grains per charge"
|
msgid "Powder grains per charge"
|
||||||
msgstr "Graines de poudre par charge"
|
msgstr "Graines de poudre par charge"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder type"
|
msgid "Powder type"
|
||||||
msgstr "Type de poudre"
|
msgstr "Type de poudre"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "UPC"
|
msgid "UPC"
|
||||||
msgstr "UPC"
|
msgstr "UPC"
|
||||||
@ -594,7 +594,7 @@ msgid "New password"
|
|||||||
msgstr "Nouveau mot de passe"
|
msgstr "Nouveau mot de passe"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Firing type"
|
msgid "Firing type"
|
||||||
msgstr "Type d’allumage"
|
msgstr "Type d’allumage"
|
||||||
@ -623,14 +623,14 @@ msgstr "Éditer les tags de %{name}"
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr "Cartouches :"
|
msgstr "Cartouches :"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:226
|
#: lib/cannery_web/components/ammo_group_table_component.ex:227
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:143
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
msgstr "Aucune information de prix"
|
msgstr "Aucune information de prix"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "% left"
|
msgid "% left"
|
||||||
msgstr "% restante"
|
msgstr "% restante"
|
||||||
@ -691,12 +691,12 @@ msgstr "Réinitialiser votre mot de passe"
|
|||||||
msgid "Record Shots"
|
msgid "Record Shots"
|
||||||
msgstr "Enregistrer des tirs"
|
msgstr "Enregistrer des tirs"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copies"
|
msgid "Copies"
|
||||||
msgstr "Exemplaires"
|
msgstr "Exemplaires"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:122
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Added on:"
|
msgid "Added on:"
|
||||||
msgstr "Ajouté le :"
|
msgstr "Ajouté le :"
|
||||||
@ -776,7 +776,7 @@ msgid "This ammo is not in a container"
|
|||||||
msgstr "Ce groupe de munition n’est pas dans un conteneur"
|
msgstr "Ce groupe de munition n’est pas dans un conteneur"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:98
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:96
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:23
|
#: lib/cannery_web/live/container_live/show.html.heex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Packs:"
|
msgid "Packs:"
|
||||||
@ -799,20 +799,20 @@ msgid "Leave \"Uses left\" blank to make invite unlimited"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Laissez \"Utilisations restantes\" vide pour rendre l'invitation illimitée"
|
"Laissez \"Utilisations restantes\" vide pour rendre l'invitation illimitée"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:54
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:57
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Container:"
|
msgid "Container:"
|
||||||
msgstr "Conteneur"
|
msgstr "Conteneur"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:39
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:149
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
|
#: lib/cannery_web/live/container_live/show.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:187
|
#: lib/cannery_web/components/ammo_group_table_component.ex:188
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -835,8 +835,8 @@ msgstr "Packages :"
|
|||||||
msgid "Rounds"
|
msgid "Rounds"
|
||||||
msgstr "Cartouches :"
|
msgstr "Cartouches :"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:159
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:155
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:39
|
#: lib/cannery_web/live/container_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:104
|
#: lib/cannery_web/live/container_live/show.html.heex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View as table"
|
msgid "View as table"
|
||||||
@ -847,7 +847,7 @@ msgstr ""
|
|||||||
msgid "Total ever packs"
|
msgid "Total ever packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:114
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:113
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever packs:"
|
msgid "Total ever packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -857,7 +857,7 @@ msgstr ""
|
|||||||
msgid "Total ever rounds"
|
msgid "Total ever rounds"
|
||||||
msgstr "Quantité de cartouches"
|
msgstr "Quantité de cartouches"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:86
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:87
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Total ever rounds:"
|
msgid "Total ever rounds:"
|
||||||
msgstr "Nombre totale de cartouches tirées :"
|
msgstr "Nombre totale de cartouches tirées :"
|
||||||
@ -867,7 +867,7 @@ msgstr "Nombre totale de cartouches tirées :"
|
|||||||
msgid "Used packs"
|
msgid "Used packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:106
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:105
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used packs:"
|
msgid "Used packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -877,7 +877,7 @@ msgstr ""
|
|||||||
msgid "Used rounds"
|
msgid "Used rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:78
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:79
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Used rounds:"
|
msgid "Used rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -988,39 +988,39 @@ msgid "UPC:"
|
|||||||
msgstr "UPC"
|
msgstr "UPC"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Average CPR"
|
msgid "Average CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.ex:135
|
#: lib/cannery_web/live/ammo_type_live/show.ex:150
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr "Éditer %{name}"
|
msgstr "Éditer %{name}"
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:233
|
#: lib/cannery_web/components/ammo_group_table_component.ex:234
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR"
|
msgid "CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:46
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR:"
|
msgid "CPR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count"
|
msgid "Original Count"
|
||||||
msgstr "Nombre original :"
|
msgstr "Nombre original :"
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:21
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:24
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count:"
|
msgid "Original Count:"
|
||||||
msgstr "Nombre original :"
|
msgstr "Nombre original :"
|
||||||
@ -1035,28 +1035,28 @@ msgstr ""
|
|||||||
msgid "Total packs:"
|
msgid "Total packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
#: lib/cannery_web/components/ammo_group_table_component.ex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on"
|
msgid "Last used on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:36
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:171
|
#: lib/cannery_web/components/ammo_group_table_component.ex:172
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:57
|
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on"
|
msgid "Purchased on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:31
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:34
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on:"
|
msgid "Purchased on:"
|
||||||
@ -1068,32 +1068,32 @@ msgid "Edit ammo"
|
|||||||
msgstr "Éditer le type de munition"
|
msgstr "Éditer le type de munition"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:46
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:47
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "No Ammo types"
|
msgid "No Ammo types"
|
||||||
msgstr "Aucun type de munition"
|
msgstr "Aucun type de munition"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:33
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search catalog"
|
msgid "Search catalog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:58
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:59
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search ammo"
|
msgid "Search ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:33
|
#: lib/cannery_web/live/container_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search containers"
|
msgid "Search containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:36
|
#: lib/cannery_web/live/tag_live/index.html.heex:37
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search tags"
|
msgid "Search tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:90
|
#: lib/cannery_web/live/range_live/index.html.heex:91
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search shot records"
|
msgid "Search shot records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1201,3 +1201,54 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "+P"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid ".223"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "5.56x46mm NATO"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Boxer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Centerfire"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
|
||||||
|
#: lib/cannery_web/live/range_live/form_component.html.heex:34
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Really great weather"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/ammo_group_table_component.ex:54
|
||||||
|
#: lib/cannery_web/components/ammo_type_table_component.ex:121
|
||||||
|
#: lib/cannery_web/components/container_table_component.ex:67
|
||||||
|
#: lib/cannery_web/components/move_ammo_group_component.ex:70
|
||||||
|
#: lib/cannery_web/components/shot_group_table_component.ex:45
|
||||||
|
#: lib/cannery_web/live/ammo_group_live/show.ex:94
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:105
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Live Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:90
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
@ -113,11 +113,6 @@ msgstr "Non autorisé·e"
|
|||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr "Le lien de confirmation d’utilisateur·ice est invalide ou a expiré."
|
msgstr "Le lien de confirmation d’utilisateur·ice est invalide ou a expiré."
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:18
|
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "You are not authorized to view this page"
|
|
||||||
msgstr "Vous n’êtes pas autorisé·e à voir cette page"
|
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_auth.ex:177
|
#: lib/cannery_web/controllers/user_auth.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
|
@ -66,15 +66,15 @@ msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Êtes-vous certain·e de supprimer %{email} ? Cette action est définitive !"
|
"Êtes-vous certain·e de supprimer %{email} ? Cette action est définitive !"
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:99
|
#: lib/cannery_web/live/container_live/index.html.heex:100
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:155
|
#: lib/cannery_web/live/container_live/index.html.heex:156
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:52
|
#: lib/cannery_web/live/container_live/show.html.heex:52
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:63
|
#: lib/cannery_web/live/tag_live/index.html.heex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}?"
|
msgid "Are you sure you want to delete %{name}?"
|
||||||
msgstr "Êtes-vous certain·e de supprimer %{name} ?"
|
msgstr "Êtes-vous certain·e de supprimer %{name} ?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:167
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:168
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this ammo?"
|
msgid "Are you sure you want to delete this ammo?"
|
||||||
@ -129,12 +129,12 @@ msgstr "Mot de passe mis à jour avec succès."
|
|||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
|
msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
|
#: lib/cannery_web/live/container_live/form_component.html.heex:57
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
|
#: lib/cannery_web/live/range_live/form_component.html.heex:46
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
@ -178,7 +178,7 @@ msgid "Are you sure you want to unstage this ammo?"
|
|||||||
msgstr "Êtes-vous certain·e de vouloir désélectionner cette munition ?"
|
msgstr "Êtes-vous certain·e de vouloir désélectionner cette munition ?"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:127
|
#: lib/cannery_web/live/range_live/index.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this shot record?"
|
msgid "Are you sure you want to delete this shot record?"
|
||||||
msgstr "Êtes-vous certain·e de vouloir supprimer cet enregistrement de tir ?"
|
msgstr "Êtes-vous certain·e de vouloir supprimer cet enregistrement de tir ?"
|
||||||
@ -204,7 +204,7 @@ msgstr "%{email} confirmé avec succès."
|
|||||||
msgid "Ammo moved to %{name} successfully"
|
msgid "Ammo moved to %{name} successfully"
|
||||||
msgstr "Munition déplacée à %{name} avec succès"
|
msgstr "Munition déplacée à %{name} avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:126
|
#: lib/cannery_web/live/invite_live/index.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copied to clipboard"
|
msgid "Copied to clipboard"
|
||||||
msgstr "Copié dans le presse-papier"
|
msgstr "Copié dans le presse-papier"
|
||||||
@ -220,7 +220,7 @@ msgstr "%{name} retiré avec succès"
|
|||||||
msgid "You'll need to"
|
msgid "You'll need to"
|
||||||
msgstr "Vous aurez besoin de"
|
msgstr "Vous aurez besoin de"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Creating..."
|
msgid "Creating..."
|
||||||
msgstr "Création en cours…"
|
msgstr "Création en cours…"
|
||||||
@ -258,7 +258,7 @@ msgid_plural "Ammo added successfully"
|
|||||||
msgstr[0] "Groupe de munition mis à jour avec succès"
|
msgstr[0] "Groupe de munition mis à jour avec succès"
|
||||||
msgstr[1] "Groupe de munition mis à jour avec succès"
|
msgstr[1] "Groupe de munition mis à jour avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:97
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
||||||
@ -269,27 +269,27 @@ msgstr "Êtes-vous certain·e de supprimer %{name} ?"
|
|||||||
msgid "Register to setup Cannery"
|
msgid "Register to setup Cannery"
|
||||||
msgstr "S’enregistrer pour mettre en place %{name}"
|
msgstr "S’enregistrer pour mettre en place %{name}"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:53
|
#: lib/cannery_web/live/invite_live/index.ex:43
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} deleted succesfully"
|
msgid "%{invite_name} deleted succesfully"
|
||||||
msgstr "%{name} supprimé· avec succès"
|
msgstr "%{name} supprimé· avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:114
|
#: lib/cannery_web/live/invite_live/index.ex:104
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} disabled succesfully"
|
msgid "%{invite_name} disabled succesfully"
|
||||||
msgstr "%{name} supprimé·e avec succès"
|
msgstr "%{name} supprimé·e avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:90
|
#: lib/cannery_web/live/invite_live/index.ex:80
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} enabled succesfully"
|
msgid "%{invite_name} enabled succesfully"
|
||||||
msgstr "%{name} activé·e avec succès"
|
msgstr "%{name} activé·e avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:68
|
#: lib/cannery_web/live/invite_live/index.ex:58
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} updated succesfully"
|
msgid "%{invite_name} updated succesfully"
|
||||||
msgstr "%{name} mis à jour avec succès"
|
msgstr "%{name} mis à jour avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:135
|
#: lib/cannery_web/live/invite_live/index.ex:125
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{user_email} deleted succesfully"
|
msgid "%{user_email} deleted succesfully"
|
||||||
msgstr "%{name} supprimé· avec succès"
|
msgstr "%{name} supprimé· avec succès"
|
||||||
|
@ -77,7 +77,7 @@ msgstr ""
|
|||||||
msgid "Invite someone new!"
|
msgid "Invite someone new!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:122
|
#: lib/cannery_web/components/core_components/topbar.html.heex:124
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:32
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
#: lib/cannery_web/templates/user_registration/new.html.heex:44
|
||||||
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
#: lib/cannery_web/templates/user_reset_password/edit.html.heex:45
|
||||||
@ -108,7 +108,7 @@ msgstr ""
|
|||||||
msgid "New Tag"
|
msgid "New Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:114
|
#: lib/cannery_web/components/core_components/topbar.html.heex:116
|
||||||
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
#: lib/cannery_web/templates/user_confirmation/new.html.heex:29
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
#: lib/cannery_web/templates/user_registration/new.html.heex:3
|
||||||
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
#: lib/cannery_web/templates/user_registration/new.html.heex:37
|
||||||
@ -131,12 +131,12 @@ msgstr ""
|
|||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:54
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:82
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:84
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:157
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:51
|
#: lib/cannery_web/live/container_live/form_component.html.heex:55
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:32
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:41
|
#: lib/cannery_web/live/range_live/form_component.html.heex:44
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:37
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
@ -167,7 +167,7 @@ msgstr ""
|
|||||||
msgid "Why not get some ready to shoot?"
|
msgid "Why not get some ready to shoot?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:103
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:45
|
#: lib/cannery_web/live/range_live/index.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
@ -194,12 +194,12 @@ msgstr ""
|
|||||||
msgid "add a container first"
|
msgid "add a container first"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:75
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Create"
|
msgid "Create"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/templates/user_settings/edit.html.heex:111
|
#: lib/cannery_web/templates/user_settings/edit.html.heex:110
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Change Language"
|
msgid "Change Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -220,7 +220,7 @@ msgid "add an ammo type first"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
#: lib/cannery_web/components/move_ammo_group_component.ex:80
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:120
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:121
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Move ammo"
|
msgid "Move ammo"
|
||||||
@ -248,13 +248,13 @@ msgstr ""
|
|||||||
msgid "Export Data as JSON"
|
msgid "Export Data as JSON"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:84
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{ammo_type_name}"
|
msgid "Clone %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:87
|
#: lib/cannery_web/live/container_live/index.html.heex:88
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:143
|
#: lib/cannery_web/live/container_live/index.html.heex:144
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Clone %{container_name}"
|
msgid "Clone %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -264,20 +264,20 @@ msgstr ""
|
|||||||
msgid "Copy invite link for %{invite_name}"
|
msgid "Copy invite link for %{invite_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:103
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:104
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:36
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{ammo_type_name}"
|
msgid "Delete %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:102
|
#: lib/cannery_web/live/container_live/index.html.heex:103
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:158
|
#: lib/cannery_web/live/container_live/index.html.heex:159
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:55
|
#: lib/cannery_web/live/container_live/show.html.heex:55
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{container_name}"
|
msgid "Delete %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:65
|
#: lib/cannery_web/live/tag_live/index.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete %{tag_name}"
|
msgid "Delete %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -288,30 +288,30 @@ msgid "Delete invite for %{invite_name}"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
#: lib/cannery_web/live/ammo_group_live/show.ex:161
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:130
|
#: lib/cannery_web/live/range_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Delete shot record of %{shot_group_count} shots"
|
msgid "Delete shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:74
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:75
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:77
|
#: lib/cannery_web/live/container_live/index.html.heex:78
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:133
|
#: lib/cannery_web/live/container_live/index.html.heex:134
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:42
|
#: lib/cannery_web/live/container_live/show.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{container_name}"
|
msgid "Edit %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:52
|
#: lib/cannery_web/live/tag_live/index.html.heex:53
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit %{tag_name}"
|
msgid "Edit %{tag_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:142
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:143
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:62
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
msgid "Edit ammo group of %{ammo_group_count} bullets"
|
||||||
@ -327,44 +327,44 @@ msgstr ""
|
|||||||
msgid "Edit shot group of %{shot_group_count} shots"
|
msgid "Edit shot group of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:113
|
#: lib/cannery_web/live/range_live/index.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit shot record of %{shot_group_count} shots"
|
msgid "Edit shot record of %{shot_group_count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:97
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Stage"
|
msgid "Stage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:65
|
#: lib/cannery_web/live/container_live/index.html.heex:66
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:122
|
#: lib/cannery_web/live/container_live/index.html.heex:123
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tag %{container_name}"
|
msgid "Tag %{container_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:95
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unstage"
|
msgid "Unstage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:65
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View %{ammo_type_name}"
|
msgid "View %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:154
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:155
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
msgid "Clone ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:169
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:170
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:76
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
msgid "Delete ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:130
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:131
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "View ammo group of %{ammo_group_count} bullets"
|
msgid "View ammo group of %{ammo_group_count} bullets"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -36,7 +36,7 @@ msgstr ""
|
|||||||
msgid "Ammo"
|
msgid "Ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:89
|
#: lib/cannery_web/components/ammo_group_table_component.ex:90
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:22
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo type"
|
msgid "Ammo type"
|
||||||
@ -48,49 +48,49 @@ msgid "Background color"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
#: lib/cannery_web/components/ammo_type_table_component.ex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:141
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:143
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Blank"
|
msgid "Blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:69
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Brass"
|
msgid "Brass"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
#: lib/cannery_web/components/ammo_type_table_component.ex:47
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:45
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:47
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet core"
|
msgid "Bullet core"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
#: lib/cannery_web/components/ammo_type_table_component.ex:46
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bullet type"
|
msgid "Bullet type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
#: lib/cannery_web/components/ammo_type_table_component.ex:49
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:59
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:61
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Caliber"
|
msgid "Caliber"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
#: lib/cannery_web/components/ammo_type_table_component.ex:48
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:52
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:54
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Cartridge"
|
msgid "Cartridge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
#: lib/cannery_web/components/ammo_type_table_component.ex:50
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:66
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:68
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Case material"
|
msgid "Case material"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:65
|
#: lib/cannery_web/components/ammo_group_table_component.ex:66
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
#: lib/cannery_web/components/move_ammo_group_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:57
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container"
|
msgid "Container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -104,12 +104,12 @@ msgid "Containers"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
#: lib/cannery_web/components/ammo_type_table_component.ex:66
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:145
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:147
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Corrosive"
|
msgid "Corrosive"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:76
|
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count"
|
msgid "Count"
|
||||||
@ -139,7 +139,7 @@ msgstr ""
|
|||||||
msgid "Easy to Use:"
|
msgid "Easy to Use:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:33
|
#: lib/cannery_web/live/invite_live/index.ex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Edit Invite"
|
msgid "Edit Invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -149,24 +149,24 @@ msgstr ""
|
|||||||
msgid "Edit Tag"
|
msgid "Edit Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:36
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Example bullet type abbreviations"
|
msgid "Example bullet type abbreviations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:41
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "FMJ"
|
msgid "FMJ"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
#: lib/cannery_web/components/ammo_type_table_component.ex:59
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:104
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:106
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Grains"
|
msgid "Grains"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
#: lib/cannery_web/components/ammo_type_table_component.ex:64
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:137
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Incendiary"
|
msgid "Incendiary"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -187,7 +187,7 @@ msgid "Invite Only"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
#: lib/cannery_web/components/core_components/topbar.html.heex:74
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:41
|
#: lib/cannery_web/live/invite_live/index.ex:31
|
||||||
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
#: lib/cannery_web/live/invite_live/index.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invites"
|
msgid "Invites"
|
||||||
@ -200,7 +200,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:47
|
#: lib/cannery_web/components/container_table_component.ex:47
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
#: lib/cannery_web/components/move_ammo_group_component.ex:69
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:43
|
#: lib/cannery_web/live/container_live/form_component.html.heex:45
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Location"
|
msgid "Location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -211,13 +211,13 @@ msgstr ""
|
|||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:39
|
#: lib/cannery_web/live/container_live/form_component.html.heex:41
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Magazine, Clip, Ammo Box, etc"
|
msgid "Magazine, Clip, Ammo Box, etc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
#: lib/cannery_web/components/ammo_type_table_component.ex:67
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:149
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:151
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Manufacturer"
|
msgid "Manufacturer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -254,7 +254,7 @@ msgstr ""
|
|||||||
msgid "New Container"
|
msgid "New Container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:37
|
#: lib/cannery_web/live/invite_live/index.ex:27
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "New Invite"
|
msgid "New Invite"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -265,18 +265,18 @@ msgid "New Tag"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:71
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:72
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No Ammo"
|
msgid "No Ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:167
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:163
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No ammo for this type"
|
msgid "No ammo for this type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:8
|
#: lib/cannery_web/live/container_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:47
|
#: lib/cannery_web/live/container_live/index.html.heex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No containers"
|
msgid "No containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -288,13 +288,13 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
#: lib/cannery_web/live/container_live/edit_tags_component.html.heex:29
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
#: lib/cannery_web/live/tag_live/index.html.heex:10
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:43
|
#: lib/cannery_web/live/tag_live/index.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No tags"
|
msgid "No tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:38
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
#: lib/cannery_web/components/ammo_group_table_component.ex:82
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
#: lib/cannery_web/components/shot_group_table_component.ex:43
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
#: lib/cannery_web/live/ammo_group_live/show.ex:92
|
||||||
@ -303,36 +303,36 @@ msgstr ""
|
|||||||
msgid "Notes"
|
msgid "Notes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:26
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:29
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:24
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Notes:"
|
msgid "Notes:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:47
|
#: lib/cannery_web/live/container_live/form_component.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "On the bookshelf"
|
msgid "On the bookshelf"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
#: lib/cannery_web/components/ammo_type_table_component.ex:60
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:112
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:114
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Pressure"
|
msgid "Pressure"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid"
|
msgid "Price paid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:41
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:44
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Price paid:"
|
msgid "Price paid:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
#: lib/cannery_web/components/ammo_type_table_component.ex:61
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:119
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:121
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Primer type"
|
msgid "Primer type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -363,7 +363,7 @@ msgstr ""
|
|||||||
msgid "Simple:"
|
msgid "Simple:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:48
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Steel"
|
msgid "Steel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -398,14 +398,14 @@ msgid "The self-hosted firearm tracker website"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
#: lib/cannery_web/components/ammo_type_table_component.ex:63
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:133
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Tracer"
|
msgid "Tracer"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/container_table_component.ex:48
|
#: lib/cannery_web/components/container_table_component.ex:48
|
||||||
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
#: lib/cannery_web/components/move_ammo_group_component.ex:68
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:36
|
#: lib/cannery_web/live/container_live/form_component.html.heex:38
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Type"
|
msgid "Type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -436,7 +436,7 @@ msgstr ""
|
|||||||
msgid "No tags for this container"
|
msgid "No tags for this container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:72
|
#: lib/cannery_web/components/ammo_group_table_component.ex:73
|
||||||
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
#: lib/cannery_web/components/core_components/topbar.html.heex:66
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Range"
|
msgid "Range"
|
||||||
@ -447,10 +447,10 @@ msgstr ""
|
|||||||
msgid "Range day"
|
msgid "Range day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:46
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:48
|
||||||
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
#: lib/cannery_web/components/shot_group_table_component.ex:44
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
#: lib/cannery_web/live/ammo_group_live/show.ex:93
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:37
|
#: lib/cannery_web/live/range_live/form_component.html.heex:40
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Date"
|
msgid "Date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -483,7 +483,7 @@ msgid "New Shot Records"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:55
|
#: lib/cannery_web/live/range_live/index.html.heex:55
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:97
|
#: lib/cannery_web/live/range_live/index.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No shots recorded"
|
msgid "No shots recorded"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -522,49 +522,49 @@ msgstr ""
|
|||||||
msgid "Shot log"
|
msgid "Shot log"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:153
|
#: lib/cannery_web/components/ammo_group_table_component.ex:154
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:229
|
#: lib/cannery_web/components/ammo_group_table_component.ex:230
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
#: lib/cannery_web/components/ammo_type_table_component.ex:224
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:42
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:45
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:47
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:50
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:37
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:42
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "$%{amount}"
|
msgid "$%{amount}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Bimetal"
|
msgid "Bimetal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
#: lib/cannery_web/components/ammo_type_table_component.ex:51
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:73
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:75
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Jacket type"
|
msgid "Jacket type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
#: lib/cannery_web/components/ammo_type_table_component.ex:52
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:80
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:82
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Muzzle velocity"
|
msgid "Muzzle velocity"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
#: lib/cannery_web/components/ammo_type_table_component.ex:55
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:94
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder grains per charge"
|
msgid "Powder grains per charge"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
#: lib/cannery_web/components/ammo_type_table_component.ex:53
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:90
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:92
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Powder type"
|
msgid "Powder type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
#: lib/cannery_web/components/ammo_type_table_component.ex:68
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:155
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "UPC"
|
msgid "UPC"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -588,7 +588,7 @@ msgid "New password"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
#: lib/cannery_web/components/ammo_type_table_component.ex:62
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Firing type"
|
msgid "Firing type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -617,14 +617,14 @@ msgstr ""
|
|||||||
msgid "Rounds:"
|
msgid "Rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:226
|
#: lib/cannery_web/components/ammo_group_table_component.ex:227
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
#: lib/cannery_web/components/ammo_type_table_component.ex:223
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:143
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:139
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "No cost information"
|
msgid "No cost information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
#: lib/cannery_web/components/ammo_group_table_component.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "% left"
|
msgid "% left"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -685,12 +685,12 @@ msgstr ""
|
|||||||
msgid "Record Shots"
|
msgid "Record Shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:67
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copies"
|
msgid "Copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:126
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:122
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Added on:"
|
msgid "Added on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -770,7 +770,7 @@ msgid "This ammo is not in a container"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
#: lib/cannery_web/components/core_components/container_card.html.heex:32
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:98
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:96
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:23
|
#: lib/cannery_web/live/container_live/show.html.heex:23
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Packs:"
|
msgid "Packs:"
|
||||||
@ -792,20 +792,20 @@ msgstr ""
|
|||||||
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
msgid "Leave \"Uses left\" blank to make invite unlimited"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:54
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:57
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container:"
|
msgid "Container:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:64
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:65
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:39
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:153
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:149
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:98
|
#: lib/cannery_web/live/container_live/show.html.heex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Show used"
|
msgid "Show used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:187
|
#: lib/cannery_web/components/ammo_group_table_component.ex:188
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:19
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{percentage}%"
|
msgid "%{percentage}%"
|
||||||
@ -828,8 +828,8 @@ msgstr ""
|
|||||||
msgid "Rounds"
|
msgid "Rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:159
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:155
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:39
|
#: lib/cannery_web/live/container_live/index.html.heex:40
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:104
|
#: lib/cannery_web/live/container_live/show.html.heex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "View as table"
|
msgid "View as table"
|
||||||
@ -840,7 +840,7 @@ msgstr ""
|
|||||||
msgid "Total ever packs"
|
msgid "Total ever packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:114
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:113
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Total ever packs:"
|
msgid "Total ever packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -850,7 +850,7 @@ msgstr ""
|
|||||||
msgid "Total ever rounds"
|
msgid "Total ever rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:86
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:87
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Total ever rounds:"
|
msgid "Total ever rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -860,7 +860,7 @@ msgstr ""
|
|||||||
msgid "Used packs"
|
msgid "Used packs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:106
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:105
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Used packs:"
|
msgid "Used packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -870,7 +870,7 @@ msgstr ""
|
|||||||
msgid "Used rounds"
|
msgid "Used rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:78
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:79
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Used rounds:"
|
msgid "Used rounds:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -981,39 +981,39 @@ msgid "UPC:"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
#: lib/cannery_web/components/ammo_type_table_component.ex:120
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:135
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:131
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Average CPR"
|
msgid "Average CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
#: lib/cannery_web/live/ammo_type_live/index.ex:28
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.ex:135
|
#: lib/cannery_web/live/ammo_type_live/show.ex:150
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Edit %{ammo_type_name}"
|
msgid "Edit %{ammo_type_name}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:233
|
#: lib/cannery_web/components/ammo_group_table_component.ex:234
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:17
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Empty"
|
msgid "Empty"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:79
|
#: lib/cannery_web/components/ammo_group_table_component.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR"
|
msgid "CPR"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:46
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:49
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "CPR:"
|
msgid "CPR:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:77
|
#: lib/cannery_web/components/ammo_group_table_component.ex:78
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count"
|
msgid "Original Count"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:21
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:24
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Original Count:"
|
msgid "Original Count:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1028,28 +1028,28 @@ msgstr ""
|
|||||||
msgid "Total packs:"
|
msgid "Total packs:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
#: lib/cannery_web/components/ammo_group_table_component.ex:59
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on"
|
msgid "Last used on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:36
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Last used on:"
|
msgid "Last used on:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:171
|
#: lib/cannery_web/components/ammo_group_table_component.ex:172
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Never used"
|
msgid "Never used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/ammo_group_table_component.ex:57
|
#: lib/cannery_web/components/ammo_group_table_component.ex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:42
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on"
|
msgid "Purchased on"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:31
|
#: lib/cannery_web/components/core_components/ammo_group_card.html.heex:34
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:30
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Purchased on:"
|
msgid "Purchased on:"
|
||||||
@ -1061,32 +1061,32 @@ msgid "Edit ammo"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:8
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:46
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:47
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "No Ammo types"
|
msgid "No Ammo types"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:33
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search catalog"
|
msgid "Search catalog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:58
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:59
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search ammo"
|
msgid "Search ammo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:33
|
#: lib/cannery_web/live/container_live/index.html.heex:34
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search containers"
|
msgid "Search containers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:36
|
#: lib/cannery_web/live/tag_live/index.html.heex:37
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Search tags"
|
msgid "Search tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:90
|
#: lib/cannery_web/live/range_live/index.html.heex:91
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Search shot records"
|
msgid "Search shot records"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -1192,3 +1192,54 @@ msgstr ""
|
|||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:117
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "+P"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:64
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid ".223"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:57
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "5.56x46mm NATO"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:124
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Boxer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:131
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Centerfire"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:42
|
||||||
|
#: lib/cannery_web/live/range_live/form_component.html.heex:34
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Really great weather"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/ammo_group_table_component.ex:54
|
||||||
|
#: lib/cannery_web/components/ammo_type_table_component.ex:121
|
||||||
|
#: lib/cannery_web/components/container_table_component.ex:67
|
||||||
|
#: lib/cannery_web/components/move_ammo_group_component.ex:70
|
||||||
|
#: lib/cannery_web/components/shot_group_table_component.ex:45
|
||||||
|
#: lib/cannery_web/live/ammo_group_live/show.ex:94
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:105
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Live Dashboard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/cannery_web/components/core_components/topbar.html.heex:90
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Log out"
|
||||||
|
msgstr ""
|
||||||
|
@ -114,11 +114,6 @@ msgstr "Níl cead agaibh"
|
|||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr "Tá nasc an úsáideoir a deimhnigh neamhbailí nó as dáta."
|
msgstr "Tá nasc an úsáideoir a deimhnigh neamhbailí nó as dáta."
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:18
|
|
||||||
#, elixir-autogen, elixir-format
|
|
||||||
msgid "You are not authorized to view this page"
|
|
||||||
msgstr "Níl cead agaibh féachaint ar an leathanach seo"
|
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_auth.ex:177
|
#: lib/cannery_web/controllers/user_auth.ex:177
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
|
@ -61,15 +61,15 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:99
|
#: lib/cannery_web/live/container_live/index.html.heex:100
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:155
|
#: lib/cannery_web/live/container_live/index.html.heex:156
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:52
|
#: lib/cannery_web/live/container_live/show.html.heex:52
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:63
|
#: lib/cannery_web/live/tag_live/index.html.heex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}?"
|
msgid "Are you sure you want to delete %{name}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:167
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:168
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this ammo?"
|
msgid "Are you sure you want to delete this ammo?"
|
||||||
@ -120,12 +120,12 @@ msgstr ""
|
|||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
|
#: lib/cannery_web/live/container_live/form_component.html.heex:57
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
|
#: lib/cannery_web/live/range_live/form_component.html.heex:46
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
@ -167,7 +167,7 @@ msgid "Are you sure you want to unstage this ammo?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:127
|
#: lib/cannery_web/live/range_live/index.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this shot record?"
|
msgid "Are you sure you want to delete this shot record?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -193,7 +193,7 @@ msgstr ""
|
|||||||
msgid "Ammo moved to %{name} successfully"
|
msgid "Ammo moved to %{name} successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:126
|
#: lib/cannery_web/live/invite_live/index.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copied to clipboard"
|
msgid "Copied to clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -209,7 +209,7 @@ msgstr ""
|
|||||||
msgid "You'll need to"
|
msgid "You'll need to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Creating..."
|
msgid "Creating..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -250,7 +250,7 @@ msgstr[2] ""
|
|||||||
msgstr[3] ""
|
msgstr[3] ""
|
||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:97
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
||||||
@ -261,27 +261,27 @@ msgstr ""
|
|||||||
msgid "Register to setup Cannery"
|
msgid "Register to setup Cannery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:53
|
#: lib/cannery_web/live/invite_live/index.ex:43
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} deleted succesfully"
|
msgid "%{invite_name} deleted succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:114
|
#: lib/cannery_web/live/invite_live/index.ex:104
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} disabled succesfully"
|
msgid "%{invite_name} disabled succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:90
|
#: lib/cannery_web/live/invite_live/index.ex:80
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} enabled succesfully"
|
msgid "%{invite_name} enabled succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:68
|
#: lib/cannery_web/live/invite_live/index.ex:58
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{invite_name} updated succesfully"
|
msgid "%{invite_name} updated succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:135
|
#: lib/cannery_web/live/invite_live/index.ex:125
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "%{user_email} deleted succesfully"
|
msgid "%{user_email} deleted succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -50,15 +50,15 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
msgid "Are you sure you want to delete %{email}? This action is permanent!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:99
|
#: lib/cannery_web/live/container_live/index.html.heex:100
|
||||||
#: lib/cannery_web/live/container_live/index.html.heex:155
|
#: lib/cannery_web/live/container_live/index.html.heex:156
|
||||||
#: lib/cannery_web/live/container_live/show.html.heex:52
|
#: lib/cannery_web/live/container_live/show.html.heex:52
|
||||||
#: lib/cannery_web/live/tag_live/index.html.heex:63
|
#: lib/cannery_web/live/tag_live/index.html.heex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}?"
|
msgid "Are you sure you want to delete %{name}?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/index.html.heex:167
|
#: lib/cannery_web/live/ammo_group_live/index.html.heex:168
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
#: lib/cannery_web/live/ammo_group_live/show.html.heex:74
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this ammo?"
|
msgid "Are you sure you want to delete this ammo?"
|
||||||
@ -109,12 +109,12 @@ msgstr ""
|
|||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/components/add_shot_group_component.html.heex:56
|
#: lib/cannery_web/components/add_shot_group_component.html.heex:58
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:83
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:85
|
||||||
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:158
|
#: lib/cannery_web/live/ammo_type_live/form_component.html.heex:160
|
||||||
#: lib/cannery_web/live/container_live/form_component.html.heex:53
|
#: lib/cannery_web/live/container_live/form_component.html.heex:57
|
||||||
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
#: lib/cannery_web/live/invite_live/form_component.html.heex:34
|
||||||
#: lib/cannery_web/live/range_live/form_component.html.heex:43
|
#: lib/cannery_web/live/range_live/form_component.html.heex:46
|
||||||
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
#: lib/cannery_web/live/tag_live/form_component.html.heex:39
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
@ -156,7 +156,7 @@ msgid "Are you sure you want to unstage this ammo?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
#: lib/cannery_web/live/ammo_group_live/show.ex:159
|
||||||
#: lib/cannery_web/live/range_live/index.html.heex:127
|
#: lib/cannery_web/live/range_live/index.html.heex:128
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete this shot record?"
|
msgid "Are you sure you want to delete this shot record?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -182,7 +182,7 @@ msgstr ""
|
|||||||
msgid "Ammo moved to %{name} successfully"
|
msgid "Ammo moved to %{name} successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:126
|
#: lib/cannery_web/live/invite_live/index.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Copied to clipboard"
|
msgid "Copied to clipboard"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -198,7 +198,7 @@ msgstr ""
|
|||||||
msgid "You'll need to"
|
msgid "You'll need to"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:76
|
#: lib/cannery_web/live/ammo_group_live/form_component.html.heex:78
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Creating..."
|
msgid "Creating..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -236,7 +236,7 @@ msgid_plural "Ammo added successfully"
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/ammo_type_live/index.html.heex:96
|
#: lib/cannery_web/live/ammo_type_live/index.html.heex:97
|
||||||
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
#: lib/cannery_web/live/ammo_type_live/show.html.heex:29
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
msgid "Are you sure you want to delete %{name}? This will delete all %{name} type ammo as well!"
|
||||||
@ -247,27 +247,27 @@ msgstr ""
|
|||||||
msgid "Register to setup Cannery"
|
msgid "Register to setup Cannery"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:53
|
#: lib/cannery_web/live/invite_live/index.ex:43
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{invite_name} deleted succesfully"
|
msgid "%{invite_name} deleted succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:114
|
#: lib/cannery_web/live/invite_live/index.ex:104
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{invite_name} disabled succesfully"
|
msgid "%{invite_name} disabled succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:90
|
#: lib/cannery_web/live/invite_live/index.ex:80
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{invite_name} enabled succesfully"
|
msgid "%{invite_name} enabled succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:68
|
#: lib/cannery_web/live/invite_live/index.ex:58
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{invite_name} updated succesfully"
|
msgid "%{invite_name} updated succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/live/invite_live/index.ex:135
|
#: lib/cannery_web/live/invite_live/index.ex:125
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{user_email} deleted succesfully"
|
msgid "%{user_email} deleted succesfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Reference in New Issue
Block a user