Improve event update notification email

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-10-08 08:53:07 +02:00
parent fbb1b2d607
commit 9f9f58ce7d
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
39 changed files with 468 additions and 296 deletions

View File

@ -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 %>

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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."

View File

@ -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 "

View File

@ -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."

View File

@ -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 ""

View File

@ -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