decidim-meetings 0.27.4 → 0.28.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +32 -0
  3. data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +21 -0
  4. data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +10 -0
  5. data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
  6. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings_cell.rb +8 -18
  7. data/app/cells/decidim/meetings/dates_and_map/show.erb +25 -0
  8. data/app/cells/decidim/meetings/dates_and_map/static_map.erb +1 -0
  9. data/app/cells/decidim/meetings/dates_and_map_cell.rb +35 -0
  10. data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +32 -30
  11. data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +76 -16
  12. data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +25 -0
  13. data/app/cells/decidim/meetings/join_meeting_button/remaining_slots.erb +4 -0
  14. data/app/cells/decidim/meetings/join_meeting_button/show.erb +7 -19
  15. data/app/cells/decidim/meetings/join_meeting_button_cell.rb +3 -7
  16. data/app/cells/decidim/meetings/meeting_activity_cell.rb +1 -12
  17. data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +64 -0
  18. data/app/cells/decidim/meetings/meeting_cell.rb +2 -6
  19. data/app/cells/decidim/meetings/meeting_l/image.erb +5 -0
  20. data/app/cells/decidim/meetings/meeting_l_cell.rb +33 -0
  21. data/app/cells/decidim/meetings/meeting_month/show.erb +33 -0
  22. data/app/cells/decidim/meetings/meeting_month_cell.rb +72 -0
  23. data/app/cells/decidim/meetings/meeting_s_cell.rb +5 -37
  24. data/app/cells/decidim/meetings/meetings_map/show.erb +9 -24
  25. data/app/cells/decidim/meetings/meetings_map_cell.rb +1 -1
  26. data/app/cells/decidim/meetings/online_meeting_cell.rb +1 -0
  27. data/app/cells/decidim/meetings/online_meeting_link/show.erb +18 -41
  28. data/app/cells/decidim/meetings/public_participants_list/show.erb +4 -15
  29. data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -1
  30. data/app/commands/decidim/meetings/admin/create_meeting.rb +1 -1
  31. data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +5 -5
  32. data/app/commands/decidim/meetings/admin/publish_meeting.rb +1 -1
  33. data/app/commands/decidim/meetings/admin/unpublish_meeting.rb +1 -1
  34. data/app/commands/decidim/meetings/create_meeting.rb +14 -3
  35. data/app/commands/decidim/meetings/decline_invitation.rb +1 -1
  36. data/app/commands/decidim/meetings/join_meeting.rb +5 -5
  37. data/app/commands/decidim/meetings/update_meeting.rb +13 -3
  38. data/app/controllers/concerns/decidim/meetings/component_filterable.rb +4 -4
  39. data/app/controllers/decidim/meetings/admin/agenda_controller.rb +6 -6
  40. data/app/controllers/decidim/meetings/admin/invites_controller.rb +3 -3
  41. data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -4
  42. data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +3 -3
  43. data/app/controllers/decidim/meetings/admin/meetings_controller.rb +7 -7
  44. data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +4 -4
  45. data/app/controllers/decidim/meetings/admin/registrations_controller.rb +6 -6
  46. data/app/controllers/decidim/meetings/application_controller.rb +11 -0
  47. data/app/controllers/decidim/meetings/calendars_controller.rb +0 -1
  48. data/app/controllers/decidim/meetings/directory/application_controller.rb +12 -0
  49. data/app/controllers/decidim/meetings/directory/meetings_controller.rb +5 -30
  50. data/app/controllers/decidim/meetings/live_events_controller.rb +1 -0
  51. data/app/controllers/decidim/meetings/meeting_closes_controller.rb +2 -3
  52. data/app/controllers/decidim/meetings/meetings_controller.rb +75 -7
  53. data/app/controllers/decidim/meetings/polls/answers_controller.rb +2 -2
  54. data/app/controllers/decidim/meetings/polls/questions_controller.rb +1 -1
  55. data/app/controllers/decidim/meetings/registrations_controller.rb +5 -5
  56. data/app/events/decidim/meetings/close_meeting_event.rb +1 -1
  57. data/app/events/decidim/meetings/meeting_event.rb +1 -1
  58. data/app/events/decidim/meetings/meeting_registration_notification_event.rb +3 -3
  59. data/app/events/decidim/meetings/meeting_registrations_enabled_event.rb +1 -1
  60. data/app/events/decidim/meetings/meeting_registrations_over_percentage_event.rb +1 -1
  61. data/app/events/decidim/meetings/registration_code_validated_event.rb +1 -1
  62. data/app/forms/decidim/meetings/admin/meeting_form.rb +5 -1
  63. data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +2 -2
  64. data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
  65. data/app/forms/decidim/meetings/base_meeting_form.rb +1 -1
  66. data/app/forms/decidim/meetings/meeting_form.rb +3 -3
  67. data/app/helpers/decidim/meetings/admin/application_helper.rb +1 -0
  68. data/app/helpers/decidim/meetings/application_helper.rb +18 -25
  69. data/app/helpers/decidim/meetings/directory/application_helper.rb +10 -58
  70. data/app/helpers/decidim/meetings/map_helper.rb +2 -9
  71. data/app/helpers/decidim/meetings/meetings_helper.rb +6 -5
  72. data/app/jobs/decidim/meetings/hide_all_created_by_author_job.rb +13 -0
  73. data/app/mailers/decidim/meetings/admin/invite_join_meeting_mailer.rb +1 -1
  74. data/app/mailers/decidim/meetings/registration_mailer.rb +1 -1
  75. data/app/models/decidim/meetings/meeting.rb +11 -32
  76. data/app/models/decidim/meetings/question.rb +1 -1
  77. data/app/packs/entrypoints/decidim_meetings.js +3 -0
  78. data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_attended_meetings.svg +42 -1
  79. data/app/packs/src/decidim/meetings/admin/agendas.js +3 -4
  80. data/app/packs/src/decidim/meetings/admin/registrations_form.js +12 -4
  81. data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
  82. data/app/packs/src/decidim/meetings/poll.component.js +1 -1
  83. data/app/packs/stylesheets/decidim/meetings/_calendar.scss +47 -0
  84. data/app/packs/stylesheets/decidim/meetings/_item.scss +177 -0
  85. data/app/packs/stylesheets/decidim/meetings/_list.scss +58 -0
  86. data/app/packs/stylesheets/decidim/meetings/_live_event.scss +128 -0
  87. data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -0
  88. data/app/permissions/decidim/meetings/permissions.rb +15 -2
  89. data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +2 -2
  90. data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +2 -2
  91. data/app/presenters/decidim/meetings/admin_log/questionnaire_presenter.rb +2 -2
  92. data/app/presenters/decidim/meetings/meeting_presenter.rb +8 -2
  93. data/app/services/decidim/meetings/calendar/component_calendar.rb +1 -1
  94. data/app/services/decidim/meetings/calendar/meeting_to_event.rb +6 -1
  95. data/app/services/decidim/meetings/close_meeting_reminder_generator.rb +2 -2
  96. data/app/services/decidim/meetings/meeting_iframe_embedder.rb +1 -1
  97. data/app/views/decidim/meetings/_calendar_modal.html.erb +19 -21
  98. data/app/views/decidim/meetings/admin/agenda/_agenda_item.html.erb +12 -12
  99. data/app/views/decidim/meetings/admin/agenda/_agenda_item_child.html.erb +8 -8
  100. data/app/views/decidim/meetings/admin/agenda/_agenda_item_child_template.html.erb +1 -1
  101. data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +3 -3
  102. data/app/views/decidim/meetings/admin/agenda/_form.html.erb +54 -50
  103. data/app/views/decidim/meetings/admin/agenda/edit.html.erb +18 -6
  104. data/app/views/decidim/meetings/admin/agenda/new.html.erb +17 -5
  105. data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +11 -2
  106. data/app/views/decidim/meetings/admin/invites/_form.html.erb +38 -28
  107. data/app/views/decidim/meetings/admin/invites/index.html.erb +77 -81
  108. data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +26 -28
  109. data/app/views/decidim/meetings/admin/meeting_closes/edit.html.erb +17 -5
  110. data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +17 -6
  111. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +76 -83
  112. data/app/views/decidim/meetings/admin/meetings/_service.html.erb +14 -10
  113. data/app/views/decidim/meetings/admin/meetings/_services.html.erb +9 -5
  114. data/app/views/decidim/meetings/admin/meetings/edit.html.erb +17 -7
  115. data/app/views/decidim/meetings/admin/meetings/index.html.erb +133 -129
  116. data/app/views/decidim/meetings/admin/meetings/new.html.erb +16 -6
  117. data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +2 -1
  118. data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +1 -1
  119. data/app/views/decidim/meetings/admin/poll/_form.html.erb +17 -32
  120. data/app/views/decidim/meetings/admin/poll/_question.html.erb +81 -75
  121. data/app/views/decidim/meetings/admin/poll/edit.html.erb +28 -8
  122. data/app/views/decidim/meetings/admin/registrations/_form.html.erb +32 -55
  123. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +59 -26
  124. data/app/views/decidim/meetings/directory/meetings/index.html.erb +15 -20
  125. data/app/views/decidim/meetings/directory/meetings/index.js.erb +1 -23
  126. data/app/views/decidim/meetings/layouts/_aside_block.html.erb +8 -0
  127. data/app/views/decidim/meetings/layouts/live_event.html.erb +20 -19
  128. data/app/views/decidim/meetings/live_events/show.html.erb +4 -5
  129. data/app/views/decidim/meetings/meeting_closes/_form.html.erb +3 -10
  130. data/app/views/decidim/meetings/meeting_closes/edit.html.erb +17 -21
  131. data/app/views/decidim/meetings/meetings/_actions.html.erb +6 -0
  132. data/app/views/decidim/meetings/meetings/_add_to_calendar_modal.html.erb +17 -0
  133. data/app/views/decidim/meetings/meetings/_form.html.erb +26 -34
  134. data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +3 -22
  135. data/app/views/decidim/meetings/meetings/_meeting.html.erb +74 -0
  136. data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +28 -26
  137. data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +98 -0
  138. data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +23 -36
  139. data/app/views/decidim/meetings/meetings/edit.html.erb +17 -21
  140. data/app/views/decidim/meetings/meetings/index.html.erb +15 -33
  141. data/app/views/decidim/meetings/meetings/index.js.erb +1 -23
  142. data/app/views/decidim/meetings/meetings/new.html.erb +17 -21
  143. data/app/views/decidim/meetings/meetings/show.html.erb +8 -164
  144. data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +2 -2
  145. data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +6 -6
  146. data/app/views/decidim/meetings/polls/answers/create.js.erb +1 -1
  147. data/app/views/decidim/meetings/polls/questions/_index.html.erb +1 -1
  148. data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +5 -5
  149. data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +7 -9
  150. data/app/views/decidim/meetings/polls/questions/_question.html.erb +3 -3
  151. data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +1 -1
  152. data/app/views/decidim/meetings/shared/_filters.html.erb +20 -0
  153. data/app/views/decidim/meetings/shared/_index.html.erb +24 -0
  154. data/app/views/decidim/meetings/shared/_index.js.erb +16 -0
  155. data/app/views/decidim/meetings/shared/_meetings.html.erb +33 -0
  156. data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +18 -0
  157. data/app/views/decidim/meetings/versions/show.html.erb +13 -3
  158. data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +15 -14
  159. data/config/assets.rb +0 -2
  160. data/config/environment.rb +3 -0
  161. data/config/locales/ar.yml +3 -97
  162. data/config/locales/bg.yml +0 -7
  163. data/config/locales/ca.yml +49 -70
  164. data/config/locales/cs.yml +52 -73
  165. data/config/locales/de.yml +52 -70
  166. data/config/locales/el.yml +45 -54
  167. data/config/locales/en.yml +54 -75
  168. data/config/locales/es-MX.yml +50 -68
  169. data/config/locales/es-PY.yml +51 -69
  170. data/config/locales/es.yml +48 -69
  171. data/config/locales/eu.yml +131 -149
  172. data/config/locales/fi-plain.yml +49 -67
  173. data/config/locales/fi.yml +64 -82
  174. data/config/locales/fr-CA.yml +45 -66
  175. data/config/locales/fr.yml +49 -70
  176. data/config/locales/ga-IE.yml +0 -16
  177. data/config/locales/gl.yml +1 -66
  178. data/config/locales/hu.yml +3 -89
  179. data/config/locales/id-ID.yml +1 -63
  180. data/config/locales/is-IS.yml +1 -21
  181. data/config/locales/it.yml +1 -85
  182. data/config/locales/ja.yml +43 -67
  183. data/config/locales/lb.yml +1 -66
  184. data/config/locales/lt.yml +59 -66
  185. data/config/locales/lv.yml +1 -64
  186. data/config/locales/nl.yml +1 -95
  187. data/config/locales/no.yml +1 -80
  188. data/config/locales/pl.yml +10 -83
  189. data/config/locales/pt-BR.yml +1 -86
  190. data/config/locales/pt.yml +1 -85
  191. data/config/locales/ro-RO.yml +8 -82
  192. data/config/locales/ru.yml +1 -62
  193. data/config/locales/sk.yml +1 -64
  194. data/config/locales/sq-AL.yml +1 -0
  195. data/config/locales/sr-CS.yml +0 -6
  196. data/config/locales/sv.yml +7 -88
  197. data/config/locales/th-TH.yml +1 -0
  198. data/config/locales/tr-TR.yml +2 -74
  199. data/config/locales/uk.yml +1 -55
  200. data/config/locales/zh-CN.yml +1 -70
  201. data/config/locales/zh-TW.yml +21 -54
  202. data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
  203. data/db/migrate/20230427105701_change_types_and_registration_types_on_meetings.rb +49 -0
  204. data/lib/decidim/meetings/admin_engine.rb +2 -2
  205. data/lib/decidim/meetings/component.rb +5 -217
  206. data/lib/decidim/meetings/content_blocks/registry_manager.rb +17 -0
  207. data/lib/decidim/meetings/directory_engine.rb +4 -6
  208. data/lib/decidim/meetings/engine.rb +65 -29
  209. data/lib/decidim/meetings/meeting_serializer.rb +5 -5
  210. data/lib/decidim/meetings/seeds.rb +188 -0
  211. data/lib/decidim/meetings/test/factories.rb +126 -18
  212. data/lib/decidim/meetings/test/notifications_handling.rb +3 -3
  213. data/lib/decidim/meetings/test/translated_event.rb +1 -1
  214. data/lib/decidim/meetings/user_answers_serializer.rb +1 -1
  215. data/lib/decidim/meetings/version.rb +1 -1
  216. metadata +60 -55
  217. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/elements.erb +0 -16
  218. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/heading.erb +0 -1
  219. data/app/cells/decidim/meetings/content_blocks/upcoming_meetings/show.erb +0 -26
  220. data/app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb +0 -55
  221. data/app/cells/decidim/meetings/join_meeting_button/registration_confirm.erb +0 -31
  222. data/app/cells/decidim/meetings/meeting_highlighted_list_item/show.erb +0 -21
  223. data/app/cells/decidim/meetings/meeting_highlighted_list_item_cell.rb +0 -10
  224. data/app/cells/decidim/meetings/meeting_list_item/show.erb +0 -14
  225. data/app/cells/decidim/meetings/meeting_list_item_cell.rb +0 -44
  226. data/app/cells/decidim/meetings/meeting_m/address.erb +0 -5
  227. data/app/cells/decidim/meetings/meeting_m/data.erb +0 -2
  228. data/app/cells/decidim/meetings/meeting_m/date.erb +0 -8
  229. data/app/cells/decidim/meetings/meeting_m/footer.erb +0 -9
  230. data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +0 -17
  231. data/app/cells/decidim/meetings/meeting_m/single_date.erb +0 -9
  232. data/app/cells/decidim/meetings/meeting_m/tags.erb +0 -1
  233. data/app/cells/decidim/meetings/meeting_m_cell.rb +0 -121
  234. data/app/cells/decidim/meetings/meeting_s/show.erb +0 -27
  235. data/app/controllers/concerns/decidim/meetings/filterable.rb +0 -27
  236. data/app/controllers/decidim/meetings/widgets_controller.rb +0 -20
  237. data/app/packs/stylesheets/decidim/meetings/_header.scss +0 -52
  238. data/app/packs/stylesheets/decidim/meetings/_main.scss +0 -178
  239. data/app/packs/stylesheets/decidim/meetings/_meetings.scss +0 -2
  240. data/app/queries/decidim/meetings/admin/invites.rb +0 -60
  241. data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +0 -1
  242. data/app/views/decidim/meetings/directory/meetings/_filters.html.erb +0 -34
  243. data/app/views/decidim/meetings/directory/meetings/_meetings.html.erb +0 -26
  244. data/app/views/decidim/meetings/meeting_closes/proposals_picker.html.erb +0 -1
  245. data/app/views/decidim/meetings/meetings/_calendar_modal.html.erb +0 -26
  246. data/app/views/decidim/meetings/meetings/_filters.html.erb +0 -40
  247. data/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +0 -18
  248. data/app/views/decidim/meetings/meetings/_meetings.html.erb +0 -48
  249. data/app/views/decidim/meetings/versions/index.html.erb +0 -8
  250. data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +0 -4
  251. data/lib/decidim/meetings/seeds/city.jpeg +0 -0
