decidim-meetings 0.27.8 → 0.28.0.rc4

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 -13
  5. data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +2 -2
  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 +6 -4
  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 +11 -59
  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 -28
  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 -12
  89. data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +2 -2
  90. data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +6 -2
  91. data/app/presenters/decidim/meetings/admin_log/questionnaire_presenter.rb +2 -2
  92. data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
  93. data/app/presenters/decidim/meetings/log/resource_presenter.rb +18 -0
  94. data/app/presenters/decidim/meetings/meeting_presenter.rb +8 -2
  95. data/app/services/decidim/meetings/calendar/component_calendar.rb +1 -1
  96. data/app/services/decidim/meetings/close_meeting_reminder_generator.rb +7 -13
  97. data/app/services/decidim/meetings/meeting_iframe_embedder.rb +1 -1
  98. data/app/views/decidim/meetings/_calendar_modal.html.erb +19 -21
  99. data/app/views/decidim/meetings/admin/agenda/_agenda_item.html.erb +12 -12
  100. data/app/views/decidim/meetings/admin/agenda/_agenda_item_child.html.erb +8 -8
  101. data/app/views/decidim/meetings/admin/agenda/_agenda_item_child_template.html.erb +1 -1
  102. data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +3 -3
  103. data/app/views/decidim/meetings/admin/agenda/_form.html.erb +54 -50
  104. data/app/views/decidim/meetings/admin/agenda/edit.html.erb +18 -6
  105. data/app/views/decidim/meetings/admin/agenda/new.html.erb +17 -5
  106. data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +11 -2
  107. data/app/views/decidim/meetings/admin/invites/_form.html.erb +38 -28
  108. data/app/views/decidim/meetings/admin/invites/index.html.erb +77 -81
  109. data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +26 -28
  110. data/app/views/decidim/meetings/admin/meeting_closes/edit.html.erb +17 -5
  111. data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +17 -6
  112. data/app/views/decidim/meetings/admin/meetings/_form.html.erb +76 -83
  113. data/app/views/decidim/meetings/admin/meetings/_service.html.erb +14 -10
  114. data/app/views/decidim/meetings/admin/meetings/_services.html.erb +9 -5
  115. data/app/views/decidim/meetings/admin/meetings/edit.html.erb +17 -7
  116. data/app/views/decidim/meetings/admin/meetings/index.html.erb +133 -129
  117. data/app/views/decidim/meetings/admin/meetings/new.html.erb +16 -6
  118. data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +1 -1
  119. data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +1 -1
  120. data/app/views/decidim/meetings/admin/poll/_form.html.erb +17 -32
  121. data/app/views/decidim/meetings/admin/poll/_question.html.erb +81 -75
  122. data/app/views/decidim/meetings/admin/poll/edit.html.erb +28 -8
  123. data/app/views/decidim/meetings/admin/registrations/_form.html.erb +32 -55
  124. data/app/views/decidim/meetings/admin/registrations/edit.html.erb +59 -26
  125. data/app/views/decidim/meetings/directory/meetings/index.html.erb +15 -20
  126. data/app/views/decidim/meetings/directory/meetings/index.js.erb +1 -23
  127. data/app/views/decidim/meetings/layouts/_aside_block.html.erb +8 -0
  128. data/app/views/decidim/meetings/layouts/live_event.html.erb +20 -19
  129. data/app/views/decidim/meetings/live_events/show.html.erb +4 -5
  130. data/app/views/decidim/meetings/meeting_closes/_form.html.erb +3 -10
  131. data/app/views/decidim/meetings/meeting_closes/edit.html.erb +17 -21
  132. data/app/views/decidim/meetings/meetings/_actions.html.erb +6 -0
  133. data/app/views/decidim/meetings/meetings/_add_to_calendar_modal.html.erb +17 -0
  134. data/app/views/decidim/meetings/meetings/_form.html.erb +26 -34
  135. data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +3 -22
  136. data/app/views/decidim/meetings/meetings/_meeting.html.erb +74 -0
  137. data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +28 -26
  138. data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +98 -0
  139. data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +23 -36
  140. data/app/views/decidim/meetings/meetings/edit.html.erb +17 -21
  141. data/app/views/decidim/meetings/meetings/index.html.erb +15 -33
  142. data/app/views/decidim/meetings/meetings/index.js.erb +1 -23
  143. data/app/views/decidim/meetings/meetings/new.html.erb +17 -21
  144. data/app/views/decidim/meetings/meetings/show.html.erb +8 -167
  145. data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +9 -13
  146. data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +4 -4
  147. data/app/views/decidim/meetings/polls/answers/create.js.erb +1 -1
  148. data/app/views/decidim/meetings/polls/questions/_index.html.erb +1 -1
  149. data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +5 -5
  150. data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +9 -11
  151. data/app/views/decidim/meetings/polls/questions/_question.html.erb +3 -3
  152. data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +1 -1
  153. data/app/views/decidim/meetings/shared/_filters.html.erb +20 -0
  154. data/app/views/decidim/meetings/shared/_index.html.erb +24 -0
  155. data/app/views/decidim/meetings/shared/_index.js.erb +16 -0
  156. data/app/views/decidim/meetings/shared/_meetings.html.erb +33 -0
  157. data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +18 -0
  158. data/app/views/decidim/meetings/versions/show.html.erb +14 -4
  159. data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +13 -15
  160. data/config/assets.rb +0 -2
  161. data/config/locales/ar.yml +6 -94
  162. data/config/locales/bg.yml +0 -673
  163. data/config/locales/ca.yml +52 -75
  164. data/config/locales/cs.yml +49 -71
  165. data/config/locales/de.yml +53 -76
  166. data/config/locales/el.yml +48 -51
  167. data/config/locales/en.yml +51 -74
  168. data/config/locales/es-MX.yml +50 -73
  169. data/config/locales/es-PY.yml +48 -71
  170. data/config/locales/es.yml +53 -76
  171. data/config/locales/eu.yml +52 -75
  172. data/config/locales/fi-plain.yml +46 -69
  173. data/config/locales/fi.yml +44 -67
  174. data/config/locales/fr-CA.yml +43 -69
  175. data/config/locales/fr.yml +48 -71
  176. data/config/locales/ga-IE.yml +2 -16
  177. data/config/locales/gl.yml +5 -63
  178. data/config/locales/hu.yml +6 -92
  179. data/config/locales/id-ID.yml +4 -60
  180. data/config/locales/is-IS.yml +1 -22
  181. data/config/locales/it.yml +6 -86
  182. data/config/locales/ja.yml +44 -73
  183. data/config/locales/lb.yml +6 -67
  184. data/config/locales/lt.yml +42 -65
  185. data/config/locales/lv.yml +4 -61
  186. data/config/locales/nl.yml +4 -92
  187. data/config/locales/no.yml +4 -80
  188. data/config/locales/pl.yml +2 -199
  189. data/config/locales/pt-BR.yml +4 -200
  190. data/config/locales/pt.yml +5 -85
  191. data/config/locales/ro-RO.yml +11 -81
  192. data/config/locales/ru.yml +5 -60
  193. data/config/locales/sk.yml +4 -61
  194. data/config/locales/sl.yml +0 -3
  195. data/config/locales/sr-CS.yml +0 -6
  196. data/config/locales/sv.yml +10 -90
  197. data/config/locales/tr-TR.yml +5 -78
  198. data/config/locales/uk.yml +5 -53
  199. data/config/locales/zh-CN.yml +3 -70
  200. data/config/locales/zh-TW.yml +24 -51
  201. data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
  202. data/db/migrate/20230427105701_change_types_and_registration_types_on_meetings.rb +49 -0
  203. data/lib/decidim/meetings/admin_engine.rb +2 -2
  204. data/lib/decidim/meetings/component.rb +4 -216
  205. data/lib/decidim/meetings/content_blocks/registry_manager.rb +17 -0
  206. data/lib/decidim/meetings/directory_engine.rb +4 -6
  207. data/lib/decidim/meetings/engine.rb +62 -27
  208. data/lib/decidim/meetings/meeting_serializer.rb +3 -3
  209. data/lib/decidim/meetings/seeds.rb +188 -0
  210. data/lib/decidim/meetings/test/factories.rb +124 -54
  211. data/lib/decidim/meetings/test/notifications_handling.rb +3 -3
  212. data/lib/decidim/meetings/test/translated_event.rb +1 -1
  213. data/lib/decidim/meetings/version.rb +1 -1
  214. metadata +58 -58
  215. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/elements.erb +0 -16
  216. data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/heading.erb +0 -1
  217. data/app/cells/decidim/meetings/content_blocks/upcoming_meetings/show.erb +0 -26
  218. data/app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb +0 -63
  219. data/app/cells/decidim/meetings/join_meeting_button/registration_confirm.erb +0 -31
  220. data/app/cells/decidim/meetings/meeting_highlighted_list_item/show.erb +0 -21
  221. data/app/cells/decidim/meetings/meeting_highlighted_list_item_cell.rb +0 -10
  222. data/app/cells/decidim/meetings/meeting_list_item/show.erb +0 -14
  223. data/app/cells/decidim/meetings/meeting_list_item_cell.rb +0 -44
  224. data/app/cells/decidim/meetings/meeting_m/address.erb +0 -5
  225. data/app/cells/decidim/meetings/meeting_m/data.erb +0 -2
  226. data/app/cells/decidim/meetings/meeting_m/date.erb +0 -8
  227. data/app/cells/decidim/meetings/meeting_m/footer.erb +0 -9
  228. data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +0 -17
  229. data/app/cells/decidim/meetings/meeting_m/single_date.erb +0 -9
  230. data/app/cells/decidim/meetings/meeting_m/tags.erb +0 -1
  231. data/app/cells/decidim/meetings/meeting_m_cell.rb +0 -121
  232. data/app/cells/decidim/meetings/meeting_s/show.erb +0 -27
  233. data/app/controllers/concerns/decidim/meetings/filterable.rb +0 -27
  234. data/app/controllers/decidim/meetings/widgets_controller.rb +0 -30
  235. data/app/packs/stylesheets/decidim/meetings/_header.scss +0 -52
  236. data/app/packs/stylesheets/decidim/meetings/_main.scss +0 -178
  237. data/app/packs/stylesheets/decidim/meetings/_meetings.scss +0 -2
  238. data/app/queries/decidim/meetings/admin/invites.rb +0 -60
  239. data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +0 -1
  240. data/app/views/decidim/meetings/directory/meetings/_filters.html.erb +0 -34
  241. data/app/views/decidim/meetings/directory/meetings/_meetings.html.erb +0 -26
  242. data/app/views/decidim/meetings/meeting_closes/proposals_picker.html.erb +0 -1
  243. data/app/views/decidim/meetings/meetings/_calendar_modal.html.erb +0 -26
  244. data/app/views/decidim/meetings/meetings/_filters.html.erb +0 -40
  245. data/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +0 -18
  246. data/app/views/decidim/meetings/meetings/_meetings.html.erb +0 -48
  247. data/app/views/decidim/meetings/versions/index.html.erb +0 -8
  248. data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +0 -4
  249. data/config/locales/he-IL.yml +0 -1
  250. data/decidim-meetings.gemspec +0 -36
  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,19 +396,16 @@ en:
