forked from potsda.mn/mobilizon
Merge branch 'fix-event-update' into 'master'
Fix event update See merge request framasoft/mobilizon!591
This commit is contained in:
commit
39e90b3a50
|
@ -1572,8 +1572,11 @@ defmodule Mobilizon.Events do
|
|||
Participant
|
||||
|> join(:inner, [p], a in Actor, on: p.actor_id == a.id and is_nil(a.domain))
|
||||
|> join(:left, [_p, a], u in User, on: a.user_id == u.id)
|
||||
|> where([p], p.event_id == ^event_id)
|
||||
|> select([_p, a, u], {a, u})
|
||||
|> where(
|
||||
[p],
|
||||
p.event_id == ^event_id and p.role not in [^:not_approved, ^:not_confirmed, ^:rejected]
|
||||
)
|
||||
|> select([p, a, u], {p, a, u})
|
||||
end
|
||||
|
||||
@spec list_participations_for_user_query(integer()) :: Ecto.Query.t()
|
||||
|
|
|
@ -11,25 +11,26 @@ defmodule Mobilizon.Web.Email.Event do
|
|||
|
||||
alias Mobilizon.Actors.Actor
|
||||
alias Mobilizon.Events
|
||||
alias Mobilizon.Events.Event
|
||||
alias Mobilizon.Events.{Event, Participant}
|
||||
alias Mobilizon.Storage.Repo
|
||||
alias Mobilizon.Users.User
|
||||
|
||||
alias Mobilizon.Web.{Email, Gettext}
|
||||
alias Mobilizon.Web.Email
|
||||
alias Mobilizon.Web.Gettext, as: GettextBackend
|
||||
|
||||
@important_changes [:title, :begins_on, :ends_on, :status, :physical_address]
|
||||
|
||||
@spec event_updated(User.t(), Actor.t(), Event.t(), Event.t(), MapSet.t(), String.t()) ::
|
||||
@spec event_updated(String.t(), Actor.t(), Event.t(), Event.t(), MapSet.t(), String.t()) ::
|
||||
Bamboo.Email.t()
|
||||
def event_updated(
|
||||
%User{} = user,
|
||||
email,
|
||||
%Actor{} = actor,
|
||||
%Event{} = old_event,
|
||||
%Event{} = event,
|
||||
changes,
|
||||
locale \\ "en"
|
||||
) do
|
||||
Gettext.put_locale(locale)
|
||||
GettextBackend.put_locale(locale)
|
||||
|
||||
subject =
|
||||
gettext(
|
||||
|
@ -37,7 +38,7 @@ defmodule Mobilizon.Web.Email.Event do
|
|||
title: old_event.title
|
||||
)
|
||||
|
||||
Email.base_email(to: {Actor.display_name(actor), user.email}, subject: subject)
|
||||
Email.base_email(to: {Actor.display_name(actor), email}, subject: subject)
|
||||
|> assign(:locale, locale)
|
||||
|> assign(:event, event)
|
||||
|> assign(:old_event, old_event)
|
||||
|
@ -73,12 +74,27 @@ defmodule Mobilizon.Web.Email.Event do
|
|||
end
|
||||
|
||||
defp send_notification_for_event_update_to_participant(
|
||||
{%Actor{} = actor, %User{locale: locale} = user},
|
||||
{%Participant{} = _participant, %Actor{} = actor,
|
||||
%User{locale: locale, email: email} = _user},
|
||||
%Event{} = old_event,
|
||||
%Event{} = event,
|
||||
diff
|
||||
) do
|
||||
user
|
||||
email
|
||||
|> Email.Event.event_updated(actor, old_event, event, diff, locale)
|
||||
|> Email.Mailer.deliver_later()
|
||||
end
|
||||
|
||||
defp send_notification_for_event_update_to_participant(
|
||||
{%Participant{metadata: %{email: email}} = _participant, %Actor{} = actor, nil},
|
||||
%Event{} = old_event,
|
||||
%Event{} = event,
|
||||
diff
|
||||
)
|
||||
when not is_nil(email) do
|
||||
locale = Gettext.get_locale()
|
||||
|
||||
email
|
||||
|> Email.Event.event_updated(actor, old_event, event, diff, locale)
|
||||
|> Email.Mailer.deliver_later()
|
||||
end
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
<tr>
|
||||
<td bgcolor="#ffffff" align="left" style="padding: 20px 30px 0px 30px; color: #474467; font-family: 'Roboto', Helvetica, Arial, sans-serif; font-size: 18px; font-weight: 400; line-height: 25px;" >
|
||||
<p style="margin: 0;">
|
||||
<%= gettext "There have been changes for %{title} so we'd thought we'd let you know.", title: @old_event.title %>
|
||||
<%= gettext("There have been changes for <b>%{title}</b> so we'd thought we'd let you know.", title: @old_event.title) |> raw %>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -45,24 +45,26 @@
|
|||
<%= if MapSet.member?(@changes, :status) do %>
|
||||
<tr>
|
||||
<td bgcolor="#ffffff" align="center">
|
||||
<%= case @event.status do %>
|
||||
<% :confirmed -> %>
|
||||
<%= gettext "This event has been confirmed" %>
|
||||
<% :tentative -> %>
|
||||
<%= gettext "This event has yet to be confirmed: organizers will let you know if they do confirm it." %>
|
||||
<% :cancelled -> %>
|
||||
<%= gettext "This event has been cancelled by its organizers. Sorry!" %>
|
||||
<% end %>
|
||||
<b>
|
||||
<%= case @event.status do %>
|
||||
<% :confirmed -> %>
|
||||
<%= gettext "This event has been confirmed" %>
|
||||
<% :tentative -> %>
|
||||
<%= gettext "This event has yet to be confirmed: organizers will let you know if they do confirm it." %>
|
||||
<% :cancelled -> %>
|
||||
<%= gettext "This event has been cancelled by its organizers. Sorry!" %>
|
||||
<% end %>
|
||||
</b>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
<%= if MapSet.member?(@changes, :title) do %>
|
||||
<tr>
|
||||
<td bgcolor="#ffffff" align="left">
|
||||
<%= gettext "Event" %>
|
||||
<%= gettext "Event title" %>
|
||||
</td>
|
||||
<td bgcolor="#ffffff" align="left">
|
||||
<%= @event.title %>
|
||||
<b><%= @event.title %></b>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
@ -72,7 +74,7 @@
|
|||
<%= gettext "Start" %>
|
||||
</td>
|
||||
<td bgcolor="#ffffff" align="left">
|
||||
<%= datetime_to_string(@event.begins_on, @locale) %>
|
||||
<b><%= datetime_to_string(@event.begins_on, @locale) %></b>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
@ -82,7 +84,7 @@
|
|||
<%= gettext "End" %>
|
||||
</td>
|
||||
<td bgcolor="#ffffff" align="left">
|
||||
<%= datetime_to_string(@event.ends_on, @locale) %>
|
||||
<b><%= datetime_to_string(@event.ends_on, @locale) %></b>
|
||||
</td>
|
||||
</tr>
|
||||
<% end %>
|
||||
|
|
|
@ -47,8 +47,8 @@ msgid "Comments"
|
|||
msgstr "التعليقات"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "الفعالية"
|
||||
|
||||
|
@ -125,7 +125,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "تم تحديث الفعالية %{title}"
|
||||
|
||||
|
@ -792,7 +792,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -846,7 +846,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -923,12 +923,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "تعلّم المزيد عن Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -967,7 +967,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -977,25 +977,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "تم تأكيد الفعالية"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1028,7 +1027,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1391,7 +1390,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "الفعالية"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -689,7 +689,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -44,8 +44,8 @@ msgid "Comments"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
|
@ -122,7 +122,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -774,7 +774,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -822,7 +822,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -899,12 +899,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -943,7 +943,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -953,25 +953,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1004,7 +1003,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1367,7 +1366,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -663,7 +663,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -48,8 +48,8 @@ msgid "Comments"
|
|||
msgstr "Comentaris"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Activitat"
|
||||
|
||||
|
@ -132,7 +132,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "T'han denegat la participació a %{title}"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "S'ha actualitzat {%title}"
|
||||
|
||||
|
@ -783,7 +783,7 @@ msgstr "No ho facis servir més que proves, sisplau"
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -833,7 +833,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -916,12 +916,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Per aprendre més de Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -960,7 +960,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -970,25 +970,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "S'ha confirmat l'activitat"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1021,7 +1020,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1387,7 +1386,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Activitat"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -657,7 +657,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -44,8 +44,8 @@ msgid "Comments"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
|
@ -122,7 +122,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -774,7 +774,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -822,7 +822,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -899,12 +899,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -943,7 +943,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -953,25 +953,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1004,7 +1003,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1367,7 +1366,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -663,7 +663,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -49,8 +49,8 @@ msgid "Comments"
|
|||
msgstr "Kommentare"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Veranstaltung"
|
||||
|
||||
|
@ -134,7 +134,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Deine Teilnahme an der Veranstaltung %{title}wurde abgelehnt"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Veranstaltung %{title} wurde aktualisiert"
|
||||
|
||||
|
@ -790,7 +790,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -840,7 +840,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -923,12 +923,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Lerne mehr über Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -967,7 +967,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -977,25 +977,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "Veranstaltung wurde bestätigt"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1028,7 +1027,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1395,7 +1394,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Veranstaltung"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -657,7 +657,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -30,8 +30,8 @@ msgid "Comments"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
|
@ -108,7 +108,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -755,7 +755,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -801,7 +801,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -878,12 +878,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -922,7 +922,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -932,25 +932,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -983,7 +982,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1350,3 +1349,13 @@ msgstr ""
|
|||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -53,8 +53,8 @@ msgid "Comments"
|
|||
msgstr "Comments"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Event"
|
||||
|
||||
|
@ -131,7 +131,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Your participation to event %{title} has been rejected"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Event %{title} has been updated"
|
||||
|
||||
|
@ -808,7 +808,7 @@ msgstr "Please do not use it in any real way"
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -854,7 +854,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -931,12 +931,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Learn more about Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -975,7 +975,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -985,25 +985,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "Event has been confirmed"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1036,7 +1035,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1399,7 +1398,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Event"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -667,7 +667,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -664,7 +664,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -48,8 +48,8 @@ msgid "Comments"
|
|||
msgstr "Comentarios"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
|
||||
|
@ -133,7 +133,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Su participación en el evento %{title} ha sido rechazada"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "El evento %{title} ha sido actualizado"
|
||||
|
||||
|
@ -958,7 +958,7 @@ msgstr "Por favor no lo use de ninguna manera real."
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -1010,7 +1010,7 @@ msgid "Confirm new email"
|
|||
msgstr "Confirme su email"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr "Final"
|
||||
|
||||
|
@ -1107,12 +1107,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "¡Aprenda más sobre Mobilizon aquí!"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr "Ubicación"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr "Dirección física fue eliminada"
|
||||
|
||||
|
@ -1151,7 +1151,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr "¡Lo siento! No vas."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr "Inicio"
|
||||
|
||||
|
@ -1161,25 +1161,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr "Inicio% {starts_on}"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr "Ha habido cambios para% {title}, así que pensamos en avisarle."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr "Este evento ha sido cancelado por sus organizadores. ¡Lo siento!"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "El evento ha sido confirmado"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1215,7 +1214,7 @@ msgid "Visit event page"
|
|||
msgstr "Visita la página del evento"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr "Visita la página del evento actualizada"
|
||||
|
||||
|
@ -1695,7 +1694,17 @@ msgstr ""
|
|||
"¡Hola! Te acabas de registrar para unirte a este evento: «% {title}». "
|
||||
"Confirme la dirección de correo electrónico que proporcionó:"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr "Envió una solicitud para asistir a %{title}."
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Evento"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr "Ha habido cambios para% {title}, así que pensamos en avisarle."
|
||||
|
|
|
@ -679,7 +679,7 @@ msgstr ""
|
|||
"panel"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
"Debe iniciar sesión y ser administrador para acceder a las estadísticas del "
|
||||
|
|
|
@ -48,8 +48,8 @@ msgid "Comments"
|
|||
msgstr "Kommentit"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Tapahtuma"
|
||||
|
||||
|
@ -133,7 +133,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Osallistumisesi tapahtumaan %{title) on hylätty"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Tapahtumaa %{title} on päivitetty"
|
||||
|
||||
|
@ -939,7 +939,7 @@ msgstr "Älä käytä todellisiin tarkoituksiin."
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -990,7 +990,7 @@ msgid "Confirm new email"
|
|||
msgstr "Vahvista sähköpostiosoite"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr "Päättyy"
|
||||
|
||||
|
@ -1087,12 +1087,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Lue lisää Mobilizonista."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr "Sijainti"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr "Käyntiosoite poistettiin"
|
||||
|
||||
|
@ -1131,7 +1131,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr "Valitettavasti et pääse mukaan."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr "Alkaa"
|
||||
|
||||
|
@ -1141,25 +1141,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr "Alkaa %{begins_on}"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr "%{title} on joiltain osin muuttunut, ja ajattelimme ilmoittaa asiasta."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr "Valitettavasti tapahtuman järjestäjät peruivat tapahtuman."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "Tapahtuma on vahvistettu"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1194,7 +1193,7 @@ msgid "Visit event page"
|
|||
msgstr "Käy tapahtumasivulla"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr "Käy päivitetyllä tapahtumasivulla"
|
||||
|
||||
|
@ -1645,7 +1644,17 @@ msgstr ""
|
|||
"Hei! Rekisteröidyit juuri tapahtumaan ”%{title}”. Vahvista ilmoittamasi "
|
||||
"sähköpostiosoite:"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr "Lähetit pyynnön osallistua tapahtumaan %{title}."
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Tapahtuma"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr "%{title} on joiltain osin muuttunut, ja ajattelimme ilmoittaa asiasta."
|
||||
|
|
|
@ -664,7 +664,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: 2020-10-07 16:29+0200\n"
|
||||
"PO-Revision-Date: 2020-10-08 08:52+0200\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"
|
||||
|
@ -44,7 +44,7 @@ msgstr "Demander à la communauté sur Framacolibri"
|
|||
msgid "Comments"
|
||||
msgstr "Commentaires"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:62 lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Événement"
|
||||
|
||||
|
@ -104,7 +104,7 @@ msgstr "Votre participation à l'événement %{title} a été approuvée"
|
|||
msgid "Your participation to event %{title} has been rejected"
|
||||
msgstr "Votre participation à l'événement %{title} a été rejetée"
|
||||
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "L'événement %{title} a été mis à jour"
|
||||
|
||||
|
@ -639,7 +639,7 @@ msgstr "Mobilizon est en cours de développement, nous y ajouterons de nouvelles
|
|||
msgid "Please do not use it for real purposes."
|
||||
msgstr "Veuillez ne pas l'utiliser pour un cas réel."
|
||||
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131 lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 lib/web/templates/email/on_day_notification.text.eex:14
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63 lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133 lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70 lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70 lib/web/templates/email/on_day_notification.text.eex:14
|
||||
msgid "Would you wish to cancel your attendance, visit the event page through the link above and click the « Attending » button."
|
||||
msgid_plural "Would you wish to cancel your attendance to one or several events, visit the event pages through the links above and click the « Attending » button."
|
||||
msgstr[0] "Si vous avez besoin d'annuler votre participation, il suffit d'accéder à la page de l'événement à partir du lien ci-dessus et de cliquer sur le bouton « Je participe »."
|
||||
|
@ -671,7 +671,7 @@ msgstr "Un événement est à venir !"
|
|||
msgid "Confirm new email"
|
||||
msgstr "Confirmez votre adresse email"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr "Fin"
|
||||
|
||||
|
@ -727,11 +727,11 @@ msgstr "D'ici là, veuillez considérer que le logiciel n'est pas (encore) fini.
|
|||
msgid "Learn more about Mobilizon here!"
|
||||
msgstr "En apprendre plus à propos de Mobilizon ici !"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr "Localisation"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr "L'adresse physique a été enlevée"
|
||||
|
||||
|
@ -759,7 +759,7 @@ msgstr "Une personne de <b>%{instance}</b> a signalé le contenu suivant :"
|
|||
msgid "Sorry! You're not going."
|
||||
msgstr "Désolé ! Vous n'y allez pas."
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr "Début"
|
||||
|
||||
|
@ -767,19 +767,19 @@ msgstr "Début"
|
|||
msgid "Start %{begins_on}"
|
||||
msgstr "Début %{begins_on}"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:38 lib/web/templates/email/event_updated.text.eex:3
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr "Il y a eu des changements pour %{title} donc nous avons pensé que nous vous le ferions savoir."
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:54 lib/web/templates/email/event_updated.text.eex:11
|
||||
#: lib/web/templates/email/event_updated.html.eex:55 lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr "Cet événement a été annulé par ses organisateur·ices. Désolé !"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:50 lib/web/templates/email/event_updated.text.eex:7
|
||||
#: lib/web/templates/email/event_updated.html.eex:51 lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "L'événement a été confirmé"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:52 lib/web/templates/email/event_updated.text.eex:9
|
||||
#: lib/web/templates/email/event_updated.html.eex:53 lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr "Cet événement doit encore être confirmé : les organisateur·ices vous feront savoir si l'événement est confirmé."
|
||||
|
||||
|
@ -803,7 +803,7 @@ msgstr "Voir le signalement :"
|
|||
msgid "Visit event page"
|
||||
msgstr "Voir la page de l'événement"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr "Voir la page de l'événement mis à jour"
|
||||
|
||||
|
@ -1086,3 +1086,11 @@ msgstr "Salut ! Vous venez de vous enregistrer pour rejoindre cet événement
|
|||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr "Vous avez effectué une demande de participation à <b>%{title}</b>."
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Titre de l'événement"
|
||||
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr "Il y a eu des changements pour <b>%{title}</b> donc nous avons pensé que nous vous le ferions savoir."
|
||||
|
|
|
@ -670,7 +670,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr "Vous devez être connecté·e et un·e administrateur·ice pour accéder aux panneau de statistiques"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr "Vous devez être connecté·e et un·e administrateur·ice pour sauvegarder les paramètres administrateur"
|
||||
|
||||
|
|
|
@ -48,8 +48,8 @@ msgid "Comments"
|
|||
msgstr "Commenti"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
|
||||
|
@ -126,7 +126,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "L'evento %{title} è stato aggiornato"
|
||||
|
||||
|
@ -773,7 +773,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -819,7 +819,7 @@ msgid "Confirm new email"
|
|||
msgstr "Conferma il nuovo indirizzo e-mail"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr "Fine"
|
||||
|
||||
|
@ -896,12 +896,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr "Luogo"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr "L'indirizzo del luogo è stato rimosso"
|
||||
|
||||
|
@ -940,7 +940,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr "Peccato! Non ci sei andato."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr "Inizio"
|
||||
|
||||
|
@ -950,25 +950,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr "Inizio %{begins_on}"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "L'evento è stato confermato"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1002,7 +1001,7 @@ msgid "Visit event page"
|
|||
msgstr "Visualizza la pagina dell'evento"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1365,7 +1364,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Evento"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -664,7 +664,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -46,8 +46,8 @@ msgid "Comments"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "イベント"
|
||||
|
||||
|
@ -124,7 +124,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -766,7 +766,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -810,7 +810,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -887,12 +887,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -931,7 +931,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -941,25 +941,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -992,7 +991,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1355,7 +1354,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "イベント"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -651,7 +651,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -49,8 +49,8 @@ msgid "Comments"
|
|||
msgstr "Opmerkingen"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Evenement"
|
||||
|
||||
|
@ -133,7 +133,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Uw deelname aan het evenement %{title} is afgewezen"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Evenement %{title} is bijgewerkt"
|
||||
|
||||
|
@ -785,7 +785,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -835,7 +835,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -918,12 +918,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Leer meer over Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -962,7 +962,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -972,25 +972,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "Het evenement is bevestigd"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1023,7 +1022,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1390,7 +1389,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Evenement"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -657,7 +657,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -47,8 +47,8 @@ msgid "Comments"
|
|||
msgstr "Comentaris"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Eveniment"
|
||||
|
||||
|
@ -125,7 +125,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Vòstra participacion a l’eveniment %{title} es estada regetada"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "L’eveniment %{title} es estat actualizat"
|
||||
|
||||
|
@ -782,7 +782,7 @@ msgstr "Mercés de l’utilizar pas d’un biais real"
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -834,7 +834,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -918,12 +918,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Ne saber mai tocant Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr "L’adreça fisica es estada levada"
|
||||
|
||||
|
@ -962,7 +962,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -972,25 +972,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "L’eveniment es estat confirmat"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1024,7 +1023,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1392,7 +1391,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Eveniment"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -664,7 +664,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -50,8 +50,8 @@ msgid "Comments"
|
|||
msgstr "Komentarze"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Wydarzenie"
|
||||
|
||||
|
@ -135,7 +135,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Twój udział w wydarzeniu %(title} został odrzucony"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Wydarzenie %{title} zostało zaktualizowane"
|
||||
|
||||
|
@ -794,7 +794,7 @@ msgstr "Nie używaj go do żadnych rzeczywistych celów"
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -848,7 +848,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -931,12 +931,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Dowiedz się więcej o Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -975,7 +975,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -985,25 +985,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "Potwierdzono wydarzenie"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1036,7 +1035,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1403,7 +1402,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Wydarzenie"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -671,7 +671,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -44,8 +44,8 @@ msgid "Comments"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
|
@ -122,7 +122,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -769,7 +769,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -815,7 +815,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -892,12 +892,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -936,7 +936,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -946,25 +946,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -997,7 +996,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1360,7 +1359,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -657,7 +657,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -48,8 +48,8 @@ msgid "Comments"
|
|||
msgstr "Comentários"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Evento"
|
||||
|
||||
|
@ -133,7 +133,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "A sua participação no evento %{title} foi rejeitada"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Evento %{title} foi atualizado"
|
||||
|
||||
|
@ -843,7 +843,7 @@ msgstr "Por favor não utilize este serviço em nenhum caso real"
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -893,7 +893,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -976,12 +976,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Aprenda mais sobre Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1020,7 +1020,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1030,25 +1030,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr "Evento foi confirmado"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1081,7 +1080,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1482,7 +1481,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Evento"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -657,7 +657,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -49,8 +49,8 @@ msgid "Comments"
|
|||
msgstr "Комментарии"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Событие"
|
||||
|
||||
|
@ -129,7 +129,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -783,7 +783,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -831,7 +831,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -908,12 +908,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Узнать больше о Mobilizon."
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -952,7 +952,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -962,25 +962,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1013,7 +1012,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1378,7 +1377,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Событие"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -663,7 +663,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -49,8 +49,8 @@ msgid "Comments"
|
|||
msgstr "Kommentarer"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:62
|
||||
#: lib/web/templates/email/report.html.eex:72 lib/web/templates/email/report.text.eex:11
|
||||
#: lib/web/templates/email/report.html.eex:72
|
||||
#: lib/web/templates/email/report.text.eex:11
|
||||
msgid "Event"
|
||||
msgstr "Evenemang"
|
||||
|
||||
|
@ -134,7 +134,7 @@ msgid "Your participation to event %{title} has been rejected"
|
|||
msgstr "Din förfrågan om att få delta i evenemanget %{title} har fått avslag"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/email/event.ex:35
|
||||
#: lib/web/email/event.ex:36
|
||||
msgid "Event %{title} has been updated"
|
||||
msgstr "Evenemanget %{title} har uppdaterats"
|
||||
|
||||
|
@ -784,7 +784,7 @@ msgstr ""
|
|||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.html.eex:63
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:131
|
||||
#: lib/web/templates/email/anonymous_participation_confirmation.text.eex:6 lib/web/templates/email/event_updated.html.eex:133
|
||||
#: lib/web/templates/email/event_updated.text.eex:24 lib/web/templates/email/notification_each_week.html.eex:70
|
||||
#: lib/web/templates/email/notification_each_week.text.eex:14 lib/web/templates/email/on_day_notification.html.eex:70
|
||||
#: lib/web/templates/email/on_day_notification.text.eex:14
|
||||
|
@ -834,7 +834,7 @@ msgid "Confirm new email"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:82
|
||||
#: lib/web/templates/email/event_updated.html.eex:84
|
||||
msgid "End"
|
||||
msgstr ""
|
||||
|
||||
|
@ -914,12 +914,12 @@ msgid "Learn more about Mobilizon here!"
|
|||
msgstr "Läs mer om Mobilizon här!"
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:92
|
||||
#: lib/web/templates/email/event_updated.html.eex:94
|
||||
msgid "Location"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:102
|
||||
#: lib/web/templates/email/event_updated.html.eex:104
|
||||
msgid "Location address was removed"
|
||||
msgstr ""
|
||||
|
||||
|
@ -958,7 +958,7 @@ msgid "Sorry! You're not going."
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:72
|
||||
#: lib/web/templates/email/event_updated.html.eex:74
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
|
@ -968,25 +968,24 @@ msgid "Start %{begins_on}"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
#: lib/web/templates/email/event_updated.text.eex:3
|
||||
msgid "There have been changes for %{title} so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:54
|
||||
#: lib/web/templates/email/event_updated.html.eex:55
|
||||
#: lib/web/templates/email/event_updated.text.eex:11
|
||||
msgid "This event has been cancelled by its organizers. Sorry!"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:50
|
||||
#: lib/web/templates/email/event_updated.html.eex:51
|
||||
#: lib/web/templates/email/event_updated.text.eex:7
|
||||
msgid "This event has been confirmed"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:52
|
||||
#: lib/web/templates/email/event_updated.html.eex:53
|
||||
#: lib/web/templates/email/event_updated.text.eex:9
|
||||
msgid "This event has yet to be confirmed: organizers will let you know if they do confirm it."
|
||||
msgstr ""
|
||||
|
@ -1019,7 +1018,7 @@ msgid "Visit event page"
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_updated.html.eex:119
|
||||
#: lib/web/templates/email/event_updated.html.eex:121
|
||||
msgid "Visit the updated event page"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1383,7 +1382,17 @@ msgstr ""
|
|||
msgid "Hi there! You just registered to join this event: « <b>%{title}</b> ». Please confirm the e-mail address you provided:"
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#, elixir-format
|
||||
#: lib/web/templates/email/event_participation_rejected.html.eex:38
|
||||
msgid "You issued a request to attend <b>%{title}</b>."
|
||||
msgstr ""
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:64
|
||||
msgid "Event title"
|
||||
msgstr "Evenemang"
|
||||
|
||||
#, elixir-format, fuzzy
|
||||
#: lib/web/templates/email/event_updated.html.eex:38
|
||||
msgid "There have been changes for <b>%{title}</b> so we'd thought we'd let you know."
|
||||
msgstr ""
|
||||
|
|
|
@ -664,7 +664,7 @@ msgid "You need to be logged-in and an administrator to access dashboard statist
|
|||
msgstr ""
|
||||
|
||||
#, elixir-format
|
||||
#: lib/graphql/resolvers/admin.ex:242
|
||||
#: lib/graphql/resolvers/admin.ex:232
|
||||
msgid "You need to be logged-in and an administrator to save admin settings"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -837,7 +837,7 @@ defmodule Mobilizon.Web.Resolvers.EventTest do
|
|||
|
||||
assert_delivered_email(
|
||||
Email.Event.event_updated(
|
||||
user,
|
||||
user.email,
|
||||
actor,
|
||||
event,
|
||||
new_event,
|
||||
|
@ -847,7 +847,7 @@ defmodule Mobilizon.Web.Resolvers.EventTest do
|
|||
|
||||
assert_delivered_email(
|
||||
Email.Event.event_updated(
|
||||
participant_user,
|
||||
participant_user.email,
|
||||
participant_actor,
|
||||
event,
|
||||
new_event,
|
||||
|
|
Loading…
Reference in a new issue