@@ -21,7 +21,9 @@ en:
21
21
  description: Description
22
22
  end_time: End time
23
23
  id: ID
24
+ iframe_access_level: Iframe access level
24
25
  iframe_embed_type: Iframe embed type
26
+ iframe_embed_type_html: Only a few services allow the "Embed in meeting page" or "Open in live event page". Note that with the "Embed in the meeting page" option on mobiles, as the screen inherits different dimensions, it will actually work as an "Open in live event page".
25
27
  location: Location
26
28
  location_hints: Location hints
27
29
  online_meeting_url: Online meeting URL
@@ -56,18 +58,18 @@ en:
56
58
  meeting:
57
59
  attributes:
58
60
  iframe_embed_type:
59
- not_embeddable: This URL can't be embedded in meeting or live event page
61
+ not_embeddable: This URL cannot be embedded in meeting or live event page.
60
62
  online_meeting_url:
61
63
  url_format: Must be valid URL
62
64
  meeting_agenda:
63
65
  attributes:
64
66
  base:
65
- too_many_minutes: The duration of the items exceed the meeting duration by %{count} minutes
66
- too_many_minutes_child: The duration of the item childs exceed the agenda item "%{parent_title}" parent duration by %{count} minutes
67
+ too_many_minutes: The duration of the items exceed the meeting duration by %{count} minutes.
68
+ too_many_minutes_child: The duration of the item childs exceed the agenda item "%{parent_title}" parent duration by %{count} minutes.
67
69
  meeting_registration_invite:
68
70
  attributes:
69
71
  email:
70
- already_invited: This email account has already been invited
72
+ already_invited: This email account has already been invited.
71
73
  models:
72
74
  decidim/meetings/close_meeting_event: Meeting closed
73
75
  decidim/meetings/create_meeting_event: Meeting
@@ -122,7 +124,6 @@ en:
122
124
  success: Meeting successfully duplicated.
123
125
  new:
124
126
  copy: Copy
125
- select: Select which data you would like to duplicate
126
127
  title: Duplicate meeting
127
128
  components:
128
129
  meetings:
@@ -197,7 +198,7 @@ en:
197
198
  notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting will start in less than 48h.
198
199
  forms:
199
200
  meetings:
200
- attendees_count_help_text: Don't forget to include the total number of attendees at your meeting, whether in person, online or hybrid.
201
+ attendees_count_help_text: Do not forget to include the total number of attendees at your meeting, whether in person, online or hybrid.
201
202
  gamification:
202
203
  badges:
203
204
  attended_meetings:
@@ -208,8 +209,8 @@ en:
208
209
  description_own: You have attended %{score} meetings.
209
210
  name: Attended meetings
210
211
  next_level_in: Attend %{score} more meetings to reach the next level!
211
- unearned_another: This participant hasn't attended any meeting yet.
212
- unearned_own: You haven't attended any meeting yet.
212
+ unearned_another: This participant has not attended any meeting yet.
213
+ unearned_own: You have not attended any meeting yet.
213
214
  meetings:
214
215
  actions:
215
216
  agenda: Agenda
@@ -224,7 +225,7 @@ en:
224
225
  one: 'The meeting cannot be destroyed because it has %{count} proposal associated to it:'
225
226
  other: 'The meeting cannot be destroyed because it has %{count} proposals associated to it:'
226
227
  manage_poll: Manage poll
227
- new: New meeting
228
+ new_meeting: New meeting
228
229
  preview: Preview
229
230
  registrations: Registrations
230
231
  title: Actions
@@ -243,8 +244,8 @@ en:
243
244
  remove: Remove
244
245
  up: Up
245
246
  create:
246
- invalid: There was a problem creating this agenda
247
- success: Agenda successfully created
247
+ invalid: There was a problem creating this agenda.
248
+ success: Agenda successfully created.
248
249
  edit:
249
250
  title: Edit agenda
250
251
  update: Update
@@ -257,8 +258,8 @@ en:
257
258
  create: Create
258
259
  title: New agenda
259
260
  update:
260
- invalid: There was a problem updating this agenda
261
- success: Agenda successfully updated
261
+ invalid: There was a problem updating this agenda.
262
+ success: Agenda successfully updated.
262
263
  exports:
263
264
  answers: Answers
264
265
  meeting_comments: Comments
@@ -286,10 +287,9 @@ en:
286
287
  all: All