399
396
  all: All
400
397
  filter_meeting_space_values:
401
398
  all: All
402
- filter_scope_values:
403
- all: All
404
399
  calendar:
405
400
  meeting_to_event:
406
401
  read_more: Read more about this meeting
407
402
  calendar_modal:
408
403
  calendar_url: Calendar URL
409
- close_window: Close window
410
404
  copy_calendar_url: Copy
411
405
  copy_calendar_url_clarification: Copy calendar URL to clipboard
412
406
  copy_calendar_url_copied: Copied!
413
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.
414
- 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.
415
409
  copy_calendar_url_message: The URL was successfully copied to clipboard.
416
410
  export_calendar: Export calendar
417
411
  close_meeting_reminder_mailer:
@@ -424,8 +418,6 @@ en:
424
418
  content_blocks:
425
419
  upcoming_meetings:
426
420
  name: Upcoming meetings
427
- upcoming_meetings: Upcoming meetings
428
- view_all_meetings: View all
429
421
  directory:
430
422
  meetings:
431
423
  index:
@@ -441,8 +433,8 @@ en:
441
433
  open_in_live_event_page: Open in live event page (with optional polls)
442
434
  open_in_new_tab: Open URL in a new tab
443
435
  last_activity:
444
- meeting_updated_at_html: "<span>Meeting updated at %{link}</span>"
445
- new_meeting_at_html: "<span>New meeting at %{link}</span>"
436
+ meeting_updated: 'Meeting updated:'
437
+ new_meeting: 'New meeting:'
446
438
  layouts:
447
439
  live_event:
448
440
  administrate: Administrate
@@ -456,7 +448,7 @@ en:
456
448
  confirmation:
457
449
  subject: Your meeting's registration has been confirmed
458
450
  meeting:
459
- not_allowed: You are not allowed to view this meeting
451
+ not_allowed: You are not allowed to view this meeting.
460
452
  meeting_closes:
461
453
  edit:
462
454
  back: Back
@@ -466,7 +458,6 @@ en:
466
458
  calendar_modal:
467
459
  add_to_calendar: Add to calendar
468
460
  apple: Add to Apple calendar
469
- close_window: Close window
470
461
  full_details_html: For full details go to %{link}
471
462
  google: Add to Google calendar
472
463
  outlook: Add to Outlook calendar
@@ -496,8 +487,7 @@ en:
496
487
  all: All
497
488
  official: Official
498
489
  participants: Participants
499
- user_groups: Groups
500
- scope: Scope
490
+ user_group: Groups
501
491
  search: Search
502
492
  type: Type
503
493
  type_values:
@@ -505,16 +495,12 @@ en:
505
495
  hybrid: Hybrid
506
496
  in_person: In-person
507
497
  online: Online
508
- filters_small_view:
509
- close_modal: Close modal
510
- filter: Filter
511
- filter_by: Filter by
512
- unfold: Unfold
513
498
  form:
514
499
  address_help: 'Address: used by Geocoder to find the location'
515
500
  available_slots_help: Leave it to 0 if you have unlimited slots available
516
501
  create_as: Create meeting as
517
- 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}'
518
504
  location_help: 'Location: message directed to the users implying the spot to meet at'
519
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.'
520
506
  online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
@@ -523,17 +509,19 @@ en:
523
509
  select_a_meeting_type: Please select a meeting type
524
510
  select_a_registration_type: Please select a registration type
525
511
  select_an_iframe_access_level: Please select an iframe access level
526
- show_embedded_iframe_help: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
527
512
  index:
528
513
  click_here: See all meetings
529
514
  new_meeting: New meeting
530
515
  see_all: See all meetings
531
516
  see_all_withdrawn: See all withdrawn meetings
532
517
  text_banner: You are viewing the list of meetings withdrawn by their authors. %{go_back_link}.
533
- meeting_minutes:
534
- 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
535
523
  meetings:
536
- 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.
537
525
  upcoming_meetings_warning: Currently, there are no scheduled meetings, but here you can find all the past meetings listed.
538
526
  new:
539
527
  back: Back
@@ -544,13 +532,8 @@ en:
544
532
  confirm: Confirm
545
533
  show:
546
534
  attendees: Attendees count
547
- back: Back to list
548
- close_meeting: Close meeting
549
535
  contributions: Contributions count
550
- date: Date
551
- edit_close_meeting: Edit meeting report
552
- edit_meeting: Edit meeting
553
- join: Join meeting
536
+ join: Register
554
537
  leave: Cancel your registration
555
538
  leave_confirmation: Are you sure you want to cancel your registration for this meeting?
556
539
  link_available_soon: Link available soon
@@ -567,7 +550,6 @@ en:
567
550
  remaining_slots:
568
551
  one: "%{count} slot remaining"
569
552
  other: "%{count} slots remaining"
570
- view: View
571
553
  visit_finished: View past meeting
572
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.
573
555
  withdraw_confirmation_html: Are you sure you want to withdraw this meeting?<br><br><strong>This action cannot be cancelled!</strong>
@@ -575,8 +557,6 @@ en:
575
557
  update:
576
558
  invalid: There was a problem updating the meeting.
577
559
  success: You have updated the meeting successfully.
578
- meetings_map:
579
- view_meeting: View meeting
580
560
  models:
581
561
  invite:
582
562
  fields:
@@ -618,7 +598,8 @@ en:
618
598
  question_replied: Question replied
619
599
  reply_question: Reply question
620
600
  public_participants_list:
621
- attending_participants: Attending participants
601
+ attending_organizations: Organizations
602
+ attending_participants: Participants
622
603
  hidden_participants_count:
623
604
  one: and %{count} more person
624
605
  other: and %{count} more people
@@ -635,7 +616,7 @@ en:
635
616
  registrations:
636
617
  create:
637
618
  invalid: There was a problem joining this meeting.
638
- 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.
639
620
  decline_invitation:
640
621
  invalid: There was a problem declining the invitation.
641
622
  success: You have declined the invitation successfully.
@@ -650,11 +631,9 @@ en:
650
631
  private_meeting: Private meeting
651
632
  transparent: Transparent
652
633
  withdraw: Withdrawn
653
- versions:
654
- back_to_resource: Go back to meeting
655
634
  withdraw:
656
- error: An error ocurred while withdrawing the meeting
657
- success: The meeting has been withdrawn successfully
635
+ error: An error ocurred while withdrawing the meeting.
636
+ success: The meeting has been withdrawn successfully.
658
637
  metrics:
659
638
  meetings:
660
639
  description: Number of meetings created
@@ -663,10 +642,8 @@ en:
663
642
  participatory_spaces:
664
643
  highlighted_meetings:
665
644
  past_meetings: Past meetings
666
- see_all: See all meetings (%{count})
645
+ see_all: See all meetings
667
646
  upcoming_meetings: Upcoming meetings
668
- upcoming_meeting_for_card:
669
- upcoming_meeting: Upcoming meeting
670
647
  resource_links:
671
648
  meetings_through_proposals:
672
649
  meeting_result: 'Related results:'