forked from potsda.mn/mobilizon
feat(cli): add command to test emails send correctly
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
4855af8f87
commit
7210f86889
65
lib/mix/tasks/mobilizon/maintenance/test_emails.ex
Normal file
65
lib/mix/tasks/mobilizon/maintenance/test_emails.ex
Normal file
|
@ -0,0 +1,65 @@
|
|||
defmodule Mix.Tasks.Mobilizon.Maintenance.TestEmails do
|
||||
@moduledoc """
|
||||
Task to send an email to check if the configuration is running properly
|
||||
"""
|
||||
use Mix.Task
|
||||
import Mix.Tasks.Mobilizon.Common
|
||||
alias Mobilizon.Config
|
||||
alias Mobilizon.Web.Email
|
||||
|
||||
@shortdoc "Send an email to check if the configuration is running properly"
|
||||
|
||||
@impl Mix.Task
|
||||
def run(options) do
|
||||
{options, args, []} =
|
||||
OptionParser.parse(
|
||||
options,
|
||||
strict: [
|
||||
locale: :string,
|
||||
help: :boolean
|
||||
],
|
||||
aliases: [
|
||||
l: :locale,
|
||||
h: :help
|
||||
]
|
||||
)
|
||||
|
||||
if Keyword.get(options, :help, false) do
|
||||
show_help()
|
||||
end
|
||||
|
||||
if Enum.empty?(args) do
|
||||
shell_error("mobilizon.maintenance.test_emails requires an email as argument")
|
||||
end
|
||||
|
||||
start_mobilizon()
|
||||
|
||||
default_language = Config.default_language()
|
||||
|
||||
args
|
||||
|> hd()
|
||||
|> String.trim()
|
||||
|> Email.Admin.email_configuration_test(
|
||||
locale: Keyword.get(options, :locale, default_language)
|
||||
)
|
||||
|> Email.Mailer.send_email()
|
||||
end
|
||||
|
||||
defp show_help do
|
||||
shell_info("""
|
||||
mobilizon.maintenance.test_emails [-h/--help] [email]
|
||||
|
||||
This command allows to send an email to an address in order to verify if email works
|
||||
|
||||
Options:
|
||||
|
||||
-l/--locale
|
||||
Locale for the mail message (en_US, de_DE, …)
|
||||
|
||||
-h/--help
|
||||
Show the help
|
||||
""")
|
||||
|
||||
shutdown(error_code: 0)
|
||||
end
|
||||
end
|
|
@ -132,4 +132,24 @@ defmodule Mobilizon.Web.Email.Admin do
|
|||
offer_unsupscription: false
|
||||
})
|
||||
end
|
||||
|
||||
@spec email_configuration_test(String.t(), Keyword.t()) :: Swoosh.Email.t()
|
||||
def email_configuration_test(email, options) do
|
||||
locale = Keyword.get(options, :locale, "en")
|
||||
Gettext.put_locale(locale)
|
||||
|
||||
subject =
|
||||
gettext(
|
||||
"Email configuration test for %{instance}",
|
||||
instance: Config.instance_name()
|
||||
)
|
||||
|
||||
[to: email, subject: subject]
|
||||
|> Email.base_email()
|
||||
|> render_body(:email_configuration_test, %{
|
||||
locale: locale,
|
||||
subject: subject,
|
||||
offer_unsupscription: false
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
60
lib/web/templates/email/email_configuration_test.html.heex
Normal file
60
lib/web/templates/email/email_configuration_test.html.heex
Normal file
|
@ -0,0 +1,60 @@
|
|||
<!-- HERO -->
|
||||
<tr>
|
||||
<td bgcolor="#474467" align="center" style="padding: 0px 10px 0px 10px;">
|
||||
<!--[if (gte mso 9)|(IE)]>
|
||||
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600">
|
||||
<tr>
|
||||
<td align="center" valign="top" width="600">
|
||||
<![endif]-->
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;">
|
||||
<tr>
|
||||
<td
|
||||
bgcolor="#ffffff"
|
||||
align="center"
|
||||
valign="top"
|
||||
style="padding: 40px 20px 20px 20px; border-radius: 4px 4px 0px 0px; color: #3A384C; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 48px; font-weight: 400; line-height: 48px;"
|
||||
>
|
||||
<h1 style="font-size: 48px; font-weight: 400; margin: 0;">
|
||||
<%= gettext("Well done!") %>
|
||||
</h1>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!--[if (gte mso 9)|(IE)]>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<![endif]-->
|
||||
</td>
|
||||
</tr>
|
||||
<!-- COPY BLOCK -->
|
||||
<tr>
|
||||
<td bgcolor="#E6E4F4" align="center" style="padding: 0px 10px 0px 10px;">
|
||||
<!--[if (gte mso 9)|(IE)]>
|
||||
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600">
|
||||
<tr>
|
||||
<td align="center" valign="top" width="600">
|
||||
<![endif]-->
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="100%" style="max-width: 600px;">
|
||||
<!-- COPY -->
|
||||
<tr>
|
||||
<td
|
||||
bgcolor="#ffffff"
|
||||
align="left"
|
||||
style="padding: 20px 30px 30px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;"
|
||||
>
|
||||
<p style="margin: 0;">
|
||||
<%= gettext(
|
||||
"If you received this email, the email configuration seems to be correct."
|
||||
) %>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<!--[if (gte mso 9)|(IE)]>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<![endif]-->
|
||||
</td>
|
||||
</tr>
|
|
@ -0,0 +1,3 @@
|
|||
<%= gettext "Well done!" %>
|
||||
==
|
||||
<%= gettext "If you received this email, the email configuration seems to be correct." %>
|
|
@ -103,7 +103,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -133,7 +133,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr "تنبيه"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -997,7 +997,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1311,7 +1311,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2021,11 +2021,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1197,23 +1197,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1239,17 +1239,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1259,7 +1259,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1269,7 +1269,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1286,22 +1286,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1311,17 +1311,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1331,27 +1331,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1387,7 +1387,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -101,7 +101,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -131,7 +131,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -977,7 +977,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1291,7 +1291,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1998,11 +1998,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1171,23 +1171,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1213,17 +1213,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1233,7 +1233,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1243,7 +1243,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1260,22 +1260,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1285,17 +1285,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1305,27 +1305,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1361,7 +1361,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -110,7 +110,7 @@ msgstr ""
|
|||
"Has creat un compte a %{host} amb aquesta adreça de mail. Estàs a un clic d"
|
||||
"'activar-lo. Si no l'has creat tu, ignora aquest mail."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "T'han aprovat la participació a %{title}"
|
||||
|
@ -140,7 +140,7 @@ msgstr "Algú ha soŀlicitat a %{instance} una contrasenya nova."
|
|||
msgid "Warning"
|
||||
msgstr "Alerta"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirma que participaràs a l'activitat %{title}"
|
||||
|
@ -1165,7 +1165,7 @@ msgstr "Què fan avui?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1533,7 +1533,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Aquesta és una web de proves per provar la beta de Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2256,11 +2256,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1172,23 +1172,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1214,17 +1214,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1234,7 +1234,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1244,7 +1244,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1261,22 +1261,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1286,17 +1286,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1306,27 +1306,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1362,7 +1362,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -111,7 +111,7 @@ msgstr ""
|
|||
"aktivace vás dělí jediné kliknutí. Pokud jste to nebyli vy, ignorujte prosím "
|
||||
"tento e-mail."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Vaše účast na události %{title} byla schválena"
|
||||
|
@ -141,7 +141,7 @@ msgstr "Vyžádali jste si nové heslo pro svůj účet na %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Upozornění"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Potvrďte svou účast na události %{title}"
|
||||
|
@ -1180,7 +1180,7 @@ msgstr "Co se dnes děje?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1596,7 +1596,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Jde o demonstrační web pro testování Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2349,11 +2349,30 @@ msgid "Participant registration date"
|
|||
msgstr "Status účastníka"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1199,25 +1199,25 @@ msgstr "Chyba při odebírání tokenu"
|
|||
msgid "Impossible to create application."
|
||||
msgstr "Nelze vytvořit aplikaci."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
"Odeslány nesprávné parametry. V závislosti na použitém typu grantu je třeba "
|
||||
"zadat alespoň parametry grant_type a client_id."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr "Zadání neplatných pověření klienta"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr "Zadán neplatný token obnovení"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr "Nebyla nalezena žádná aplikace s tímto client_id"
|
||||
|
@ -1243,17 +1243,17 @@ msgstr "Není oprávněn přistupovat k objektu %{objekt}"
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr "Není oprávněn k přístupu k tomuto %{object_type}"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr "Zpomalte prosím tempo svých požadavků"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr "Na žádost o povolení se stále čeká"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr "Zadané client_id nebo přiřazený device_code jsou neplatné"
|
||||
|
@ -1263,7 +1263,7 @@ msgstr "Zadané client_id nebo přiřazený device_code jsou neplatné"
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr "Před schválením žádosti nebyl uveden kód uživatele zařízení"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr "Platnost daného device_code vypršela"
|
||||
|
@ -1273,7 +1273,7 @@ msgstr "Platnost daného device_code vypršela"
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr "Zadané redirect_uri není v seznamu povolených URI pro přesměrování"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr "Daný rozsah není v seznamu deklarovaných rozsahů aplikace"
|
||||
|
@ -1290,22 +1290,22 @@ msgstr "Platnost daného kódu uživatele vypršela"
|
|||
msgid "The given user code is invalid"
|
||||
msgstr "Zadaný kód uživatele je neplatný"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr "Zadané client_id neodpovídá zadanému kódu"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr "Zadaný client_secret je neplatný"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr "Poskytnutý kód je neplatný nebo jeho platnost vypršela"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1316,17 +1316,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr "Parametr rozsah není seznam platných rozsahů oddělený mezerou"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr "Uživatel odmítl požadovanou autorizaci"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr "Toto přesměrování URI není povoleno"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Token not found"
|
||||
msgstr "Token nebyl nalezen"
|
||||
|
@ -1336,28 +1336,28 @@ msgstr "Token nebyl nalezen"
|
|||
msgid "Too many requests"
|
||||
msgstr "Příliš mnoho požadavků"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr "Nelze vytvořit kód zařízení"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr "Nelze odvolat token"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
"Chcete-li získat kód zařízení, musíte jako parametry předat client_id a scope"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr "Pro autorizaci aplikace je třeba zadat platnou redirect_uri"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1394,7 +1394,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -113,7 +113,7 @@ msgstr ""
|
|||
"nur ein Klick von der Aktivierung entfernt. Wenn Sie das nicht waren, "
|
||||
"ignorieren Sie diese E-Mail bitte."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Ihre Teilnahme an der Veranstaltung %{title}wurde akzeptiert"
|
||||
|
@ -144,7 +144,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Meine Teilnahme an der Veranstaltung %{title} zusagen"
|
||||
|
@ -1207,7 +1207,7 @@ msgstr "Was gibt’s heute?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1643,7 +1643,7 @@ msgstr ""
|
|||
"testen."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2408,11 +2408,30 @@ msgid "Participant registration date"
|
|||
msgstr "Teilnehmerstatus"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1216,23 +1216,23 @@ msgstr "Fehler beim Speichern des Reports"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1258,17 +1258,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1278,7 +1278,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1288,7 +1288,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1305,22 +1305,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1330,17 +1330,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Veranstaltung nicht gefunden"
|
||||
|
@ -1350,27 +1350,27 @@ msgstr "Veranstaltung nicht gefunden"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1406,7 +1406,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -86,7 +86,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -116,7 +116,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -956,7 +956,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1270,7 +1270,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1976,11 +1976,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -109,7 +109,7 @@ msgstr "Resetting your password is easy. Just press the button below and follow
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr "You created an account on %{host} with this email address. You are one click away from activating it."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Your participation to event %{title} has been approved"
|
||||
|
@ -139,7 +139,7 @@ msgstr "You requested a new password for your account on %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirm your participation to event %{title}"
|
||||
|
@ -1009,7 +1009,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1323,7 +1323,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "This is a demonstration site to test the beta version of Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2029,11 +2029,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1175,23 +1175,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1217,17 +1217,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1237,7 +1237,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1247,7 +1247,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1264,22 +1264,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1289,17 +1289,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1309,27 +1309,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1365,7 +1365,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -1172,23 +1172,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1214,17 +1214,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1234,7 +1234,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1244,7 +1244,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1261,22 +1261,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1286,17 +1286,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1306,27 +1306,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1362,7 +1362,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -112,7 +112,7 @@ msgstr ""
|
|||
"Has creado una cuenta en %{host} con esta dirección de correo electrónico. "
|
||||
"Estás a un clic de activarlo. Si no eras tú, ignora este correo electrónico."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Su participación en el evento %{title} ha sido aprobada"
|
||||
|
@ -142,7 +142,7 @@ msgstr "Solicitó una nueva contraseña para su cuenta en %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Advertencia"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirme su participación en el evento %{title}"
|
||||
|
@ -1178,7 +1178,7 @@ msgstr "Qué pasa hoy?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1596,7 +1596,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Este es un sitio de demostración para probar Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2353,11 +2353,30 @@ msgid "Participant registration date"
|
|||
msgstr "Fecha de registro del participante"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1202,23 +1202,23 @@ msgstr "Error al guardar el informe"
|
|||
msgid "Impossible to create application."
|
||||
msgstr "Imposible crear una aplicación"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr "Se enviaron parámetros incorrectos. Debes proporcionar al menos los parámetros grant_type y client_id, dependiendo del grant_type que se esté usando."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr "Se han provisto credenciales de cliente no válidas"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr "Se ha provisto un token de refrescado inválido"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr "No se ha encontrado una aplicación con este client_id"
|
||||
|
@ -1244,17 +1244,17 @@ msgstr "No está autorizado a acceder al objeto %{object}"
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr "No está autorizado a acceder a este %{object_type}"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr "Por favor reduce la frecuencia de tus peticiones"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr "La solicitud de autorización todavía está pendiente"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr "El client_id provisto o el device_code asociado es inválido"
|
||||
|
@ -1264,7 +1264,7 @@ msgstr "El client_id provisto o el device_code asociado es inválido"
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1274,7 +1274,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1291,22 +1291,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1316,17 +1316,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Token no encontrado"
|
||||
|
@ -1336,27 +1336,27 @@ msgstr "Token no encontrado"
|
|||
msgid "Too many requests"
|
||||
msgstr "Demasiadas peticiones"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1392,7 +1392,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -111,7 +111,7 @@ msgstr ""
|
|||
"yhdellä napsautuksella. Jos et luonut tiliä itse, voit jättää tämän viestin "
|
||||
"huomiotta."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Osallistumisesi tapahtumaan %{title} on hyväksytty"
|
||||
|
@ -141,7 +141,7 @@ msgstr "Pyysit uutta salasanaa tilillesi palvelimella %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Varoitus"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Vahvista osallistumisesi tapahtumaan %{title}"
|
||||
|
@ -1159,7 +1159,7 @@ msgstr "Mitä tänään tapahtuu?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1570,7 +1570,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Tämä on koekäyttöön tarkoitettu Mobilizonin esittelysivu."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2293,11 +2293,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1178,23 +1178,23 @@ msgstr "Virhe raporttia tallennettaessa"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1220,17 +1220,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1240,7 +1240,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1250,7 +1250,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1267,22 +1267,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1292,17 +1292,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Tapahtumaa ei löydy"
|
||||
|
@ -1312,27 +1312,27 @@ msgstr "Tapahtumaa ei löydy"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1368,7 +1368,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2023-12-01 09:02+0100\n"
|
||||
"PO-Revision-Date: 2023-12-06 18:50+0100\n"
|
||||
"Last-Translator: Thomas Citharel <thomas.citharel@framasoft.org>\n"
|
||||
"Language-Team: French <https://weblate.framasoft.org/projects/mobilizon/backend/fr/>\n"
|
||||
"Language: fr\n"
|
||||
|
@ -88,7 +88,7 @@ msgstr "Réinitialiser votre mot de passe est facile. Cliquez simplement sur le
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr "Vous avez créé un compte sur %{host} avec cette adresse email. Vous êtes à un clic de l'activer."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Votre participation à l'événement %{title} a été approuvée"
|
||||
|
||||
|
@ -112,7 +112,7 @@ msgstr "Vous avez demandé un nouveau mot de passe pour votre compte sur %{insta
|
|||
msgid "Warning"
|
||||
msgstr "Attention"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirmer ma participation à l'événement %{title}"
|
||||
|
||||
|
@ -784,7 +784,7 @@ msgstr "Voir l'événement mis à jour sur : %{link}"
|
|||
msgid "What's up today?"
|
||||
msgstr "Quoi de neuf aujourd'hui ?"
|
||||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98 lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.heex:98 lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98 lib/web/templates/email/event_participation_approved.text.eex:11 lib/web/templates/email/event_participation_confirmed.html.heex:140 lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
msgstr "Si vous souhaitez mettre à jour ou annuler votre participation, il vous suffit d'accéder à la page de l'événement par le lien ci-dessus et de cliquer sur le bouton Participer."
|
||||
|
||||
|
@ -1028,7 +1028,7 @@ msgstr "Nous sommes désolé·e·s, mais quelque chose s’est mal passé de not
|
|||
msgid "This is a demonstration site to test Mobilizon."
|
||||
msgstr "Ceci est un site de démonstration permettant de tester Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86 lib/service/metadata/actor.ex:92 lib/service/metadata/instance.ex:60 lib/service/metadata/instance.ex:66
|
||||
#: lib/service/metadata/actor.ex:86 lib/service/metadata/actor.ex:93 lib/service/metadata/instance.ex:60 lib/service/metadata/instance.ex:66
|
||||
msgid "%{name}'s feed"
|
||||
msgstr "Flux de %{name}"
|
||||
|
||||
|
@ -1559,10 +1559,22 @@ msgstr "Événements signalés"
|
|||
msgid "Participant registration date"
|
||||
msgstr "Date d'inscription du participant"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113 lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
msgid "Cancel my attendance"
|
||||
msgstr "Annuler ma participation"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90 lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr "Si vous souhaitez annuler votre participation, il vous suffit de cliquer sur le lien ci-dessous."
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr "Test de configuration des e-mails pour %{instance}"
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47 lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr "Si vous avez reçu cet e-mail, la configuration des e-mails semble correcte."
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18 lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
msgid "Well done!"
|
||||
msgstr "Bien joué !"
|
||||
|
|
|
@ -1174,25 +1174,25 @@ msgstr "Erreur lors de la révocation du jeton"
|
|||
msgid "Impossible to create application."
|
||||
msgstr "Impossible de créer l'application."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
"Paramètres envoyés incorrects. Vous devez au moins fournir les paramètres grant_type et client_id, en fonction du type d’autorisation "
|
||||
"utilisée."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr "Les identifiants clients fournis sont invalides"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr "Le jeton de rafraîchissement fourni est invalide"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr "Aucune application n'a été trouvée avec ce client_id"
|
||||
|
@ -1218,17 +1218,17 @@ msgstr "Non autorisé à accéder à l'objet %{object}"
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr "Non autorisé à accéder à ce %{object_type}"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr "Merci de réduire le rythme de vos requêtes"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr "La requête d'autorisation est toujours en attente"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr "Le client_id fourni ou device_code associé n'est pas valide"
|
||||
|
@ -1238,7 +1238,7 @@ msgstr "Le client_id fourni ou device_code associé n'est pas valide"
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr "Le code utilisateur de l'appareil n'a pas été fourni avant l'approbation de la demande"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr "Le device_code donné a expiré"
|
||||
|
@ -1248,7 +1248,7 @@ msgstr "Le device_code donné a expiré"
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr "Le redirect_uri donné ne figure pas dans la liste des URI de redirection autorisées"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr "Le champ d'application donné n'est pas dans la liste des champs d'application déclarés par l'application"
|
||||
|
@ -1265,22 +1265,22 @@ msgstr "Le code utilisateur donné a expiré"
|
|||
msgid "The given user code is invalid"
|
||||
msgstr "Le code utilisateur donné n'est pas valide"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr "Le client_id fourni ne correspond pas au code fourni"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr "Le client_secret fourni n'est pas valide"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr "Le code fourni n'est pas valide ou a expiré"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr "Le champ d'application fourni n'est pas valide ou n'est pas inclus dans les champs d'application déclarés de l'application"
|
||||
|
@ -1290,17 +1290,17 @@ msgstr "Le champ d'application fourni n'est pas valide ou n'est pas inclus dans
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr "Le paramètre scope n'est pas une liste de champs d'application valides séparés par des espaces"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr "L'utilisateur a refusé l'autorisation demandée"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr "Cette URI de redirection n'est pas autorisée"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Token not found"
|
||||
msgstr "Jeton non trouvé"
|
||||
|
@ -1310,27 +1310,27 @@ msgstr "Jeton non trouvé"
|
|||
msgid "Too many requests"
|
||||
msgstr "Trop de requêtes"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr "Impossible de produire un device code"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr "Impossible de révoquer le jeton"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr "Pour obtenir un code d'appareil, vous devez passer en paramètre le client_id et le scope"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr "Vous devez fournir un redirect_uri valide pour autoriser une application"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr "Vous devez spécifier client_id, redirect_uri, scope et state pour autoriser une application"
|
||||
|
@ -1366,7 +1366,7 @@ msgstr "Le même abonnement push a déjà été enregistré"
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr "Cette instance est en attente d'une approbation de suivi"
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr "L'ID de fuseau horaire %{timezone} est invalide"
|
||||
|
|
|
@ -107,7 +107,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -137,7 +137,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -989,7 +989,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1303,7 +1303,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2011,11 +2011,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1178,23 +1178,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1220,17 +1220,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1240,7 +1240,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1250,7 +1250,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1267,22 +1267,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1292,17 +1292,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1312,27 +1312,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1368,7 +1368,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -110,7 +110,7 @@ msgstr ""
|
|||
"Creaches unha conta en %{host} con este enderezo de email. Só precisas "
|
||||
"activalo. Se non foches ti, por favor ignora este email."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Foi aprobada a túa participación no evento %{title}"
|
||||
|
@ -141,7 +141,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirma a túa participación no evento %{title}"
|
||||
|
@ -1156,7 +1156,7 @@ msgstr "Que temos para hoxe?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1565,7 +1565,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Este é un sitio web de exemplo para probar Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2289,11 +2289,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1194,23 +1194,23 @@ msgstr "Erro ó gardar a denuncia"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1236,17 +1236,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1256,7 +1256,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1266,7 +1266,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1283,22 +1283,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1308,17 +1308,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Evento non atopado"
|
||||
|
@ -1328,27 +1328,27 @@ msgstr "Evento non atopado"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1384,7 +1384,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -100,7 +100,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -130,7 +130,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -982,7 +982,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1296,7 +1296,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2004,11 +2004,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1179,23 +1179,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1221,17 +1221,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1241,7 +1241,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1251,7 +1251,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1268,22 +1268,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1293,17 +1293,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1313,27 +1313,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1369,7 +1369,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -111,7 +111,7 @@ msgstr ""
|
|||
"Stvorio/la si račun na %{host} s ovom e-mail adresom. Od aktivacije te "
|
||||
"dijeli jedan klik. Ako to nisi bio/la ti, zanemari ovu e-mail poruku."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Tvoje sudjelovanje događaju %{title} je odobreno"
|
||||
|
@ -141,7 +141,7 @@ msgstr "Zatražio/la si novu lozinku za tvoj račun na %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Potvrdi sudjeljovnje događaju %{title}"
|
||||
|
@ -1039,7 +1039,7 @@ msgstr "Što je danas na redu?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1382,7 +1382,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Ovo je demonstracijska stranica za isprobavanje Mobilizona."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2120,11 +2120,30 @@ msgid "Participant registration date"
|
|||
msgstr "Stanje sudionika"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1209,23 +1209,23 @@ msgstr "Greška tijekom spremanja izvještaja"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1251,17 +1251,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1271,7 +1271,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1281,7 +1281,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1298,22 +1298,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1323,17 +1323,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1343,27 +1343,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1399,7 +1399,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -118,7 +118,7 @@ msgstr ""
|
|||
"kattintásnyira van az aktiválástól. Ha ez nem Ön volt, akkor hagyja "
|
||||
"figyelmen kívül ezt a levelet."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "A(z) %{title} eseményen való részvételét jóváhagyták"
|
||||
|
@ -148,7 +148,7 @@ msgstr "Új jelszót kért a(z) %{instance} példányon lévő fiókjához."
|
|||
msgid "Warning"
|
||||
msgstr "Figyelmeztetés"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Erősítse meg a(z) %{title} eseményen való részvételét"
|
||||
|
@ -1066,7 +1066,7 @@ msgstr "Mi lesz ma?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1392,7 +1392,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Ez egy bemutató oldal a Mobilizon kipróbálásához."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2149,11 +2149,30 @@ msgid "Participant registration date"
|
|||
msgstr "Résztvevő állapota"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1227,23 +1227,23 @@ msgstr "Hiba a jelentés mentésekor"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1269,17 +1269,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1289,7 +1289,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1299,7 +1299,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1316,22 +1316,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1341,17 +1341,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "A hozzászólás nem található"
|
||||
|
@ -1361,27 +1361,27 @@ msgstr "A hozzászólás nem található"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1417,7 +1417,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -105,7 +105,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Keikutsertaan Anda pada acara %{title} telah diterima"
|
||||
|
@ -135,7 +135,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr "Peringatan"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Konfirmasi keikutsertaan Anda pada acara %{title}"
|
||||
|
@ -1003,7 +1003,7 @@ msgstr "Ada apa hari ini?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1320,7 +1320,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2025,11 +2025,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1166,23 +1166,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1208,17 +1208,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1228,7 +1228,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1238,7 +1238,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1255,22 +1255,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1280,17 +1280,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1300,27 +1300,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1356,7 +1356,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -110,7 +110,7 @@ msgstr ""
|
|||
"Hai creato un account su %{host} con questa email. Sei ad un click "
|
||||
"dall'attivarlo. Se non sei tu ignora questo messaggio."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "La tua partecipazione all'evento %{title} è stata approvata"
|
||||
|
@ -140,7 +140,7 @@ msgstr "Hai richiesto una nuova password per il tuo account su %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Avviso"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Conferma la tua partecipazione all'evento %{title}"
|
||||
|
@ -1187,7 +1187,7 @@ msgstr "Cosa succede oggi?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1612,7 +1612,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Questo è un sito di prova per testare Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2372,11 +2372,30 @@ msgid "Participant registration date"
|
|||
msgstr "Stato partecipante"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1202,23 +1202,23 @@ msgstr "Errore nel salvare la segnalazione"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1244,17 +1244,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1264,7 +1264,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1274,7 +1274,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1291,22 +1291,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1316,17 +1316,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Evento non trovato"
|
||||
|
@ -1336,27 +1336,27 @@ msgstr "Evento non trovato"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1392,7 +1392,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -102,7 +102,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -132,7 +132,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -966,7 +966,7 @@ msgstr "今日の調子はいかがですか?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1282,7 +1282,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1992,11 +1992,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1166,23 +1166,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1208,17 +1208,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1228,7 +1228,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1238,7 +1238,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1255,22 +1255,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1280,17 +1280,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1300,27 +1300,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1356,7 +1356,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -99,7 +99,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -129,7 +129,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -963,7 +963,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1277,7 +1277,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1982,11 +1982,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1159,23 +1159,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1201,17 +1201,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1221,7 +1221,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1231,7 +1231,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1248,22 +1248,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1273,17 +1273,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1293,27 +1293,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1349,7 +1349,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -108,7 +108,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -138,7 +138,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -978,7 +978,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1292,7 +1292,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1998,11 +1998,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1165,23 +1165,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1207,17 +1207,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1227,7 +1227,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1237,7 +1237,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1254,22 +1254,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1279,17 +1279,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1299,27 +1299,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1355,7 +1355,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -111,7 +111,7 @@ msgstr ""
|
|||
"U hebt een account op %{host} gemaakt met dit emailadres. U bent op één "
|
||||
"klik van de activering. Gelieve deze email te negeren als u dit niet was."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Uw deelname aan het evenement %{title} is goedgekeurd"
|
||||
|
@ -141,7 +141,7 @@ msgstr "U hebt een nieuw wachtwoord aangevraagd voor uw account op %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Waarschuwing"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Bevestig uw deelname aan het evenement %{title}"
|
||||
|
@ -992,7 +992,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1312,7 +1312,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Dit is een demosite om de bètaversie van Mobilizon te testen."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2028,11 +2028,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1165,23 +1165,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1207,17 +1207,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1227,7 +1227,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1237,7 +1237,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1254,22 +1254,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1279,17 +1279,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1299,27 +1299,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1355,7 +1355,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -111,7 +111,7 @@ msgstr ""
|
|||
"klikk unna å aktivera kontoen. Viss du ikkje oppretta nokon konto, kan du "
|
||||
"berre oversjå denne eposten."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Deltakinga di på hendinga %{title} er godkjent"
|
||||
|
@ -141,7 +141,7 @@ msgstr "Du ba om eit nytt passord for brukarkontoen din på %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Åtvaring"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Stadfest at du vil delta på hendinga %{title}"
|
||||
|
@ -1151,7 +1151,7 @@ msgstr "Kva skjer i dag?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1566,7 +1566,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Dette er ei demoside for å prøva ut Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2321,11 +2321,30 @@ msgid "Participant registration date"
|
|||
msgstr "Deltakarstatus"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1209,23 +1209,23 @@ msgstr "Greidde ikkje lagra rapporten"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1251,17 +1251,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1271,7 +1271,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1281,7 +1281,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1298,22 +1298,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1323,17 +1323,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Fann ikkje hendinga"
|
||||
|
@ -1343,27 +1343,27 @@ msgstr "Fann ikkje hendinga"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1399,7 +1399,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -103,7 +103,7 @@ msgstr "Reïnicializar vòstre senhal es facil. Clicatz simplament lo boton e se
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr "Avètz creat un compte sus %{host} amb aquesta adreça electronica. Sètz a un clic de l’activar."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Vòstra participacion a l’eveniment %{title} es estada aprovada"
|
||||
|
@ -133,7 +133,7 @@ msgstr "Avètz demandat un nòu senhal per vòstre compte sus %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Avertiment"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirmatz vòstra participacion a l’eveniment %{title}"
|
||||
|
@ -1065,7 +1065,7 @@ msgstr "Qué de nòu uèi ?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1387,7 +1387,7 @@ msgstr ""
|
|||
"Aquò es un site de demostracion per ensajar la version beta de Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2095,11 +2095,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1177,23 +1177,23 @@ msgstr "Error mentre que sauvant lo rapòrt"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1219,17 +1219,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1239,7 +1239,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1249,7 +1249,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1266,22 +1266,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1291,17 +1291,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Eveniment non trobat"
|
||||
|
@ -1311,27 +1311,27 @@ msgstr "Eveniment non trobat"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1367,7 +1367,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -113,7 +113,7 @@ msgstr ""
|
|||
"jedno kliknięcie do aktywacji go. Jeżeli to nie Ty, po prostu zignoruj ten "
|
||||
"e-mail."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Twój udział w wydarzeniu %{title} został zatwierdzony"
|
||||
|
@ -143,7 +143,7 @@ msgstr "Poprosiłeś(-aś) o nowe hasło do swojego konta na %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Ostrzeżenie"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Potwierdź swoje uczestnictwo w wydarzeniu %{title}"
|
||||
|
@ -1192,7 +1192,7 @@ msgstr "Co dziś się wydarzy?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1617,7 +1617,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "To jest strona demonstracyjna pozwalająca na przetestowanie Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2385,11 +2385,30 @@ msgid "Participant registration date"
|
|||
msgstr "Data rejestracji uczestnika"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1220,25 +1220,25 @@ msgstr "Błąd podczas unieważniania tokena"
|
|||
msgid "Impossible to create application."
|
||||
msgstr "Nie da się utworzyć aplikacji."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
"Wysłano nieprawidłowe parametry. Należy podać co najmniej parametry "
|
||||
"grant_type i client_id, w zależności od używanego typu grantu."
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr "Podano nieprawidłowe informacje uwierzytelniające klienta"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr "Podano nieprawidłowy token odświeżania"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr "Nie znaleziono aplikacji o tym identyfikatorze client_id"
|
||||
|
@ -1264,17 +1264,17 @@ msgstr "Brak uprawnień dostępu do obiektu %{object}"
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr "Brak uprawnień dostępu do tego %{object_type}"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr "Prosimy o zwolnienie tempa wysyłania żądań"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr "Żądanie autoryzacji jest nadal w toku"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr "Nieprawidłowy identyfikator client_id lub powiązany kod device_code"
|
||||
|
@ -1284,7 +1284,7 @@ msgstr "Nieprawidłowy identyfikator client_id lub powiązany kod device_code"
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr "Przed zatwierdzeniem aplikacji nie podano kodu użytkownika urządzenia"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr "Podany kod device_code wygasł"
|
||||
|
@ -1295,7 +1295,7 @@ msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
|||
msgstr ""
|
||||
"Podany redirect_uri nie znajduje się na liście dozwolonych URI przekierowania"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1313,22 +1313,22 @@ msgstr "Podany kod użytkownika wygasł"
|
|||
msgid "The given user code is invalid"
|
||||
msgstr "Podany kod użytkownika jest nieprawidłowy"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr "Identyfikator client_id nie pasuje do podanego kodu"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr "Podany client_secret jest nieprawidłowy"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr "Podany kod jest nieprawidłowy lub wygasł"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1341,17 +1341,17 @@ msgid "The scope parameter is not a space separated list of valid scopes"
|
|||
msgstr ""
|
||||
"Parametr scope nie jest rozdzieloną spacjami listą prawidłowych zakresów"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr "Użytkownik odrzucił żądaną autoryzację"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr "Ten URI przekierowania jest niedozwolony"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Token not found"
|
||||
msgstr "Nie znaleziono tokena"
|
||||
|
@ -1361,29 +1361,29 @@ msgstr "Nie znaleziono tokena"
|
|||
msgid "Too many requests"
|
||||
msgstr "Zbyt wiele żądań"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr "Nie można wygenerować kodu urządzenia"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr "Nie można unieważnić tokena"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
"Aby uzyskać kod urządzenia, należy określić zarówno client_id, jak i scope "
|
||||
"jako parametry"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr "Aby autoryzować aplikację, należy podać prawidłowe redirect_uri"
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1423,7 +1423,7 @@ msgstr "Ta sama subskrypcja push została już zarejestrowana"
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr "Ta instancja oczekuje na zatwierdzenie obserwacji"
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr "Identyfikator strefy czasowej %{timezone} jest nieprawidłowy"
|
||||
|
|
|
@ -101,7 +101,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -131,7 +131,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -971,7 +971,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1285,7 +1285,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1991,11 +1991,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1165,23 +1165,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1207,17 +1207,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1227,7 +1227,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1237,7 +1237,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1254,22 +1254,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1279,17 +1279,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1299,27 +1299,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1355,7 +1355,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -111,7 +111,7 @@ msgstr ""
|
|||
"mail. Você está a um clique para ativar sua conta. Se não for você favor "
|
||||
"ignorar este e-mail."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "A sua participação no evento %{title} foi aprovada"
|
||||
|
@ -141,7 +141,7 @@ msgstr "Você solicitou uma nova senha para sua conta em %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Atenção"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Confirmar sua participação no evento %{title}"
|
||||
|
@ -1048,7 +1048,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1397,7 +1397,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Este é um site de demonstração para testar a versão beta do Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2103,11 +2103,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1172,23 +1172,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1214,17 +1214,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1234,7 +1234,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1244,7 +1244,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1261,22 +1261,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1286,17 +1286,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1306,27 +1306,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1362,7 +1362,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -112,7 +112,7 @@ msgstr ""
|
|||
"одном клике от его активации. Если это сделали не вы, просто проигнорируйте "
|
||||
"это письмо."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Ваше участие в мероприятии %{title} было одобрено"
|
||||
|
@ -142,7 +142,7 @@ msgstr "Вы запросили новый пароль для своей уче
|
|||
msgid "Warning"
|
||||
msgstr "Предупреждение"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Подтвердите свое участие в мероприятии %{title}"
|
||||
|
@ -1182,7 +1182,7 @@ msgstr "Что будет сегодня?"
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1603,7 +1603,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr "Это демонстрационная площадка для тестирования Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2338,11 +2338,30 @@ msgid "Participant registration date"
|
|||
msgstr "Статус участника"
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1222,23 +1222,23 @@ msgstr "При сохранении отчёта произошла ошибка
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1264,17 +1264,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1284,7 +1284,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1294,7 +1294,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1311,22 +1311,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1336,17 +1336,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr "Мероприятие не найдено"
|
||||
|
@ -1356,27 +1356,27 @@ msgstr "Мероприятие не найдено"
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1412,7 +1412,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -112,7 +112,7 @@ msgstr ""
|
|||
"bara ett klick för att aktivera den. Om det inte var du som gjorde det kan "
|
||||
"du strunta i det här meddelandet."
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr "Din förfrågan om att få delta i evenemanget %{title} har godkännts"
|
||||
|
@ -142,7 +142,7 @@ msgstr "Du har bett om ett nytt lösenord för ditt konto på %{instance}."
|
|||
msgid "Warning"
|
||||
msgstr "Varning"
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr "Bekräfta ditt deltagande i eventet %{title}"
|
||||
|
@ -1028,7 +1028,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1345,7 +1345,7 @@ msgstr ""
|
|||
"Detta är en webbplats för att visa upp och testa beta-versionen av Mobilizon."
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -2051,11 +2051,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1177,23 +1177,23 @@ msgstr "Fel vid sparande av rapport"
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1219,17 +1219,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1239,7 +1239,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1249,7 +1249,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1266,22 +1266,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1291,17 +1291,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1311,27 +1311,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1367,7 +1367,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
|
@ -99,7 +99,7 @@ msgstr ""
|
|||
msgid "You created an account on %{host} with this email address. You are one click away from activating it. If this wasn't you, please ignore this email."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:114
|
||||
#: lib/web/email/participation.ex:115
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Your participation to event %{title} has been approved"
|
||||
msgstr ""
|
||||
|
@ -129,7 +129,7 @@ msgstr ""
|
|||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/participation.ex:140
|
||||
#: lib/web/email/participation.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Confirm your participation to event %{title}"
|
||||
msgstr ""
|
||||
|
@ -963,7 +963,7 @@ msgstr ""
|
|||
|
||||
#: lib/web/templates/email/event_participation_approved.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_approved.text.eex:11
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:98
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:140
|
||||
#: lib/web/templates/email/event_participation_confirmed.text.eex:6
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Would you wish to update or cancel your attendance, simply access the event page through the link above and click on the Attending button."
|
||||
|
@ -1277,7 +1277,7 @@ msgid "This is a demonstration site to test Mobilizon."
|
|||
msgstr ""
|
||||
|
||||
#: lib/service/metadata/actor.ex:86
|
||||
#: lib/service/metadata/actor.ex:92
|
||||
#: lib/service/metadata/actor.ex:93
|
||||
#: lib/service/metadata/instance.ex:60
|
||||
#: lib/service/metadata/instance.ex:66
|
||||
#, elixir-autogen, elixir-format
|
||||
|
@ -1982,11 +1982,30 @@ msgid "Participant registration date"
|
|||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:113
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:122
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Cancel my attendance"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.heex:90
|
||||
#: lib/web/templates/email/event_participation_confirmed.html.heex:99
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you wish to cancel your participation, simply click on the link below."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/email/admin.ex:142
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Email configuration test for %{instance}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:47
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:3
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "If you received this email, the email configuration seems to be correct."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/templates/email/email_configuration_test.html.heex:18
|
||||
#: lib/web/templates/email/email_configuration_test.text.eex:1
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Well done!"
|
||||
msgstr ""
|
||||
|
|
|
@ -1159,23 +1159,23 @@ msgstr ""
|
|||
msgid "Impossible to create application."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:355
|
||||
#: lib/web/controllers/application_controller.ex:353
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Incorrect parameters sent. You need to provide at least the grant_type and client_id parameters, depending on the grant type being used."
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:328
|
||||
#: lib/web/controllers/application_controller.ex:326
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid client credentials provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:336
|
||||
#: lib/web/controllers/application_controller.ex:334
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Invalid refresh token provided"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:169
|
||||
#: lib/web/controllers/application_controller.ex:400
|
||||
#: lib/web/controllers/application_controller.ex:167
|
||||
#: lib/web/controllers/application_controller.ex:398
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "No application was found with this client_id"
|
||||
msgstr ""
|
||||
|
@ -1201,17 +1201,17 @@ msgstr ""
|
|||
msgid "Not authorized to access this %{object_type}"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:278
|
||||
#: lib/web/controllers/application_controller.ex:276
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Please slow down the rate of your requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:266
|
||||
#: lib/web/controllers/application_controller.ex:264
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The authorization request is still pending"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:248
|
||||
#: lib/web/controllers/application_controller.ex:246
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The client_id provided or the device_code associated is invalid"
|
||||
msgstr ""
|
||||
|
@ -1221,7 +1221,7 @@ msgstr ""
|
|||
msgid "The device user code was not provided before approving the application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:303
|
||||
#: lib/web/controllers/application_controller.ex:301
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given device_code has expired"
|
||||
msgstr ""
|
||||
|
@ -1231,7 +1231,7 @@ msgstr ""
|
|||
msgid "The given redirect_uri is not in the list of allowed redirect URIs"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:157
|
||||
#: lib/web/controllers/application_controller.ex:155
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The given scope is not in the list of the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1248,22 +1248,22 @@ msgstr ""
|
|||
msgid "The given user code is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:410
|
||||
#: lib/web/controllers/application_controller.ex:408
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_id does not match the provided code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:413
|
||||
#: lib/web/controllers/application_controller.ex:411
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided client_secret is invalid"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:406
|
||||
#: lib/web/controllers/application_controller.ex:404
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided code is invalid or expired"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:417
|
||||
#: lib/web/controllers/application_controller.ex:415
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The provided scope is invalid or not included in the app declared scopes"
|
||||
msgstr ""
|
||||
|
@ -1273,17 +1273,17 @@ msgstr ""
|
|||
msgid "The scope parameter is not a space separated list of valid scopes"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:291
|
||||
#: lib/web/controllers/application_controller.ex:289
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "The user rejected the requested authorization"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:403
|
||||
#: lib/web/controllers/application_controller.ex:401
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "This redirect URI is not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:380
|
||||
#: lib/web/controllers/application_controller.ex:378
|
||||
#, elixir-autogen, elixir-format, fuzzy
|
||||
msgid "Token not found"
|
||||
msgstr ""
|
||||
|
@ -1293,27 +1293,27 @@ msgstr ""
|
|||
msgid "Too many requests"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:183
|
||||
#: lib/web/controllers/application_controller.ex:181
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to produce device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:372
|
||||
#: lib/web/controllers/application_controller.ex:370
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Unable to revoke token"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:197
|
||||
#: lib/web/controllers/application_controller.ex:195
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to pass both client_id and scope as parameters to obtain a device code"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:135
|
||||
#: lib/web/controllers/application_controller.ex:133
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to provide a valid redirect_uri to autorize an application"
|
||||
msgstr ""
|
||||
|
||||
#: lib/web/controllers/application_controller.ex:125
|
||||
#: lib/web/controllers/application_controller.ex:123
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "You need to specify client_id, redirect_uri, scope and state to autorize an application"
|
||||
msgstr ""
|
||||
|
@ -1349,7 +1349,7 @@ msgstr ""
|
|||
msgid "This instance is pending follow approval"
|
||||
msgstr ""
|
||||
|
||||
#: lib/graphql/schema/custom/timezone.ex:23
|
||||
#: lib/graphql/schema/custom/timezone.ex:25
|
||||
#, elixir-autogen, elixir-format
|
||||
msgid "Timezone ID %{timezone} is invalid"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in a new issue