287
288
  rejected: Rejected
288
289
  sent: Sent
289
- filter_by: Filter by
290
290
  invite_attendee: Invite attendee
291
291
  invites: Invites
292
- registrations_disabled: You can't invite an attendee because the registrations are disabled.
292
+ registrations_disabled: You cannot invite an attendee because the registrations are disabled.
293
293
  search: Search
294
294
  meeting_closes:
295
295
  edit:
@@ -297,23 +297,24 @@ en:
297
297
  title: Close meeting
298
298
  meetings:
299
299
  close:
300
- invalid: There was a problem closing this meeting
301
- success: Meeting successfully closed
300
+ invalid: There was a problem closing this meeting.
301
+ success: Meeting successfully closed.
302
302
  create:
303
- invalid: There was a problem creating this meeting
303
+ invalid: There was a problem creating this meeting.
304
304
  success: Meeting successfully created. Notice this is unpublished yet, you need to manually publish it.
305
305
  destroy:
306
306
  invalid:
307
307
  proposals_count:
308
- one: The meeting cannot be destroyed because it has %{count} proposal associated to it
309
- other: The meeting cannot be destroyed because it has %{count} proposals associated to it
308
+ one: The meeting cannot be destroyed because it has %{count} proposal associated to it.
309
+ other: The meeting cannot be destroyed because it has %{count} proposals associated to it.
310
310
  success: Meeting successfully deleted
