forked from shibao/cannery
update gettext schema and use macros for cannery app
This commit is contained in:
parent
ab3d3721d6
commit
668e4c611b
@ -6,4 +6,34 @@ defmodule Cannery do
|
|||||||
Contexts are also responsible for managing your data, regardless
|
Contexts are also responsible for managing your data, regardless
|
||||||
if it comes from the database, an external API or others.
|
if it comes from the database, an external API or others.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
def context do
|
||||||
|
quote do
|
||||||
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
|
import Ecto.Query
|
||||||
|
alias Cannery.Accounts.User
|
||||||
|
alias Cannery.Repo
|
||||||
|
alias Ecto.{Changeset, Multi, Queryable, UUID}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def schema do
|
||||||
|
quote do
|
||||||
|
use Ecto.Schema
|
||||||
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
|
import Ecto.{Changeset, Query}
|
||||||
|
alias Cannery.Accounts.User
|
||||||
|
alias Ecto.{Association, Changeset, Queryable, UUID}
|
||||||
|
|
||||||
|
@primary_key {:id, :binary_id, autogenerate: true}
|
||||||
|
@foreign_key_type :binary_id
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
When used, dispatch to the appropriate context/schema/etc.
|
||||||
|
"""
|
||||||
|
defmacro __using__(which) when is_atom(which) do
|
||||||
|
apply(__MODULE__, which, [])
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
@ -3,10 +3,9 @@ defmodule Cannery.Accounts do
|
|||||||
The Accounts context.
|
The Accounts context.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import Ecto.Query, warn: false
|
use Cannery, :context
|
||||||
alias Cannery.{Mailer, Repo}
|
alias Cannery.Mailer
|
||||||
alias Cannery.Accounts.{Invite, Invites, User, UserToken}
|
alias Cannery.Accounts.{Invite, Invites, UserToken}
|
||||||
alias Ecto.{Changeset, Multi}
|
|
||||||
alias Oban.Job
|
alias Oban.Job
|
||||||
|
|
||||||
## Database getters
|
## Database getters
|
||||||
|
@ -5,13 +5,8 @@ defmodule Cannery.Accounts.Invite do
|
|||||||
`:uses_left` is defined.
|
`:uses_left` is defined.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Changeset
|
|
||||||
alias Cannery.Accounts.User
|
|
||||||
alias Ecto.{Association, Changeset, UUID}
|
|
||||||
|
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "invites" do
|
schema "invites" do
|
||||||
field :name, :string
|
field :name, :string
|
||||||
field :token, :string
|
field :token, :string
|
||||||
|
@ -3,10 +3,8 @@ defmodule Cannery.Accounts.Invites do
|
|||||||
The Invites context.
|
The Invites context.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import Ecto.Query, warn: false
|
use Cannery, :context
|
||||||
alias Ecto.Multi
|
alias Cannery.Accounts.Invite
|
||||||
alias Cannery.Accounts.{Invite, User}
|
|
||||||
alias Cannery.Repo
|
|
||||||
|
|
||||||
@invite_token_length 20
|
@invite_token_length 20
|
||||||
|
|
||||||
|
@ -3,11 +3,8 @@ defmodule Cannery.Accounts.User do
|
|||||||
A Cannery user
|
A Cannery user
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Changeset
|
alias Cannery.Accounts.Invite
|
||||||
import CanneryWeb.Gettext
|
|
||||||
alias Ecto.{Association, Changeset, UUID}
|
|
||||||
alias Cannery.Accounts.{Invite, User}
|
|
||||||
|
|
||||||
@derive {Jason.Encoder,
|
@derive {Jason.Encoder,
|
||||||
only: [
|
only: [
|
||||||
@ -20,8 +17,6 @@ defmodule Cannery.Accounts.User do
|
|||||||
:updated_at
|
:updated_at
|
||||||
]}
|
]}
|
||||||
@derive {Inspect, except: [:password]}
|
@derive {Inspect, except: [:password]}
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "users" do
|
schema "users" do
|
||||||
field :email, :string
|
field :email, :string
|
||||||
field :password, :string, virtual: true
|
field :password, :string, virtual: true
|
||||||
|
@ -3,10 +3,7 @@ defmodule Cannery.Accounts.UserToken do
|
|||||||
Schema for a user's session token
|
Schema for a user's session token
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Query
|
|
||||||
alias Cannery.Accounts.User
|
|
||||||
alias Ecto.{Association, UUID}
|
|
||||||
|
|
||||||
@hash_algorithm :sha256
|
@hash_algorithm :sha256
|
||||||
@rand_size 32
|
@rand_size 32
|
||||||
@ -18,8 +15,6 @@ defmodule Cannery.Accounts.UserToken do
|
|||||||
@change_email_validity_in_days 7
|
@change_email_validity_in_days 7
|
||||||
@session_validity_in_days 60
|
@session_validity_in_days 60
|
||||||
|
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "users_tokens" do
|
schema "users_tokens" do
|
||||||
field :token, :binary
|
field :token, :binary
|
||||||
field :context, :string
|
field :context, :string
|
||||||
|
@ -3,10 +3,8 @@ defmodule Cannery.ActivityLog do
|
|||||||
The ActivityLog context.
|
The ActivityLog context.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import Ecto.Query, warn: false
|
use Cannery, :context
|
||||||
alias Cannery.Ammo.{Pack, Type}
|
alias Cannery.{ActivityLog.ShotRecord, Ammo.Pack, Ammo.Type}
|
||||||
alias Cannery.{Accounts.User, ActivityLog.ShotRecord, Repo}
|
|
||||||
alias Ecto.{Multi, Queryable}
|
|
||||||
|
|
||||||
@type list_shot_records_option ::
|
@type list_shot_records_option ::
|
||||||
{:search, String.t() | nil}
|
{:search, String.t() | nil}
|
||||||
|
@ -3,11 +3,8 @@ defmodule Cannery.ActivityLog.ShotRecord do
|
|||||||
A shot record records a group of ammo shot during a range trip
|
A shot record records a group of ammo shot during a range trip
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import CanneryWeb.Gettext
|
alias Cannery.{Ammo, Ammo.Pack}
|
||||||
import Ecto.Changeset
|
|
||||||
alias Cannery.{Accounts.User, Ammo, Ammo.Pack}
|
|
||||||
alias Ecto.{Changeset, UUID}
|
|
||||||
|
|
||||||
@derive {Jason.Encoder,
|
@derive {Jason.Encoder,
|
||||||
only: [
|
only: [
|
||||||
|
@ -3,13 +3,11 @@ defmodule Cannery.Ammo do
|
|||||||
The Ammo context.
|
The Ammo context.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import CanneryWeb.Gettext
|
use Cannery, :context
|
||||||
import Ecto.Query, warn: false
|
alias Cannery.Containers
|
||||||
alias Cannery.{Accounts.User, Containers, Repo}
|
|
||||||
alias Cannery.Containers.{Container, ContainerTag, Tag}
|
alias Cannery.Containers.{Container, ContainerTag, Tag}
|
||||||
alias Cannery.{ActivityLog, ActivityLog.ShotRecord}
|
alias Cannery.{ActivityLog, ActivityLog.ShotRecord}
|
||||||
alias Cannery.Ammo.{Pack, Type}
|
alias Cannery.Ammo.{Pack, Type}
|
||||||
alias Ecto.{Changeset, Queryable}
|
|
||||||
|
|
||||||
@pack_create_limit 10_000
|
@pack_create_limit 10_000
|
||||||
@pack_preloads [:type]
|
@pack_preloads [:type]
|
||||||
|
@ -6,12 +6,8 @@ defmodule Cannery.Ammo.Pack do
|
|||||||
amount paid for that ammunition, or what condition it is in
|
amount paid for that ammunition, or what condition it is in
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import CanneryWeb.Gettext
|
alias Cannery.{Ammo.Type, Containers, Containers.Container}
|
||||||
import Ecto.Changeset
|
|
||||||
alias Cannery.Ammo.Type
|
|
||||||
alias Cannery.{Accounts.User, Containers, Containers.Container}
|
|
||||||
alias Ecto.{Changeset, UUID}
|
|
||||||
|
|
||||||
@derive {Jason.Encoder,
|
@derive {Jason.Encoder,
|
||||||
only: [
|
only: [
|
||||||
@ -24,8 +20,6 @@ defmodule Cannery.Ammo.Pack do
|
|||||||
:type_id,
|
:type_id,
|
||||||
:container_id
|
:container_id
|
||||||
]}
|
]}
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "packs" do
|
schema "packs" do
|
||||||
field :count, :integer
|
field :count, :integer
|
||||||
field :notes, :string
|
field :notes, :string
|
||||||
|
@ -5,11 +5,8 @@ defmodule Cannery.Ammo.Type do
|
|||||||
Contains statistical information about the ammunition.
|
Contains statistical information about the ammunition.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Changeset
|
|
||||||
alias Cannery.Accounts.User
|
|
||||||
alias Cannery.Ammo.Pack
|
alias Cannery.Ammo.Pack
|
||||||
alias Ecto.{Changeset, UUID}
|
|
||||||
|
|
||||||
@derive {Jason.Encoder,
|
@derive {Jason.Encoder,
|
||||||
only: [
|
only: [
|
||||||
@ -46,8 +43,6 @@ defmodule Cannery.Ammo.Type do
|
|||||||
:shot_charge_weight,
|
:shot_charge_weight,
|
||||||
:dram_equivalent
|
:dram_equivalent
|
||||||
]}
|
]}
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "types" do
|
schema "types" do
|
||||||
field :name, :string
|
field :name, :string
|
||||||
field :desc, :string
|
field :desc, :string
|
||||||
|
@ -3,11 +3,9 @@ defmodule Cannery.Containers do
|
|||||||
The Containers context.
|
The Containers context.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import CanneryWeb.Gettext
|
use Cannery, :context
|
||||||
import Ecto.Query, warn: false
|
alias Cannery.Ammo.Pack
|
||||||
alias Cannery.{Accounts.User, Ammo.Pack, Repo}
|
|
||||||
alias Cannery.Containers.{Container, ContainerTag, Tag}
|
alias Cannery.Containers.{Container, ContainerTag, Tag}
|
||||||
alias Ecto.{Changeset, Queryable}
|
|
||||||
|
|
||||||
@container_preloads [:tags]
|
@container_preloads [:tags]
|
||||||
|
|
||||||
|
@ -3,10 +3,8 @@ defmodule Cannery.Containers.Container do
|
|||||||
A container that holds ammunition and belongs to a user.
|
A container that holds ammunition and belongs to a user.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Changeset
|
alias Cannery.{Containers.ContainerTag, Containers.Tag}
|
||||||
alias Ecto.{Changeset, UUID}
|
|
||||||
alias Cannery.{Accounts.User, Containers.ContainerTag, Containers.Tag}
|
|
||||||
|
|
||||||
@derive {Jason.Encoder,
|
@derive {Jason.Encoder,
|
||||||
only: [
|
only: [
|
||||||
@ -17,8 +15,6 @@ defmodule Cannery.Containers.Container do
|
|||||||
:type,
|
:type,
|
||||||
:tags
|
:tags
|
||||||
]}
|
]}
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "containers" do
|
schema "containers" do
|
||||||
field :name, :string
|
field :name, :string
|
||||||
field :desc, :string
|
field :desc, :string
|
||||||
|
@ -4,13 +4,9 @@ defmodule Cannery.Containers.ContainerTag do
|
|||||||
Cannery.Containers.Tag.
|
Cannery.Containers.Tag.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Changeset
|
|
||||||
alias Cannery.Containers.{Container, Tag}
|
alias Cannery.Containers.{Container, Tag}
|
||||||
alias Ecto.{Changeset, UUID}
|
|
||||||
|
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "container_tags" do
|
schema "container_tags" do
|
||||||
belongs_to :container, Container
|
belongs_to :container, Container
|
||||||
belongs_to :tag, Tag
|
belongs_to :tag, Tag
|
||||||
|
@ -4,10 +4,7 @@ defmodule Cannery.Containers.Tag do
|
|||||||
text and bg colors.
|
text and bg colors.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
use Ecto.Schema
|
use Cannery, :schema
|
||||||
import Ecto.Changeset
|
|
||||||
alias Cannery.Accounts.User
|
|
||||||
alias Ecto.{Changeset, UUID}
|
|
||||||
|
|
||||||
@derive {Jason.Encoder,
|
@derive {Jason.Encoder,
|
||||||
only: [
|
only: [
|
||||||
@ -16,8 +13,6 @@ defmodule Cannery.Containers.Tag do
|
|||||||
:bg_color,
|
:bg_color,
|
||||||
:text_color
|
:text_color
|
||||||
]}
|
]}
|
||||||
@primary_key {:id, :binary_id, autogenerate: true}
|
|
||||||
@foreign_key_type :binary_id
|
|
||||||
schema "tags" do
|
schema "tags" do
|
||||||
field :name, :string
|
field :name, :string
|
||||||
field :bg_color, :string
|
field :bg_color, :string
|
||||||
|
@ -7,8 +7,8 @@ defmodule Cannery.Email do
|
|||||||
`lib/cannery_web/components/layouts/email_text.txt.eex` for text emails.
|
`lib/cannery_web/components/layouts/email_text.txt.eex` for text emails.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
import Swoosh.Email
|
import Swoosh.Email
|
||||||
import CanneryWeb.Gettext
|
|
||||||
import Phoenix.Template
|
import Phoenix.Template
|
||||||
alias Cannery.Accounts.User
|
alias Cannery.Accounts.User
|
||||||
alias CanneryWeb.{EmailHTML, Layouts}
|
alias CanneryWeb.{EmailHTML, Layouts}
|
||||||
|
@ -42,9 +42,10 @@ defmodule CanneryWeb do
|
|||||||
formats: [:html, :json],
|
formats: [:html, :json],
|
||||||
layouts: [html: CanneryWeb.Layouts]
|
layouts: [html: CanneryWeb.Layouts]
|
||||||
|
|
||||||
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
|
|
||||||
# credo:disable-for-next-line Credo.Check.Consistency.MultiAliasImportRequireUse
|
# credo:disable-for-next-line Credo.Check.Consistency.MultiAliasImportRequireUse
|
||||||
import Plug.Conn
|
import Plug.Conn
|
||||||
import CanneryWeb.Gettext
|
|
||||||
|
|
||||||
unquote(verified_routes())
|
unquote(verified_routes())
|
||||||
end
|
end
|
||||||
@ -84,8 +85,9 @@ defmodule CanneryWeb do
|
|||||||
defp html_helpers do
|
defp html_helpers do
|
||||||
quote do
|
quote do
|
||||||
use PhoenixHTMLHelpers
|
use PhoenixHTMLHelpers
|
||||||
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
import Phoenix.{Component, HTML, HTML.Form}
|
import Phoenix.{Component, HTML, HTML.Form}
|
||||||
import CanneryWeb.{ErrorHelpers, Gettext, CoreComponents, HTMLHelpers}
|
import CanneryWeb.{ErrorHelpers, CoreComponents, HTMLHelpers}
|
||||||
|
|
||||||
# Shortcut for generating JS commands
|
# Shortcut for generating JS commands
|
||||||
alias Phoenix.LiveView.JS
|
alias Phoenix.LiveView.JS
|
||||||
|
@ -4,7 +4,8 @@ defmodule CanneryWeb.CoreComponents do
|
|||||||
"""
|
"""
|
||||||
use Phoenix.Component
|
use Phoenix.Component
|
||||||
use CanneryWeb, :verified_routes
|
use CanneryWeb, :verified_routes
|
||||||
import CanneryWeb.{Gettext, HTMLHelpers}
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
|
import CanneryWeb.HTMLHelpers
|
||||||
alias Cannery.{Accounts, Accounts.Invite, Accounts.User}
|
alias Cannery.{Accounts, Accounts.Invite, Accounts.User}
|
||||||
alias Cannery.{Ammo, Ammo.Pack}
|
alias Cannery.{Ammo, Ammo.Pack}
|
||||||
alias Cannery.{Containers.Container, Containers.Tag}
|
alias Cannery.{Containers.Container, Containers.Tag}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
defmodule CanneryWeb.ErrorJSON do
|
defmodule CanneryWeb.ErrorJSON do
|
||||||
import CanneryWeb.Gettext
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
|
|
||||||
def render(template, _assigns) do
|
def render(template, _assigns) do
|
||||||
error_string =
|
error_string =
|
||||||
|
@ -4,9 +4,9 @@ defmodule CanneryWeb.UserAuth do
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
use CanneryWeb, :verified_routes
|
use CanneryWeb, :verified_routes
|
||||||
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
import Plug.Conn
|
import Plug.Conn
|
||||||
import Phoenix.Controller
|
import Phoenix.Controller
|
||||||
import CanneryWeb.Gettext
|
|
||||||
alias Cannery.{Accounts, Accounts.User}
|
alias Cannery.{Accounts, Accounts.User}
|
||||||
|
|
||||||
# Make the remember me cookie valid for 60 days.
|
# Make the remember me cookie valid for 60 days.
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
defmodule CanneryWeb.UserConfirmationController do
|
defmodule CanneryWeb.UserConfirmationController do
|
||||||
use CanneryWeb, :controller
|
use CanneryWeb, :controller
|
||||||
|
|
||||||
import CanneryWeb.Gettext
|
|
||||||
alias Cannery.Accounts
|
alias Cannery.Accounts
|
||||||
|
|
||||||
def new(conn, _params) do
|
def new(conn, _params) do
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
defmodule CanneryWeb.UserRegistrationController do
|
defmodule CanneryWeb.UserRegistrationController do
|
||||||
use CanneryWeb, :controller
|
use CanneryWeb, :controller
|
||||||
import CanneryWeb.Gettext
|
|
||||||
alias Cannery.{Accounts, Accounts.Invites}
|
alias Cannery.{Accounts, Accounts.Invites}
|
||||||
alias Ecto.Changeset
|
alias Ecto.Changeset
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
defmodule CanneryWeb.UserSettingsController do
|
defmodule CanneryWeb.UserSettingsController do
|
||||||
use CanneryWeb, :controller
|
use CanneryWeb, :controller
|
||||||
import CanneryWeb.Gettext
|
|
||||||
alias Cannery.Accounts
|
alias Cannery.Accounts
|
||||||
alias CanneryWeb.UserAuth
|
alias CanneryWeb.UserAuth
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ defmodule CanneryWeb.Gettext do
|
|||||||
By using [Gettext](https://hexdocs.pm/gettext),
|
By using [Gettext](https://hexdocs.pm/gettext),
|
||||||
your module gains a set of macros for translations, for example:
|
your module gains a set of macros for translations, for example:
|
||||||
|
|
||||||
import CanneryWeb.Gettext
|
use Gettext, backend: CanneryWeb.Gettext
|
||||||
|
|
||||||
# Simple translation
|
# Simple translation
|
||||||
gettext("Here is the string to translate")
|
gettext("Here is the string to translate")
|
||||||
@ -20,5 +20,5 @@ defmodule CanneryWeb.Gettext do
|
|||||||
|
|
||||||
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
|
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
|
||||||
"""
|
"""
|
||||||
use Gettext, otp_app: :cannery
|
use Gettext.Backend, otp_app: :cannery
|
||||||
end
|
end
|
||||||
|
@ -338,7 +338,7 @@ msgstr ""
|
|||||||
"Hosten Sie Ihre eigene Instanz oder verwenden Sie eine Instanz, der Sie "
|
"Hosten Sie Ihre eigene Instanz oder verwenden Sie eine Instanz, der Sie "
|
||||||
"vertrauen."
|
"vertrauen."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -621,7 +621,7 @@ msgstr "Prozent verbleibend:"
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr "Patronen verbraucht"
|
msgstr "Patronen verbraucht"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr "Bestätigen Sie ihr Nutzerkonto"
|
msgstr "Bestätigen Sie ihr Nutzerkonto"
|
||||||
@ -636,7 +636,7 @@ msgstr "Passwort vergessen?"
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr "Einloggen"
|
msgstr "Einloggen"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Registrieren"
|
msgstr "Registrieren"
|
||||||
|
@ -23,7 +23,7 @@ msgstr ""
|
|||||||
## Run "mix gettext.extract" to bring this file up to
|
## Run "mix gettext.extract" to bring this file up to
|
||||||
## date. Leave "msgstr"s empty as changing them here has no
|
## date. Leave "msgstr"s empty as changing them here has no
|
||||||
## effect: edit them in PO (.po) files instead.
|
## effect: edit them in PO (.po) files instead.
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr "Behälter muss vor dem Löschen leer sein"
|
msgstr "Behälter muss vor dem Löschen leer sein"
|
||||||
@ -39,7 +39,7 @@ msgstr "Konnte %{name} nicht löschen: %{error}"
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr "Konnte Behälter nicht finden"
|
msgstr "Konnte Behälter nicht finden"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr "Mailadressenänderungs-Link ist ungültig oder abgelaufen."
|
msgstr "Mailadressenänderungs-Link ist ungültig oder abgelaufen."
|
||||||
@ -80,21 +80,21 @@ msgstr "Oops, etwas ist schiefgegangen. Bitte beachten Sie den Fehler unten."
|
|||||||
msgid "Reset password link is invalid or it has expired."
|
msgid "Reset password link is invalid or it has expired."
|
||||||
msgstr "Link zum Passwort zurücksetzen ist ungültig oder abgelaufen."
|
msgstr "Link zum Passwort zurücksetzen ist ungültig oder abgelaufen."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr "Entschuldigung, aber öffentliche Registrierung ist deaktiviert"
|
msgstr "Entschuldigung, aber öffentliche Registrierung ist deaktiviert"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Entschuldigung, aber diese Einladung wurde nicht gefunden oder ist abgelaufen"
|
"Entschuldigung, aber diese Einladung wurde nicht gefunden oder ist abgelaufen"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr "Dieser Nutzer konnte nicht gelöscht werden"
|
msgstr "Dieser Nutzer konnte nicht gelöscht werden"
|
||||||
@ -105,7 +105,7 @@ msgstr "Dieser Nutzer konnte nicht gelöscht werden"
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr "Unbefugt"
|
msgstr "Unbefugt"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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."
|
||||||
@ -115,22 +115,22 @@ msgstr "Nutzerkonto Bestätigungslink ist ungültig oder abgelaufen."
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr "Sie sind nicht berechtigt, diese Seite aufzurufen."
|
msgstr "Sie sind nicht berechtigt, diese Seite aufzurufen."
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr "hat sich nicht geändert"
|
msgstr "hat sich nicht geändert"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr "Passwort stimmt nicht überein"
|
msgstr "Passwort stimmt nicht überein"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr "ist nicht gültig"
|
msgstr "ist nicht gültig"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr "Muss ein @ Zeichen und keine Leerzeichen haben"
|
msgstr "Muss ein @ Zeichen und keine Leerzeichen haben"
|
||||||
@ -163,7 +163,7 @@ msgstr "Tag konnte nicht gelöscht werden"
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr "Konnte die Anzahl der Kopien nicht verstehen"
|
msgstr "Konnte die Anzahl der Kopien nicht verstehen"
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -175,27 +175,27 @@ msgstr ""
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr "Anzahl muss weniger als %{count} betragen"
|
msgstr "Anzahl muss weniger als %{count} betragen"
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -216,12 +216,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -52,7 +52,7 @@ msgstr "%{name} wurde gelöscht"
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr "%{name} erfolgreich aktualisiert"
|
msgstr "%{name} erfolgreich aktualisiert"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr "Eine Mail zum Bestätigen ihre Mailadresse wurde Ihnen zugesandt."
|
msgstr "Eine Mail zum Bestätigen ihre Mailadresse wurde Ihnen zugesandt."
|
||||||
@ -89,12 +89,12 @@ msgstr "Sind Sie sicher, dass sie Ihren Account löschen möchten?"
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr "Wirklich ausloggen?"
|
msgstr "Wirklich ausloggen?"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr "Mailadresse erfolgreich geändert."
|
msgstr "Mailadresse erfolgreich geändert."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -118,12 +118,12 @@ msgstr "Erfolgreich ausgeloggt."
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr "Passwort erfolgreich zurückgesetzt."
|
msgstr "Passwort erfolgreich zurückgesetzt."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr "Passwort erfolgreich geändert."
|
msgstr "Passwort erfolgreich geändert."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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"
|
||||||
@ -139,7 +139,7 @@ msgstr "Bitte überprüfen Sie ihre Mailbox und bestätigen Sie das Nutzerkonto"
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr "Speichere..."
|
msgstr "Speichere..."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr "Ihr Nutzerkonto wurde gelöscht"
|
msgstr "Ihr Nutzerkonto wurde gelöscht"
|
||||||
@ -193,7 +193,7 @@ msgstr "Schießkladde erfolgreich gelöscht"
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr "Schießkladde erfolgreich aktualisiert"
|
msgstr "Schießkladde erfolgreich aktualisiert"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr "%{email} erfolgreich bestätigt."
|
msgstr "%{email} erfolgreich bestätigt."
|
||||||
@ -229,7 +229,7 @@ msgstr "Erstellen..."
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr "Möchten Sie die Sprache wechseln?"
|
msgstr "Möchten Sie die Sprache wechseln?"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr "Spracheinstellung gespeichert."
|
msgstr "Spracheinstellung gespeichert."
|
||||||
|
@ -332,7 +332,7 @@ msgstr ""
|
|||||||
msgid "Self-host your own instance, or use an instance from someone you trust."
|
msgid "Self-host your own instance, or use an instance from someone you trust."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -615,7 +615,7 @@ msgstr ""
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -630,7 +630,7 @@ msgstr ""
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -332,7 +332,7 @@ msgstr ""
|
|||||||
msgid "Self-host your own instance, or use an instance from someone you trust."
|
msgid "Self-host your own instance, or use an instance from someone you trust."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -615,7 +615,7 @@ msgstr ""
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -630,7 +630,7 @@ msgstr ""
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -10,7 +10,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Language: en\n"
|
"Language: en\n"
|
||||||
|
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -26,7 +26,7 @@ msgstr ""
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -67,20 +67,20 @@ msgstr ""
|
|||||||
msgid "Reset password link is invalid or it has expired."
|
msgid "Reset password link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -91,7 +91,7 @@ msgstr ""
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -101,23 +101,23 @@ msgstr ""
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
## From Ecto.Changeset.put_change/3
|
## From Ecto.Changeset.put_change/3
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -148,7 +148,7 @@ msgstr ""
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -158,27 +158,27 @@ msgstr ""
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -199,12 +199,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -39,7 +39,7 @@ msgstr ""
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -74,12 +74,12 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -99,12 +99,12 @@ msgstr ""
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -120,7 +120,7 @@ msgstr ""
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -172,7 +172,7 @@ msgstr ""
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -208,7 +208,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -26,7 +26,7 @@ msgstr ""
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -67,20 +67,20 @@ msgstr ""
|
|||||||
msgid "Reset password link is invalid or it has expired."
|
msgid "Reset password link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -91,7 +91,7 @@ msgstr ""
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -101,22 +101,22 @@ msgstr ""
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -147,7 +147,7 @@ msgstr ""
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -157,27 +157,27 @@ msgstr ""
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -198,12 +198,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -338,7 +338,7 @@ msgstr ""
|
|||||||
"Autogestiona tu propia instancia, o usa una instancia de alguién de quien te "
|
"Autogestiona tu propia instancia, o usa una instancia de alguién de quien te "
|
||||||
"fíes."
|
"fíes."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -622,7 +622,7 @@ msgstr "Pocentaje restante:"
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr "Balas usadas"
|
msgstr "Balas usadas"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr "Confirmar su cuenta"
|
msgstr "Confirmar su cuenta"
|
||||||
@ -637,7 +637,7 @@ msgstr "¿Olvidó su contraseña?"
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr "Entrar"
|
msgstr "Entrar"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Registrarse"
|
msgstr "Registrarse"
|
||||||
|
@ -23,7 +23,7 @@ msgstr ""
|
|||||||
## Run "mix gettext.extract" to bring this file up to
|
## Run "mix gettext.extract" to bring this file up to
|
||||||
## date. Leave "msgstr"s empty as changing them here has no
|
## date. Leave "msgstr"s empty as changing them here has no
|
||||||
## effect: edit them in PO (.po) files instead.
|
## effect: edit them in PO (.po) files instead.
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr "El contenedor debe estar vacío antes de ser borrado"
|
msgstr "El contenedor debe estar vacío antes de ser borrado"
|
||||||
@ -39,7 +39,7 @@ msgstr "No se pudo eliminar %{name}: %{error}"
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr "No se pudo encontrar el contenedor"
|
msgstr "No se pudo encontrar el contenedor"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr "El enlace de cambio de correo es inválido o ha expirado."
|
msgstr "El enlace de cambio de correo es inválido o ha expirado."
|
||||||
@ -83,20 +83,20 @@ msgid "Reset password link is invalid or it has expired."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"El enlace de reestablecimiento de la contraseña es inválido o ha caducado."
|
"El enlace de reestablecimiento de la contraseña es inválido o ha caducado."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr "Lo sentimos, el registro público no está habilitado"
|
msgstr "Lo sentimos, el registro público no está habilitado"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr "Lo sentimos, esta invitación no es válida o ha caducado"
|
msgstr "Lo sentimos, esta invitación no es válida o ha caducado"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr "No se ha podido eliminar el usuario"
|
msgstr "No se ha podido eliminar el usuario"
|
||||||
@ -107,7 +107,7 @@ msgstr "No se ha podido eliminar el usuario"
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr "No autorizado"
|
msgstr "No autorizado"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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."
|
||||||
@ -117,22 +117,22 @@ msgstr "El enlace de confirmación de usuario no es válido o ha caducado."
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr "No está autorizado a ver esta página."
|
msgstr "No está autorizado a ver esta página."
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr "no cambió"
|
msgstr "no cambió"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr "no coincide con la contraseña"
|
msgstr "no coincide con la contraseña"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr "no es válido"
|
msgstr "no es válido"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr "debe tener el signo @ y no contener espacios"
|
msgstr "debe tener el signo @ y no contener espacios"
|
||||||
@ -163,7 +163,7 @@ msgstr "La etiqueta no pudo ser eliminada"
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr "No se ha podido procesar el número de copias"
|
msgstr "No se ha podido procesar el número de copias"
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr "Número inválido de copias, debe ser entre 1 y %{max}. Fue %{multiplier"
|
msgstr "Número inválido de copias, debe ser entre 1 y %{max}. Fue %{multiplier"
|
||||||
@ -173,27 +173,27 @@ msgstr "Número inválido de copias, debe ser entre 1 y %{max}. Fue %{multiplier
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr "Su navegador no es compatible con el elemento lienzo."
|
msgstr "Su navegador no es compatible con el elemento lienzo."
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr "Por favor escoja un usuario y tipo de munición valido"
|
msgstr "Por favor escoja un usuario y tipo de munición valido"
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr "El recuento debe ser menos de %{count}"
|
msgstr "El recuento debe ser menos de %{count}"
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -214,12 +214,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr "Por favor escoja un tipo de munición y un contenedor"
|
msgstr "Por favor escoja un tipo de munición y un contenedor"
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr "Por favor escoja un usuario y tipo de munición valido"
|
msgstr "Por favor escoja un usuario y tipo de munición valido"
|
||||||
|
@ -52,7 +52,7 @@ msgstr "%{name} ha sido borrado"
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr "%{name} actualizado exitosamente"
|
msgstr "%{name} actualizado exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -89,12 +89,12 @@ msgstr "Está seguro que desea eliminar su cuenta?"
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr "Está seguro que desea cerrar sesión?"
|
msgstr "Está seguro que desea cerrar sesión?"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr "Correo electrónico cambiado exitosamente."
|
msgstr "Correo electrónico cambiado exitosamente."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -118,12 +118,12 @@ msgstr "Sesión cerrada exitosamente."
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr "Contraseña reiniciada exitosamente."
|
msgstr "Contraseña reiniciada exitosamente."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr "Contraseña cambiada exitosamente."
|
msgstr "Contraseña cambiada exitosamente."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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"
|
||||||
@ -139,7 +139,7 @@ msgstr "Por favor chequea el correo para verificar tu cuenta"
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr "Guardando..."
|
msgstr "Guardando..."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr "Su cuenta ha sido eliminada"
|
msgstr "Su cuenta ha sido eliminada"
|
||||||
@ -192,7 +192,7 @@ msgstr "Récord de disparos borrado exitosamente"
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr "Récord de disparos actualizado exitosamente"
|
msgstr "Récord de disparos actualizado exitosamente"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr "%{email} confirmado exitosamente."
|
msgstr "%{email} confirmado exitosamente."
|
||||||
@ -228,7 +228,7 @@ msgstr "Creando..."
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr "¿Está segure de que quiere cambiar el idioma?"
|
msgstr "¿Está segure de que quiere cambiar el idioma?"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr "Idioma cambiado exitosamente."
|
msgstr "Idioma cambiado exitosamente."
|
||||||
|
@ -338,7 +338,7 @@ msgstr ""
|
|||||||
"Auto-hébergez votre propre instance ou utilisez celle d’une personne à "
|
"Auto-hébergez votre propre instance ou utilisez celle d’une personne à "
|
||||||
"laquelle vous faîtes confiance."
|
"laquelle vous faîtes confiance."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -623,7 +623,7 @@ msgstr "Pourcentage restant :"
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr "Cartouches utilisées"
|
msgstr "Cartouches utilisées"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr "Confirmez votre compte"
|
msgstr "Confirmez votre compte"
|
||||||
@ -638,7 +638,7 @@ msgstr "Mot de passe oublié ?"
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr "Se connecter"
|
msgstr "Se connecter"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "S’enregistrer"
|
msgstr "S’enregistrer"
|
||||||
|
@ -23,7 +23,7 @@ msgstr ""
|
|||||||
# # Run "mix gettext.extract" to bring this file up to
|
# # Run "mix gettext.extract" to bring this file up to
|
||||||
# # date. Leave "msgstr"s empty as changing them here has no
|
# # date. Leave "msgstr"s empty as changing them here has no
|
||||||
# # effect: edit them in PO (.po) files instead.
|
# # effect: edit them in PO (.po) files instead.
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr "Le conteneur doit être vide pour être supprimé"
|
msgstr "Le conteneur doit être vide pour être supprimé"
|
||||||
@ -39,7 +39,7 @@ msgstr "Impossible de supprimer %{name} : %{error}"
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr "Impossible de trouver ce conteneur"
|
msgstr "Impossible de trouver ce conteneur"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr "Le lien de changement de mél est invalide ou a expiré."
|
msgstr "Le lien de changement de mél est invalide ou a expiré."
|
||||||
@ -82,20 +82,20 @@ msgstr ""
|
|||||||
msgid "Reset password link is invalid or it has expired."
|
msgid "Reset password link is invalid or it has expired."
|
||||||
msgstr "Le lien de réinitialisation de mot de passe est invalide ou expiré."
|
msgstr "Le lien de réinitialisation de mot de passe est invalide ou expiré."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr "Désolé, l’enregistrement public est désactivé"
|
msgstr "Désolé, l’enregistrement public est désactivé"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr "Désolé, cette invitation n’est pas trouvée ou est expirée"
|
msgstr "Désolé, cette invitation n’est pas trouvée ou est expirée"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr "Impossible de supprimer l’utilisateur·ice"
|
msgstr "Impossible de supprimer l’utilisateur·ice"
|
||||||
@ -106,7 +106,7 @@ msgstr "Impossible de supprimer l’utilisateur·ice"
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr "Non autorisé·e"
|
msgstr "Non autorisé·e"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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é."
|
||||||
@ -116,22 +116,22 @@ msgstr "Le lien de confirmation d’utilisateur·ice est invalide ou a expiré."
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr "Vous n’êtes pas autorisé·e à voir cette page."
|
msgstr "Vous n’êtes pas autorisé·e à voir cette page."
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr "est inchangé"
|
msgstr "est inchangé"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr "le mot de passe ne correspond pas"
|
msgstr "le mot de passe ne correspond pas"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr "n’est pas valide"
|
msgstr "n’est pas valide"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr "doit contenir le symbole @ et aucune espace"
|
msgstr "doit contenir le symbole @ et aucune espace"
|
||||||
@ -164,7 +164,7 @@ msgstr "Le tag n’a pas pu être retiré"
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr "Impossible d'analyser le nombre de copies"
|
msgstr "Impossible d'analyser le nombre de copies"
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr "Nombre de copies invalide, doit être 1 et %{max}. Été %{multiplier}"
|
msgstr "Nombre de copies invalide, doit être 1 et %{max}. Été %{multiplier}"
|
||||||
@ -174,27 +174,27 @@ msgstr "Nombre de copies invalide, doit être 1 et %{max}. Été %{multiplier}"
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr "Veuillez choisir un utilisateur valide et un groupe de munitions"
|
msgstr "Veuillez choisir un utilisateur valide et un groupe de munitions"
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr "La quantité doit être inférieur à %{count}"
|
msgstr "La quantité doit être inférieur à %{count}"
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -215,12 +215,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr "Veuillez choisir un type de munitions et un conteneur"
|
msgstr "Veuillez choisir un type de munitions et un conteneur"
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr "Veuillez choisir un utilisateur valide et un groupe de munitions"
|
msgstr "Veuillez choisir un utilisateur valide et un groupe de munitions"
|
||||||
|
@ -52,7 +52,7 @@ msgstr "%{name} a été supprimé·e"
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr "%{name} mis à jour avec succès"
|
msgstr "%{name} mis à jour avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -90,12 +90,12 @@ msgstr "Êtes-vous certain·e de supprimer votre compte ?"
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr "Êtes-vous certain·e de vouloir vous déconnecter ?"
|
msgstr "Êtes-vous certain·e de vouloir vous déconnecter ?"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr "Mél changé avec succès."
|
msgstr "Mél changé avec succès."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -119,12 +119,12 @@ msgstr "Déconnecté avec succès."
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr "Mot de passe réinitialiser avec succès."
|
msgstr "Mot de passe réinitialiser avec succès."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr "Mot de passe mis à jour avec succès."
|
msgstr "Mot de passe mis à jour avec succès."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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"
|
||||||
@ -140,7 +140,7 @@ msgstr "Veuillez vérifier votre mél pour confirmer votre compte"
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr "Sauvegarde en cours…"
|
msgstr "Sauvegarde en cours…"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr "Votre compte a été supprimé"
|
msgstr "Votre compte a été supprimé"
|
||||||
@ -194,7 +194,7 @@ msgstr "Enregistrements de tir supprimés avec succès"
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr "Enregistrements de tir mis à jour avec succès"
|
msgstr "Enregistrements de tir mis à jour avec succès"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr "%{email} confirmé avec succès."
|
msgstr "%{email} confirmé avec succès."
|
||||||
@ -230,7 +230,7 @@ msgstr "Création en cours…"
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr "Êtes-vous certain·e de vouloir changer votre langue ?"
|
msgstr "Êtes-vous certain·e de vouloir changer votre langue ?"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr "Langue mise à jour avec succès."
|
msgstr "Langue mise à jour avec succès."
|
||||||
|
@ -334,7 +334,7 @@ msgstr ""
|
|||||||
msgid "Self-host your own instance, or use an instance from someone you trust."
|
msgid "Self-host your own instance, or use an instance from someone you trust."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -617,7 +617,7 @@ msgstr ""
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -632,7 +632,7 @@ msgstr ""
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -24,7 +24,7 @@ msgstr ""
|
|||||||
## Run "mix gettext.extract" to bring this file up to
|
## Run "mix gettext.extract" to bring this file up to
|
||||||
## date. Leave "msgstr"s empty as changing them here has no
|
## date. Leave "msgstr"s empty as changing them here has no
|
||||||
## effect: edit them in PO (.po) files instead.
|
## effect: edit them in PO (.po) files instead.
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr "Caithfidh an coimeádán a bheidh follamh roimh scriosadh"
|
msgstr "Caithfidh an coimeádán a bheidh follamh roimh scriosadh"
|
||||||
@ -40,7 +40,7 @@ msgstr "Ní feidir %{name} a scriosadh: %{error}"
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr "Ní feidir an coimeádán sin a fáil"
|
msgstr "Ní feidir an coimeádán sin a fáil"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr "Tá an nasc chun an seoladh email a athrú neamhbhailí nó as dáta."
|
msgstr "Tá an nasc chun an seoladh email a athrú neamhbhailí nó as dáta."
|
||||||
@ -83,20 +83,20 @@ msgstr ""
|
|||||||
msgid "Reset password link is invalid or it has expired."
|
msgid "Reset password link is invalid or it has expired."
|
||||||
msgstr "Tá nasc an pasfhocail a athrú neamhbailí nó as dáta."
|
msgstr "Tá nasc an pasfhocail a athrú neamhbailí nó as dáta."
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr "Tá brón orainn, tá clarú póiblí bactha"
|
msgstr "Tá brón orainn, tá clarú póiblí bactha"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr "Tá brón orainn, ní feidir an cuireadh seo a fáil nó tá sé as dáta"
|
msgstr "Tá brón orainn, ní feidir an cuireadh seo a fáil nó tá sé as dáta"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr "Ní feidir an úsáideoir a scriosadh"
|
msgstr "Ní feidir an úsáideoir a scriosadh"
|
||||||
@ -107,7 +107,7 @@ msgstr "Ní feidir an úsáideoir a scriosadh"
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr "Níl cead agaibh"
|
msgstr "Níl cead agaibh"
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
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."
|
||||||
@ -117,22 +117,22 @@ msgstr "Tá nasc an úsáideoir a deimhnigh neamhbailí nó as dáta."
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr "Níl cead agaibh féachaint ar an leathanach seo."
|
msgstr "Níl cead agaibh féachaint ar an leathanach seo."
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr "Níor athraigh sé"
|
msgstr "Níor athraigh sé"
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -163,7 +163,7 @@ msgstr ""
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -173,27 +173,27 @@ msgstr ""
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -214,12 +214,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -50,7 +50,7 @@ msgstr ""
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -85,12 +85,12 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -110,12 +110,12 @@ msgstr ""
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -183,7 +183,7 @@ msgstr ""
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -219,7 +219,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -343,7 +343,7 @@ msgstr ""
|
|||||||
msgid "Self-host your own instance, or use an instance from someone you trust."
|
msgid "Self-host your own instance, or use an instance from someone you trust."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:10
|
#: lib/cannery_web/controllers/user_settings_controller.ex:9
|
||||||
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
#: lib/cannery_web/controllers/user_settings_html/edit.html.heex:3
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
@ -626,7 +626,7 @@ msgstr ""
|
|||||||
msgid "Rounds used"
|
msgid "Rounds used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:8
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:6
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Confirm your account"
|
msgid "Confirm your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -641,7 +641,7 @@ msgstr ""
|
|||||||
msgid "Log in"
|
msgid "Log in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:32
|
#: lib/cannery_web/controllers/user_registration_controller.ex:31
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -21,7 +21,7 @@ msgstr ""
|
|||||||
## Run "mix gettext.extract" to bring this file up to
|
## Run "mix gettext.extract" to bring this file up to
|
||||||
## date. Leave "msgstr"s empty as changing them here has no
|
## date. Leave "msgstr"s empty as changing them here has no
|
||||||
## effect: edit them in PO (.po) files instead.
|
## effect: edit them in PO (.po) files instead.
|
||||||
#: lib/cannery/containers.ex:224
|
#: lib/cannery/containers.ex:222
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Container must be empty before deleting"
|
msgid "Container must be empty before deleting"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -37,7 +37,7 @@ msgstr ""
|
|||||||
msgid "Could not find that container"
|
msgid "Could not find that container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:84
|
#: lib/cannery_web/controllers/user_settings_controller.ex:83
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email change link is invalid or it has expired."
|
msgid "Email change link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -78,20 +78,20 @@ msgstr ""
|
|||||||
msgid "Reset password link is invalid or it has expired."
|
msgid "Reset password link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:22
|
#: lib/cannery_web/controllers/user_registration_controller.ex:21
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:51
|
#: lib/cannery_web/controllers/user_registration_controller.ex:50
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, public registration is disabled"
|
msgid "Sorry, public registration is disabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:12
|
#: lib/cannery_web/controllers/user_registration_controller.ex:11
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:41
|
#: lib/cannery_web/controllers/user_registration_controller.ex:40
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:70
|
#: lib/cannery_web/controllers/user_registration_controller.ex:69
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Sorry, this invite was not found or expired"
|
msgid "Sorry, this invite was not found or expired"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:99
|
#: lib/cannery_web/controllers/user_settings_controller.ex:98
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Unable to delete user"
|
msgid "Unable to delete user"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -102,7 +102,7 @@ msgstr ""
|
|||||||
msgid "Unauthorized"
|
msgid "Unauthorized"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:53
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:51
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "User confirmation link is invalid or it has expired."
|
msgid "User confirmation link is invalid or it has expired."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -112,22 +112,22 @@ msgstr ""
|
|||||||
msgid "You are not authorized to view this page."
|
msgid "You are not authorized to view this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:145
|
#: lib/cannery/accounts/user.ex:140
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "did not change"
|
msgid "did not change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:166
|
#: lib/cannery/accounts/user.ex:161
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "does not match password"
|
msgid "does not match password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:203
|
#: lib/cannery/accounts/user.ex:198
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "is not valid"
|
msgid "is not valid"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/accounts/user.ex:100
|
#: lib/cannery/accounts/user.ex:95
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "must have the @ sign and no spaces"
|
msgid "must have the @ sign and no spaces"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -158,7 +158,7 @@ msgstr ""
|
|||||||
msgid "Could not parse number of copies"
|
msgid "Could not parse number of copies"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo.ex:1028
|
#: lib/cannery/ammo.ex:1026
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
msgid "Invalid number of copies, must be between 1 and %{max}. Was %{multiplier}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -168,27 +168,27 @@ msgstr ""
|
|||||||
msgid "Your browser does not support the canvas element."
|
msgid "Your browser does not support the canvas element."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:74
|
#: lib/cannery/activity_log/shot_record.ex:71
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please select a valid user and ammo pack"
|
msgid "Please select a valid user and ammo pack"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:88
|
#: lib/cannery/activity_log/shot_record.ex:85
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left can be at most %{count} rounds"
|
msgid "Ammo left can be at most %{count} rounds"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:84
|
#: lib/cannery/activity_log/shot_record.ex:81
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Ammo left must be at least 0"
|
msgid "Ammo left must be at least 0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:119
|
#: lib/cannery/activity_log/shot_record.ex:116
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Count can be at most %{count} shots"
|
msgid "Count can be at most %{count} shots"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/activity_log/shot_record.ex:80
|
#: lib/cannery/activity_log/shot_record.ex:77
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "can't be blank"
|
msgid "can't be blank"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -209,12 +209,12 @@ msgstr ""
|
|||||||
msgid "You must log in to access this page."
|
msgid "You must log in to access this page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:104
|
#: lib/cannery/ammo/pack.ex:98
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid container"
|
msgid "Please select a valid container"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery/ammo/pack.ex:102
|
#: lib/cannery/ammo/pack.ex:96
|
||||||
#, elixir-autogen, elixir-format, fuzzy
|
#, elixir-autogen, elixir-format, fuzzy
|
||||||
msgid "Please select a valid type"
|
msgid "Please select a valid type"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -50,7 +50,7 @@ msgstr ""
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -85,12 +85,12 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -110,12 +110,12 @@ msgstr ""
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -131,7 +131,7 @@ msgstr ""
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -183,7 +183,7 @@ msgstr ""
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -219,7 +219,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -39,7 +39,7 @@ msgstr ""
|
|||||||
msgid "%{name} updated successfully"
|
msgid "%{name} updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:29
|
#: lib/cannery_web/controllers/user_settings_controller.ex:28
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "A link to confirm your email change has been sent to the new address."
|
msgid "A link to confirm your email change has been sent to the new address."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -74,12 +74,12 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to log out?"
|
msgid "Are you sure you want to log out?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:77
|
#: lib/cannery_web/controllers/user_settings_controller.ex:76
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Email changed successfully."
|
msgid "Email changed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:23
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:21
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
msgid "If your email is in our system and it has not been confirmed yet, you will receive an email with instructions shortly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -99,12 +99,12 @@ msgstr ""
|
|||||||
msgid "Password reset successfully."
|
msgid "Password reset successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:49
|
#: lib/cannery_web/controllers/user_settings_controller.ex:48
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Password updated successfully."
|
msgid "Password updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_registration_controller.ex:65
|
#: lib/cannery_web/controllers/user_registration_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Please check your email to verify your account"
|
msgid "Please check your email to verify your account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -120,7 +120,7 @@ msgstr ""
|
|||||||
msgid "Saving..."
|
msgid "Saving..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:95
|
#: lib/cannery_web/controllers/user_settings_controller.ex:94
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Your account has been deleted"
|
msgid "Your account has been deleted"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -172,7 +172,7 @@ msgstr ""
|
|||||||
msgid "Shot records updated successfully"
|
msgid "Shot records updated successfully"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_confirmation_controller.ex:37
|
#: lib/cannery_web/controllers/user_confirmation_controller.ex:35
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "%{email} confirmed successfully."
|
msgid "%{email} confirmed successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@ -208,7 +208,7 @@ msgstr ""
|
|||||||
msgid "Are you sure you want to change your language?"
|
msgid "Are you sure you want to change your language?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/cannery_web/controllers/user_settings_controller.ex:65
|
#: lib/cannery_web/controllers/user_settings_controller.ex:64
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "Language updated successfully."
|
msgid "Language updated successfully."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user