311
311
  edit:
312
312
  title: Edit meeting
313
313
  update: Update
314
314
  form:
315
315
  address_help: 'Address: used by Geocoder to find the location'
316
- disclaimer: 'Disclaimer: By using an external registration system, you''re aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
316
+ disclaimer: 'Disclaimer: By using an external registration system, you are aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
317
+ iframe_embed_type_html: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
317
318
  location_help: 'Location: message directed to the users implying the spot to meet at'
318
319
  location_hints_help: 'Location hints: additional info. Example: the floor of the building if it is an in-person meeting, or the meeting password if it is an online meeting with restricted access.'
319
320
  online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
@@ -321,15 +322,14 @@ en:
321
322
  select_a_meeting_type: Please select a meeting type
322
323
  select_a_registration_type: Please select a registration type
323
324
  select_an_iframe_access_level: Please select an iframe access level
324
- show_embedded_iframe_help: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
325
325
  index:
326
326
  title: Meetings
327
327
  new:
328
328
  create: Create
329
329
  title: Create meeting
330
330
  publish:
331
- invalid: There was a problem publishing this meeting
332
- success: Meeting successfully published
331
+ invalid: There was a problem publishing this meeting.
332
+ success: Meeting successfully published.
333
333
  service:
334
334
  description: Description
335
335
  down: Down
@@ -341,20 +341,17 @@ en:
341
341
  add_service: Add service
342
342
  services: Services
343
343
  unpublish:
344
- invalid: There was a problem unpublishing this meeting
345
- success: Meeting successfully unpublished
344
+ invalid: There was a problem unpublishing this meeting.
345
+ success: Meeting successfully unpublished.
346
346
  update:
347
- invalid: There was a problem updating this meeting
348
- success: Meeting successfully updated
347
+ invalid: There was a problem updating this meeting.
348
+ success: Meeting successfully updated.
349
349
  meetings_poll:
350
350
  form:
351
351
  title: Edit poll questionnaire for %{questionnaire_for}
352
352
  update:
353
- invalid: There was a problem updating this meeting poll
354
- success: Meeting poll successfully updated
355
- models:
356
- meeting:
357
- name: Meeting
353
+ invalid: There was a problem updating this meeting poll.
354
+ success: Meeting poll successfully updated.
358
355
  registrations:
359
356
  edit:
360
357
  save: Save
@@ -369,7 +366,7 @@ en:
369
366
  registrations_count:
370
367
  one: There has been %{count} registration.
371
368
  other: There has been %{count} registrations.
372
- reserved_slots_help: Leave it to 0 if you don't have reserved slots
369
+ reserved_slots_help: Leave it to 0 if you do not have reserved slots.
373
370
  reserved_slots_less_than: Must be less than or equal to %{count}
374
371
  title: Registrations
375
372
  update:
@@ -399,16 +396,16 @@ en:
399
396
  all: All
400
397
  filter_meeting_space_values:
401
398
  all: All
402
- filter_scope_values:
403
- all: All
399
+ calendar:
400
+ meeting_to_event:
401
+ read_more: Read more about this meeting
404
402
  calendar_modal:
405
403
  calendar_url: Calendar URL
406
- close_window: Close window
407
404
  copy_calendar_url: Copy
408
405
  copy_calendar_url_clarification: Copy calendar URL to clipboard
409
406
  copy_calendar_url_copied: Copied!
410
407
  copy_calendar_url_description: You can see all the published meetings in your calendar application or provider. Copy and paste this URL in your calendar using the "Add new calendar from an URL" option.
411
- copy_calendar_url_explanation: Please note that you're exporting a selection of meetings, as there are active filters. If you wish to export them all, reset all filters first.
408
+ copy_calendar_url_explanation: Please note that you are exporting a selection of meetings, as there are active filters. If you wish to export them all, reset all filters first.
412
409
  copy_calendar_url_message: The URL was successfully copied to clipboard.
413
410
  export_calendar: Export calendar
414
411
  close_meeting_reminder_mailer:
@@ -421,8 +418,6 @@ en:
421
418
  content_blocks:
422
419
  upcoming_meetings:
423
420
  name: Upcoming meetings
424
- upcoming_meetings: Upcoming meetings
425
- view_all_meetings: View all
426
421
  directory:
427
422
  meetings:
428
423
  index:
@@ -438,8 +433,8 @@ en:
438
433
  open_in_live_event_page: Open in live event page (with optional polls)
439
434
  open_in_new_tab: Open URL in a new tab
440
435
  last_activity:
441
- meeting_updated_at_html: "<span>Meeting updated at %{link}</span>"
442
- new_meeting_at_html: "<span>New meeting at %{link}</span>"
436
+ meeting_updated: 'Meeting updated:'
437
+ new_meeting: 'New meeting:'
443
438
  layouts:
444
439
  live_event:
445
440
  administrate: Administrate
@@ -453,7 +448,7 @@ en:
453
448
  confirmation:
454
449
  subject: Your meeting's registration has been confirmed
455
450
  meeting:
456
- not_allowed: You are not allowed to view this meeting
451
+ not_allowed: You are not allowed to view this meeting.
457
452
  meeting_closes:
458
453
  edit:
459
454
  back: Back
@@ -463,7 +458,6 @@ en:
463
458
  calendar_modal:
464
459
  add_to_calendar: Add to calendar
465
460
  apple: Add to Apple calendar
466
- close_window: Close window
467
461
  full_details_html: For full details go to %{link}
468
462
  google: Add to Google calendar
469
463
  outlook: Add to Outlook calendar
@@ -493,8 +487,7 @@ en:
493
487
  all: All
494
488
  official: Official
495
489
  participants: Participants
496
- user_groups: Groups
497
- scope: Scope
490
+ user_group: Groups
498
491
  search: Search
499
492
  type: Type
500
493
  type_values:
@@ -502,16 +495,12 @@ en:
502
495
  hybrid: Hybrid
503
496
  in_person: In-person
504
497
  online: Online
505
- filters_small_view:
506
- close_modal: Close modal
507
- filter: Filter
508
- filter_by: Filter by
509
- unfold: Unfold
510
498
  form:
511
499
  address_help: 'Address: used by Geocoder to find the location'
512
500
  available_slots_help: Leave it to 0 if you have unlimited slots available
513
501
  create_as: Create meeting as
514
- disclaimer: 'Disclaimer: By using an external registration system, you''re aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
502
+ disclaimer: 'Disclaimer: By using an external registration system, you are aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
503
+ iframe_embed_type_html: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
515
504
  location_help: 'Location: message directed to the users implying the spot to meet at'
516
505
  location_hints_help: 'Location hints: additional info. Example: the floor of the building if it is an in-person meeting, or the meeting password if it is an online meeting with restricted access.'
517
506
  online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
@@ -520,17 +509,19 @@ en:
520
509
  select_a_meeting_type: Please select a meeting type
521
510
  select_a_registration_type: Please select a registration type
522
511
  select_an_iframe_access_level: Please select an iframe access level
523
- show_embedded_iframe_help: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
524
512
  index:
525
513
  click_here: See all meetings
526
514
  new_meeting: New meeting
527
515
  see_all: See all meetings
528
516
  see_all_withdrawn: See all withdrawn meetings
529
517
  text_banner: You are viewing the list of meetings withdrawn by their authors. %{go_back_link}.
530
- meeting_minutes:
531
- related_information: Related Information
518
+ meeting:
519
+ close_meeting: Close meeting
520
+ edit_close_meeting: Edit meeting report
521
+ edit_meeting: Edit meeting
522
+ join_meeting: Join meeting
532
523
  meetings:
533
- no_meetings_warning: No meetings match your search criteria or there isn't any meeting scheduled.
524
+ no_meetings_warning: No meetings match your search criteria or there is not any meeting scheduled.
534
525
  upcoming_meetings_warning: Currently, there are no scheduled meetings, but here you can find all the past meetings listed.
535
526
  new:
536
527
  back: Back
@@ -541,14 +532,8 @@ en:
541
532
  confirm: Confirm
542
533
  show:
543
534
  attendees: Attendees count
544
- back: Back to list
545
- close_meeting: Close meeting
546
535
  contributions: Contributions count
547
- date: Date
548
- edit_close_meeting: Edit meeting report
549
- edit_meeting: Edit meeting
550
- going: You have signed up for this meeting
551
- join: Join meeting
536
+ join: Register
552
537
  leave: Cancel your registration
553
538
  leave_confirmation: Are you sure you want to cancel your registration for this meeting?
554
539
  link_available_soon: Link available soon
@@ -565,7 +550,6 @@ en:
565
550
  remaining_slots:
566
551
  one: "%{count} slot remaining"
567
552
  other: "%{count} slots remaining"
568
- view: View
569
553
  visit_finished: View past meeting
570
554
  withdraw_btn_hint: You can withdraw your meeting if you change your mind. The meeting is not deleted, it will appear in the list of withdrawn meetings.
571
555
  withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
@@ -573,8 +557,6 @@ en:
573
557
  update:
574
558
  invalid: There was a problem updating the meeting.
575
559
  success: You have updated the meeting successfully.
576
- meetings_map:
577
- view_meeting: View meeting
578
560
  models:
579
561
  invite:
580
562
  fields:
@@ -616,7 +598,8 @@ en:
616
598
  question_replied: Question replied
617
599
  reply_question: Reply question
618
600
  public_participants_list:
619
- attending_participants: Attending participants
601
+ attending_organizations: Organizations
602
+ attending_participants: Participants
620
603
  hidden_participants_count:
621
604
  one: and %{count} more person
622
605
  other: and %{count} more people
@@ -633,7 +616,7 @@ en:
633
616
  registrations:
634
617
  create:
635
618
  invalid: There was a problem joining this meeting.
636
- success: You have joined the meeting successfully. Because you have registered for this meeting, you'll be notified if there are updates on it.
619
+ success: You have joined the meeting successfully. Because you have registered for this meeting, you will be notified if there are updates on it.
637
620
  decline_invitation:
638
621
  invalid: There was a problem declining the invitation.
639
622
  success: You have declined the invitation successfully.
@@ -648,11 +631,9 @@ en:
648
631
  private_meeting: Private meeting
649
632
  transparent: Transparent
650
633
  withdraw: Withdrawn
651
- versions:
652
- back_to_resource: Go back to meeting
653
634
  withdraw:
654
- error: An error ocurred while withdrawing the meeting
655
- success: The meeting has been withdrawn successfully
635
+ error: An error ocurred while withdrawing the meeting.
636
+ success: The meeting has been withdrawn successfully.
656
637
  metrics:
657
638
  meetings:
658
639
  description: Number of meetings created
@@ -661,10 +642,8 @@ en:
661
642
  participatory_spaces:
662
643
  highlighted_meetings:
663
644
  past_meetings: Past meetings
664
- see_all: See all meetings (%{count})
645
+ see_all: See all meetings
665
646
  upcoming_meetings: Upcoming meetings
666
- upcoming_meeting_for_card:
667
- upcoming_meeting: Upcoming meeting
668
647
  resource_links:
669
648
  meetings_through_proposals:
670
649
  meeting_result: 'Related results:'