decidim-meetings 0.24.3 → 0.25.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/join_meeting_button/registration_confirm.erb +6 -0
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +8 -6
- data/app/cells/decidim/meetings/meeting_m_cell.rb +4 -0
- data/app/cells/decidim/meetings/meeting_url/show.erb +7 -2
- data/app/cells/decidim/meetings/meeting_url_cell.rb +14 -2
- data/app/cells/decidim/meetings/meetings_map/show.erb +1 -1
- data/app/cells/decidim/meetings/online_meeting_cell.rb +36 -0
- data/app/cells/decidim/meetings/online_meeting_link/show.erb +44 -0
- data/app/cells/decidim/meetings/online_meeting_link_cell.rb +27 -0
- data/app/cells/decidim/meetings/public_participants_list/show.erb +16 -0
- data/app/cells/decidim/meetings/public_participants_list_cell.rb +31 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -0
- data/app/cells/decidim/meetings/question_responses_cell.rb +72 -0
- data/app/commands/decidim/meetings/admin/close_meeting.rb +3 -0
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +0 -9
- data/app/commands/decidim/meetings/admin/create_meeting.rb +4 -20
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +2 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +72 -0
- data/app/commands/decidim/meetings/admin/unpublish_meeting.rb +45 -0
- data/app/commands/decidim/meetings/admin/update_meeting.rb +6 -3
- data/app/commands/decidim/meetings/admin/update_question_status.rb +57 -0
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +93 -0
- data/app/commands/decidim/meetings/close_meeting.rb +2 -0
- data/app/commands/decidim/meetings/create_answer.rb +52 -0
- data/app/commands/decidim/meetings/create_meeting.rb +3 -1
- data/app/commands/decidim/meetings/join_meeting.rb +2 -1
- data/app/commands/decidim/meetings/update_meeting.rb +2 -1
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +55 -0
- data/app/controllers/concerns/decidim/meetings/polls_resources.rb +29 -0
- data/app/controllers/decidim/meetings/admin/application_controller.rb +6 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +0 -2
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +46 -1
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +107 -0
- data/app/controllers/decidim/meetings/calendars_controller.rb +8 -0
- data/app/controllers/decidim/meetings/live_events_controller.rb +29 -0
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/polls/answers_controller.rb +37 -0
- data/app/controllers/decidim/meetings/polls/questions_controller.rb +45 -0
- data/app/events/decidim/meetings/create_meeting_event.rb +16 -0
- data/app/forms/decidim/meetings/admin/answer_option_form.rb +24 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +3 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +12 -1
- data/app/forms/decidim/meetings/admin/question_form.rb +44 -0
- data/app/forms/decidim/meetings/admin/questionnaire_form.rb +19 -0
- data/app/forms/decidim/meetings/answer_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/answer_form.rb +65 -0
- data/app/forms/decidim/meetings/close_meeting_form.rb +4 -0
- data/app/forms/decidim/meetings/join_meeting_form.rb +1 -0
- data/app/forms/decidim/meetings/meeting_form.rb +9 -0
- data/app/helpers/decidim/meetings/admin/filterable_helper.rb +13 -0
- data/app/helpers/decidim/meetings/application_helper.rb +3 -2
- data/app/helpers/decidim/meetings/meetings_helper.rb +21 -0
- data/app/models/decidim/meetings/answer.rb +48 -0
- data/app/models/decidim/meetings/answer_choice.rb +15 -0
- data/app/models/decidim/meetings/answer_option.rb +24 -0
- data/app/models/decidim/meetings/meeting.rb +88 -42
- data/app/models/decidim/meetings/poll.rb +19 -0
- data/app/models/decidim/meetings/question.rb +54 -0
- data/app/models/decidim/meetings/questionnaire.rb +23 -0
- data/app/models/decidim/meetings/registration.rb +2 -0
- data/app/packs/entrypoints/decidim_meetings.js +6 -0
- data/app/packs/entrypoints/decidim_meetings_admin.js +5 -0
- data/app/{assets/images/decidim/gamification/badges/attended_meetings.svg → packs/images/decidim/gamification/badges/decidim_gamification_badges_attended_meetings.svg} +0 -0
- data/app/{assets/images/decidim/meetings/icon.svg → packs/images/decidim/meetings/decidim_meetings.svg} +0 -0
- data/app/packs/src/decidim/meetings/admin/agendas.js +159 -0
- data/app/{assets/javascripts/decidim/meetings/admin/destroy_meeting_alert.js.es6 → packs/src/decidim/meetings/admin/destroy_meeting_alert.js} +0 -0
- data/app/{assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 → packs/src/decidim/meetings/admin/meetings_form.js} +7 -4
- data/app/{assets/javascripts/decidim/meetings/admin/registrations_form.js.es6 → packs/src/decidim/meetings/admin/registrations_form.js} +0 -0
- data/app/{assets/javascripts/decidim/meetings/admin/registrations_invite_form.es6 → packs/src/decidim/meetings/admin/registrations_invite_form.js} +3 -3
- data/app/packs/src/decidim/meetings/meetings_form.js +54 -0
- data/app/packs/src/decidim/meetings/meetings_polls.js +41 -0
- data/app/packs/src/decidim/meetings/poll.component.js +166 -0
- data/app/packs/stylesheets/decidim/meetings/_header.scss +52 -0
- data/app/packs/stylesheets/decidim/meetings/_main.scss +178 -0
- data/app/packs/stylesheets/decidim/meetings/_meetings.scss +2 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +16 -8
- data/app/permissions/decidim/meetings/permissions.rb +42 -17
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +5 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +25 -25
- data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +1 -1
- data/app/queries/decidim/meetings/questionnaire_user_answers.rb +29 -0
- data/app/serializers/decidim/meetings/data_portability_invite_serializer.rb +2 -1
- data/app/serializers/decidim/meetings/data_portability_registration_serializer.rb +2 -1
- data/app/serializers/decidim/meetings/registration_serializer.rb +3 -12
- data/app/services/decidim/meetings/calendar/component_calendar.rb +2 -2
- data/app/services/decidim/meetings/calendar/meeting_calendar.rb +33 -0
- data/app/services/decidim/meetings/calendar_renderer.rb +2 -0
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +86 -0
- data/app/services/decidim/meetings/meeting_search.rb +2 -2
- data/app/views/decidim/meetings/admin/agenda/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +16 -1
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +16 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +39 -11
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +34 -0
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +63 -0
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +96 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +9 -0
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +1 -1
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +4 -4
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +2 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +50 -0
- data/app/views/decidim/meetings/live_events/show.html.erb +12 -0
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +8 -1
- data/app/views/decidim/meetings/meeting_closes/edit.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_calendar_modal.html.erb +26 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_form.html.erb +6 -1
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +7 -18
- data/app/views/decidim/meetings/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/index.html.erb +4 -4
- data/app/views/decidim/meetings/meetings/new.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +13 -14
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +19 -0
- data/app/views/decidim/meetings/polls/answers/create.js.erb +5 -0
- data/app/views/decidim/meetings/polls/questions/_closed_question.html.erb +7 -0
- data/app/views/decidim/meetings/polls/questions/_index.html.erb +5 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +43 -0
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +29 -0
- data/app/views/decidim/meetings/polls/questions/_question.html.erb +7 -0
- data/app/views/decidim/meetings/polls/questions/index.js.erb +5 -0
- data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +5 -0
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +5 -2
- data/app/views/devise/mailer/join_meeting.html.erb +6 -6
- data/config/assets.rb +11 -0
- data/config/locales/ar.yml +3 -24
- data/config/locales/ca.yml +36 -27
- data/config/locales/cs.yml +72 -26
- data/config/locales/de.yml +22 -27
- data/config/locales/el.yml +3 -24
- data/config/locales/en.yml +112 -26
- data/config/locales/es-MX.yml +13 -27
- data/config/locales/es-PY.yml +13 -27
- data/config/locales/es.yml +13 -27
- data/config/locales/eu.yml +3 -24
- data/config/locales/fi-plain.yml +70 -26
- data/config/locales/fi.yml +70 -26
- data/config/locales/fr-CA.yml +19 -26
- data/config/locales/fr-LU.yml +534 -0
- data/config/locales/fr.yml +19 -26
- data/config/locales/gl.yml +46 -24
- data/config/locales/hu.yml +5 -24
- data/config/locales/id-ID.yml +3 -24
- data/config/locales/is-IS.yml +2 -22
- data/config/locales/it.yml +117 -23
- data/config/locales/ja.yml +148 -58
- data/config/locales/lb-LU.yml +1 -0
- data/config/locales/lv.yml +3 -24
- data/config/locales/nl.yml +70 -25
- data/config/locales/no.yml +5 -26
- data/config/locales/pl.yml +22 -33
- data/config/locales/pt-BR.yml +178 -23
- data/config/locales/pt.yml +3 -24
- data/config/locales/ro-RO.yml +38 -27
- data/config/locales/ru.yml +3 -24
- data/config/locales/sk.yml +3 -24
- data/config/locales/sv.yml +36 -27
- data/config/locales/tr-TR.yml +5 -27
- data/config/locales/uk.yml +3 -24
- data/config/locales/zh-CN.yml +3 -24
- data/db/migrate/20210217124802_add_registration_custom_content_to_meetings.rb +8 -0
- data/db/migrate/20210413050756_add_published_at_to_meetings.rb +7 -0
- data/db/migrate/20210413050917_update_published_at_to_existing_meetings.rb +20 -0
- data/db/migrate/20210430123416_add_public_participation_to_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20210506180226_merge_meetings_minutes_into_meetings_table.rb +48 -0
- data/db/migrate/20210512055802_create_decidim_meetings_polls.rb +10 -0
- data/db/migrate/20210512100333_drop_decidim_meetings_minutes_table.rb +77 -0
- data/db/migrate/20210518133236_merge_minutes_with_closing_report_in_meetings_table.rb +57 -0
- data/db/migrate/20210520084247_create_decidim_meetings_questionnaires.rb +11 -0
- data/db/migrate/20210520084253_create_decidim_meetings_questions.rb +15 -0
- data/db/migrate/20210520084321_create_decidim_meetings_answers.rb +13 -0
- data/db/migrate/20210520084330_create_decidim_meetings_answer_options.rb +10 -0
- data/db/migrate/20210520084337_create_decidim_meetings_answer_choices.rb +13 -0
- data/db/migrate/20210520134834_add_status_to_meetings_questions.rb +7 -0
- data/db/migrate/20210602040614_add_setting_embed_iframe_to_meetings.rb +7 -0
- data/lib/decidim/api/linked_resources_interface.rb +8 -1
- data/lib/decidim/api/meeting_type.rb +19 -4
- data/lib/decidim/api/meetings_type.rb +2 -2
- data/lib/decidim/meetings/admin_engine.rb +5 -1
- data/lib/decidim/meetings/api.rb +0 -1
- data/lib/decidim/meetings/component.rb +41 -6
- data/lib/decidim/meetings/data_portability_user_answers_serializer.rb +33 -0
- data/lib/decidim/meetings/engine.rb +10 -11
- data/lib/decidim/meetings/meeting_serializer.rb +1 -0
- data/lib/decidim/meetings/polls.rb +10 -0
- data/lib/decidim/meetings/test/factories.rb +85 -9
- data/lib/decidim/meetings/user_answers_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +10 -0
- metadata +103 -113
- data/app/assets/config/decidim_meetings_manifest.js +0 -9
- data/app/assets/javascripts/decidim/meetings/admin/agendas.js.es6 +0 -158
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +0 -54
- data/app/commands/decidim/meetings/admin/create_minutes.rb +0 -55
- data/app/commands/decidim/meetings/admin/update_minutes.rb +0 -63
- data/app/controllers/decidim/meetings/admin/minutes_controller.rb +0 -69
- data/app/forms/decidim/meetings/admin/minutes_form.rb +0 -20
- data/app/models/decidim/meetings/minutes.rb +0 -22
- data/app/presenters/decidim/meetings/admin_log/minutes_presenter.rb +0 -42
- data/app/views/decidim/meetings/admin/minutes/_form.html.erb +0 -23
- data/app/views/decidim/meetings/admin/minutes/edit.html.erb +0 -7
- data/app/views/decidim/meetings/admin/minutes/new.html.erb +0 -7
- data/app/views/decidim/meetings/meetings/_online_meeting_link.html.erb +0 -11
- data/config/locales/ja-JP.yml +0 -494
- data/lib/decidim/api/minutes_type.rb +0 -20
data/config/locales/en.yml
CHANGED
@@ -9,38 +9,44 @@ en:
|
|
9
9
|
close_meeting:
|
10
10
|
attendees_count: Number of attendees
|
11
11
|
attending_organizations: List of organizations that attended
|
12
|
-
|
12
|
+
audio_url: Audio URL
|
13
|
+
closing_report: Minutes
|
14
|
+
closing_visible: Is visible
|
13
15
|
contributions_count: Number of contributions
|
14
16
|
proposal_ids: Proposals created in the meeting
|
17
|
+
video_url: Video URL
|
15
18
|
meeting:
|
16
19
|
address: Address
|
17
20
|
available_slots: Available slots for this meeting
|
21
|
+
customize_registration_email: Customize registration email
|
18
22
|
decidim_category_id: Category
|
19
23
|
decidim_scope_id: Scope
|
20
24
|
decidim_user_group_id: User group
|
21
25
|
description: Description
|
22
26
|
end_time: End Time
|
27
|
+
id: ID
|
23
28
|
location: Location
|
24
29
|
location_hints: Location hints
|
25
30
|
online_meeting_url: Online meeting URL
|
26
31
|
organizer_gid: Create as
|
27
32
|
organizer_id: Organizer
|
28
33
|
private_meeting: Private meeting
|
34
|
+
registration_email_custom_content: Registration email custom content
|
29
35
|
registration_form_enabled: Registration form enabled
|
30
36
|
registration_terms: Registration terms
|
31
37
|
registration_url: Registration URL
|
32
38
|
registrations_enabled: Registrations enabled
|
39
|
+
show_embedded_iframe: Show embedded iframe for this URL
|
33
40
|
start_time: Start Time
|
34
41
|
title: Title
|
35
42
|
transparent: Transparent
|
36
43
|
type_of_meeting: Type
|
37
|
-
minutes:
|
38
|
-
audio_url: Audio URL
|
39
|
-
description: Description
|
40
|
-
video_url: Video URL
|
41
|
-
visible: Is visible
|
42
44
|
errors:
|
43
45
|
models:
|
46
|
+
meeting:
|
47
|
+
attributes:
|
48
|
+
show_embedded_iframe:
|
49
|
+
not_embeddable: This URL can't be embedded
|
44
50
|
meeting_agenda:
|
45
51
|
attributes:
|
46
52
|
base:
|
@@ -70,6 +76,34 @@ en:
|
|
70
76
|
other: Registrations
|
71
77
|
decidim:
|
72
78
|
admin:
|
79
|
+
filters:
|
80
|
+
meetings:
|
81
|
+
category_id_eq:
|
82
|
+
label: Category
|
83
|
+
closed_at_present:
|
84
|
+
label: State
|
85
|
+
values:
|
86
|
+
'false': Open
|
87
|
+
'true': Closed
|
88
|
+
is_upcoming_true:
|
89
|
+
label: Date
|
90
|
+
values:
|
91
|
+
'false': Past
|
92
|
+
'true': Upcoming
|
93
|
+
origin_eq:
|
94
|
+
label: Origin
|
95
|
+
values:
|
96
|
+
citizen: Citizen
|
97
|
+
official: Official
|
98
|
+
user_group: User Groups
|
99
|
+
scope_id_eq:
|
100
|
+
label: Scope
|
101
|
+
type_eq:
|
102
|
+
label: Type of meeting
|
103
|
+
values:
|
104
|
+
hybrid: Both
|
105
|
+
in_person: In Person
|
106
|
+
online: Online
|
73
107
|
meeting_copies:
|
74
108
|
create:
|
75
109
|
error: There was a problem duplicating this meeting.
|
@@ -81,6 +115,7 @@ en:
|
|
81
115
|
components:
|
82
116
|
meetings:
|
83
117
|
actions:
|
118
|
+
comment: Comment
|
84
119
|
join: Join
|
85
120
|
name: Meetings
|
86
121
|
settings:
|
@@ -91,6 +126,7 @@ en:
|
|
91
126
|
creation_enabled_for_participants: Participants can create meetings
|
92
127
|
default_registration_terms: Default registration terms
|
93
128
|
enable_pads_creation: Enable pads creation
|
129
|
+
maps_enabled: Maps enabled
|
94
130
|
registration_code_enabled: Registration code enabled
|
95
131
|
resources_permissions_enabled: Actions permissions can be set for each meeting
|
96
132
|
scope_id: Scope
|
@@ -115,6 +151,7 @@ en:
|
|
115
151
|
email_subject: The "%{resource_title}" meeting was closed
|
116
152
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting was closed.
|
117
153
|
meeting_created:
|
154
|
+
button_text: Register to the meeting
|
118
155
|
email_intro: The meeting "%{resource_title}" has been added to "%{participatory_space_title}" that you are following.
|
119
156
|
email_outro: You have received this notification because you are following "%{participatory_space_title}". You can unfollow it from the previous link.
|
120
157
|
email_subject: New meeting added to %{participatory_space_title}
|
@@ -146,6 +183,9 @@ en:
|
|
146
183
|
email_outro: You have received this notification because you are following the "%{resource_title}" meeting. You can unfollow it from the previous link.
|
147
184
|
email_subject: The "%{resource_title}" meeting will start in less than 48h.
|
148
185
|
notification_title: The <a href="%{resource_path}">%{resource_title}</a> meeting will start in less than 48h.
|
186
|
+
forms:
|
187
|
+
meetings:
|
188
|
+
attendees_count_help_text: Don’t forget to include the total number of participants at your event. Whether in person, hybrid, or online, it’s important that we know how many people are involved.
|
149
189
|
gamification:
|
150
190
|
badges:
|
151
191
|
attended_meetings:
|
@@ -171,7 +211,7 @@ en:
|
|
171
211
|
proposals_count:
|
172
212
|
one: 'The meeting cannot be destroyed because it has %{count} proposal associated to it:'
|
173
213
|
other: 'The meeting cannot be destroyed because it has %{count} proposals associated to it:'
|
174
|
-
|
214
|
+
manage_poll: Manage poll
|
175
215
|
new: New meeting
|
176
216
|
preview: Preview
|
177
217
|
registrations: Registrations
|
@@ -208,6 +248,7 @@ en:
|
|
208
248
|
invalid: There was a problem updating this agenda
|
209
249
|
success: Agenda successfully updated
|
210
250
|
exports:
|
251
|
+
answers: Answers
|
211
252
|
meeting_comments: Comments
|
212
253
|
meetings: Meetings
|
213
254
|
registrations: Registrations
|
@@ -248,7 +289,7 @@ en:
|
|
248
289
|
success: Meeting successfully closed
|
249
290
|
create:
|
250
291
|
invalid: There was a problem creating this meeting
|
251
|
-
success: Meeting successfully created
|
292
|
+
success: Meeting successfully created. Notice this is unpublished yet, you need to manually publish it.
|
252
293
|
destroy:
|
253
294
|
invalid:
|
254
295
|
proposals_count:
|
@@ -265,14 +306,19 @@ en:
|
|
265
306
|
location_help: 'Location: message directed to the users implying the spot to meet at'
|
266
307
|
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.'
|
267
308
|
online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
|
309
|
+
registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
|
268
310
|
registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
|
269
311
|
select_a_meeting_type: Please select a meeting type
|
270
312
|
select_a_registration_type: Please select a registration type
|
313
|
+
show_embedded_iframe_help: Whether or not embed the iframe for this videoconference URL. Only a few services allow embedding (i.e. Youtube, Twitch...)
|
271
314
|
index:
|
272
315
|
title: Meetings
|
273
316
|
new:
|
274
317
|
create: Create
|
275
318
|
title: Create meeting
|
319
|
+
publish:
|
320
|
+
invalid: There was a problem publishing this meeting
|
321
|
+
success: Meeting successfully published
|
276
322
|
service:
|
277
323
|
description: Description
|
278
324
|
down: Down
|
@@ -283,22 +329,18 @@ en:
|
|
283
329
|
services:
|
284
330
|
add_service: Add service
|
285
331
|
services: Services
|
332
|
+
unpublish:
|
333
|
+
invalid: There was a problem unpublishing this meeting
|
334
|
+
success: Meeting successfully unpublished
|
286
335
|
update:
|
287
336
|
invalid: There was a problem updating this meeting
|
288
337
|
success: Meeting successfully updated
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
success: Minutes successfully created
|
293
|
-
edit:
|
294
|
-
title: Edit minutes
|
295
|
-
update: Update
|
296
|
-
new:
|
297
|
-
create: Create
|
298
|
-
title: Create minutes
|
338
|
+
meetings_poll:
|
339
|
+
form:
|
340
|
+
title: Edit poll questionnaire for %{questionnaire_for}
|
299
341
|
update:
|
300
|
-
invalid: There was a problem updating this
|
301
|
-
success:
|
342
|
+
invalid: There was a problem updating this meeting poll
|
343
|
+
success: Meeting poll successfully updated
|
302
344
|
models:
|
303
345
|
meeting:
|
304
346
|
name: Meeting
|
@@ -338,9 +380,6 @@ en:
|
|
338
380
|
value_types:
|
339
381
|
organizer_presenter:
|
340
382
|
not_found: 'The organizer was not found on the database (ID: %{id})'
|
341
|
-
minutes:
|
342
|
-
create: "%{user_name} created the minutes of the meeting %{resource_name} on the %{space_name} space"
|
343
|
-
update: "%{user_name} updated the minutes of the meeting %{resource_name} on the %{space_name} space"
|
344
383
|
calendar_modal:
|
345
384
|
calendar_url: Calendar URL
|
346
385
|
close_window: Close window
|
@@ -364,6 +403,11 @@ en:
|
|
364
403
|
last_activity:
|
365
404
|
meeting_updated_at_html: "<span>Meeting updated at %{link}</span>"
|
366
405
|
new_meeting_at_html: "<span>New meeting at %{link}</span>"
|
406
|
+
layouts:
|
407
|
+
live_event:
|
408
|
+
administrate: Administrate
|
409
|
+
close: close
|
410
|
+
questions: Questions
|
367
411
|
mailer:
|
368
412
|
invite_join_meeting_mailer:
|
369
413
|
invite:
|
@@ -379,6 +423,13 @@ en:
|
|
379
423
|
close: Close meeting
|
380
424
|
title: Close meeting
|
381
425
|
meetings:
|
426
|
+
calendar_modal:
|
427
|
+
add_to_calendar: Add to calendar
|
428
|
+
apple: Add to Apple calendar
|
429
|
+
close_window: Close window
|
430
|
+
full_details_html: For full details go to %{link}
|
431
|
+
google: Add to Google calendar
|
432
|
+
outlook: Add to Outlook calendar
|
382
433
|
count:
|
383
434
|
meetings_count:
|
384
435
|
one: "%{count} meeting"
|
@@ -431,10 +482,10 @@ en:
|
|
431
482
|
select_a_category: Please select a category
|
432
483
|
select_a_meeting_type: Please select a meeting type
|
433
484
|
select_a_registration_type: Please select a registration type
|
485
|
+
show_embedded_iframe_help: Whether or not embed the iframe for this videoconference URL. Only a few services allow embedding (i.e. Youtube, Twitch...)
|
434
486
|
index:
|
435
487
|
new_meeting: New meeting
|
436
488
|
meeting_minutes:
|
437
|
-
meeting_minutes: Meeting Minutes
|
438
489
|
related_information: Related Information
|
439
490
|
meetings:
|
440
491
|
no_meetings_warning: No meetings match your search criteria or there isn't any meeting scheduled.
|
@@ -453,9 +504,15 @@ en:
|
|
453
504
|
contributions: Contributions count
|
454
505
|
date: Date
|
455
506
|
edit_meeting: Edit meeting
|
456
|
-
going:
|
507
|
+
going: You have signed up for this meeting
|
457
508
|
join: Join meeting
|
458
|
-
|
509
|
+
leave: Cancel your registration
|
510
|
+
leave_confirmation: Are you sure you want to cancel your registration for this meeting?
|
511
|
+
link_available_soon: Link available soon
|
512
|
+
link_closed: The link to join the meeting will be available a few minutes before it starts
|
513
|
+
live_event: This meeting is happening right now
|
514
|
+
meeting_minutes: Meeting Minutes
|
515
|
+
micro_camera_permissions_warning: When you click on the button below, you will be asked for microphone and/or camera permissions, and you will join the videoconference
|
459
516
|
no_slots_available: No slots available
|
460
517
|
organizations: Attending organizations
|
461
518
|
registration_code_help_text: Your registration code
|
@@ -466,6 +523,7 @@ en:
|
|
466
523
|
one: "%{count} slot remaining"
|
467
524
|
other: "%{count} slots remaining"
|
468
525
|
view: View
|
526
|
+
visit_finished: View past meeting
|
469
527
|
update:
|
470
528
|
invalid: There was a problem updating the meeting.
|
471
529
|
success: You have updated the meeting successfully.
|
@@ -486,10 +544,36 @@ en:
|
|
486
544
|
fields:
|
487
545
|
closed: Closed
|
488
546
|
end_time: End date
|
547
|
+
id: Id
|
489
548
|
map: Map
|
490
549
|
official_meeting: Official meeting
|
491
550
|
start_time: Start date
|
492
551
|
title: Title
|
552
|
+
polls:
|
553
|
+
questions:
|
554
|
+
closed_question:
|
555
|
+
question_results: Question results
|
556
|
+
index:
|
557
|
+
empty_questions: Throughout this meeting, some questions will be sent and you will be able to answer them. They will be displayed here.
|
558
|
+
index_admin:
|
559
|
+
admin_dashboard: Administrator dashboard
|
560
|
+
edit: Edit in the admin
|
561
|
+
question: Question
|
562
|
+
received_answer: received answer
|
563
|
+
received_answers: received answers
|
564
|
+
results: Results
|
565
|
+
send: Send
|
566
|
+
sent: Sent
|
567
|
+
published_question:
|
568
|
+
max_choices_alert: There are too many choices selected
|
569
|
+
question: Question
|
570
|
+
question_replied: Question replied
|
571
|
+
reply_question: Reply question
|
572
|
+
public_participants_list:
|
573
|
+
attending_participants: Attending participants
|
574
|
+
hidden_participants_count:
|
575
|
+
one: and %{count} more person
|
576
|
+
other: and %{count} more people
|
493
577
|
read_more: "(read more)"
|
494
578
|
registration_mailer:
|
495
579
|
confirmation:
|
@@ -538,6 +622,8 @@ en:
|
|
538
622
|
proposals_from_meeting:
|
539
623
|
meeting_proposal: 'Related proposals:'
|
540
624
|
proposal_meeting: 'Related meetings:'
|
625
|
+
statistics:
|
626
|
+
meetings_count: Meetings
|
541
627
|
devise:
|
542
628
|
mailer:
|
543
629
|
join_meeting:
|
data/config/locales/es-MX.yml
CHANGED
@@ -8,12 +8,16 @@ es-MX:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Número de asistentes
|
10
10
|
attending_organizations: Lista de organizaciones que han participado
|
11
|
-
|
11
|
+
audio_url: URL de audio
|
12
|
+
closing_report: Acta
|
13
|
+
closing_visible: Es visible
|
12
14
|
contributions_count: Número de contribuciones
|
13
15
|
proposal_ids: Propuestas creadas en el encuentro
|
16
|
+
video_url: URL de video
|
14
17
|
meeting:
|
15
18
|
address: Dirección
|
16
19
|
available_slots: Espacios disponibles para este encuentro
|
20
|
+
customize_registration_email: Personalizar email de inscripción
|
17
21
|
decidim_category_id: Categoría
|
18
22
|
decidim_scope_id: Ámbito
|
19
23
|
decidim_user_group_id: Grupo de usuarias
|
@@ -25,6 +29,7 @@ es-MX:
|
|
25
29
|
organizer_gid: Crear como
|
26
30
|
organizer_id: Organizador
|
27
31
|
private_meeting: Encuentro privado
|
32
|
+
registration_email_custom_content: Contenido personalizado del email de inscripción
|
28
33
|
registration_form_enabled: Formulario de inscripción habilitado
|
29
34
|
registration_terms: Términos y condiciones de inscripción
|
30
35
|
registration_url: URL de inscripción
|
@@ -33,11 +38,6 @@ es-MX:
|
|
33
38
|
title: Título
|
34
39
|
transparent: Transparente
|
35
40
|
type_of_meeting: Tipo
|
36
|
-
minutes:
|
37
|
-
audio_url: URL de audio
|
38
|
-
description: Descripción
|
39
|
-
video_url: URL de video
|
40
|
-
visible: Es visible
|
41
41
|
errors:
|
42
42
|
models:
|
43
43
|
meeting_agenda:
|
@@ -170,7 +170,6 @@ es-MX:
|
|
170
170
|
proposals_count:
|
171
171
|
one: 'El encuentro no se puede eliminar porque tiene %{count} propuesta asociada:'
|
172
172
|
other: 'El encuentro no se puede eliminar porque tiene %{count} propuestas asociadas:'
|
173
|
-
minutes: Acta
|
174
173
|
new: Nuevo encuentro
|
175
174
|
preview: Previsualizar
|
176
175
|
registrations: Inscripciones
|
@@ -247,7 +246,6 @@ es-MX:
|
|
247
246
|
success: Encuentro cerrado con éxito
|
248
247
|
create:
|
249
248
|
invalid: Ha habido un problema al crear este encuentro
|
250
|
-
success: Encuentro creado con éxito
|
251
249
|
destroy:
|
252
250
|
invalid:
|
253
251
|
proposals_count:
|
@@ -264,6 +262,7 @@ es-MX:
|
|
264
262
|
location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
|
265
263
|
location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
|
266
264
|
online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
|
265
|
+
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
267
266
|
registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
|
268
267
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
269
268
|
select_a_registration_type: Por favor, seleccione un tipo de inscripción
|
@@ -285,19 +284,6 @@ es-MX:
|
|
285
284
|
update:
|
286
285
|
invalid: Ha habido un problema al actualizar este encuentro
|
287
286
|
success: Encuentro actualizado correctamente
|
288
|
-
minutes:
|
289
|
-
create:
|
290
|
-
invalid: Ha habido un problema al crear el acta
|
291
|
-
success: Acta creada con éxito
|
292
|
-
edit:
|
293
|
-
title: Editar actas
|
294
|
-
update: Actualizar
|
295
|
-
new:
|
296
|
-
create: Crear
|
297
|
-
title: Crear acta
|
298
|
-
update:
|
299
|
-
invalid: Ha habido un problema al actualizar el acta
|
300
|
-
success: Acta actualizada con éxito
|
301
287
|
models:
|
302
288
|
meeting:
|
303
289
|
name: Encuentro
|
@@ -337,9 +323,6 @@ es-MX:
|
|
337
323
|
value_types:
|
338
324
|
organizer_presenter:
|
339
325
|
not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
|
340
|
-
minutes:
|
341
|
-
create: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
342
|
-
update: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
343
326
|
calendar_modal:
|
344
327
|
calendar_url: URL del calendario
|
345
328
|
close_window: Cerrar ventana
|
@@ -433,7 +416,6 @@ es-MX:
|
|
433
416
|
index:
|
434
417
|
new_meeting: Nuevo encuentro
|
435
418
|
meeting_minutes:
|
436
|
-
meeting_minutes: Acta del encuentro
|
437
419
|
related_information: Información relacionada
|
438
420
|
meetings:
|
439
421
|
no_meetings_warning: No hay encuentros que coincidan con el criterio de búsqueda o no hay ningún encuentro programado.
|
@@ -452,9 +434,11 @@ es-MX:
|
|
452
434
|
contributions: Número de contribuciones
|
453
435
|
date: Fecha
|
454
436
|
edit_meeting: Editar el encuentro
|
455
|
-
going:
|
437
|
+
going: Te has inscrito en este encuentro
|
456
438
|
join: Inscribirse al encuentro
|
457
|
-
|
439
|
+
leave: Cancela tu inscripción
|
440
|
+
leave_confirmation: '¿Seguro que quieres cancelar tu inscripción para este encuentro?'
|
441
|
+
meeting_minutes: Acta del encuentro
|
458
442
|
no_slots_available: No hay espacio disponible
|
459
443
|
organizations: Organizaciones que han asistido
|
460
444
|
registration_code_help_text: Tu codigo de registro
|
@@ -537,6 +521,8 @@ es-MX:
|
|
537
521
|
proposals_from_meeting:
|
538
522
|
meeting_proposal: 'Propuestas relacionadas:'
|
539
523
|
proposal_meeting: 'Encuentros relacionados:'
|
524
|
+
statistics:
|
525
|
+
meetings_count: Encuentros
|
540
526
|
devise:
|
541
527
|
mailer:
|
542
528
|
join_meeting:
|
data/config/locales/es-PY.yml
CHANGED
@@ -8,12 +8,16 @@ es-PY:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Número de asistentes
|
10
10
|
attending_organizations: Lista de organizaciones que han participado
|
11
|
-
|
11
|
+
audio_url: URL de audio
|
12
|
+
closing_report: Acta
|
13
|
+
closing_visible: Es visible
|
12
14
|
contributions_count: Número de contribuciones
|
13
15
|
proposal_ids: Propuestas creadas en el encuentro
|
16
|
+
video_url: URL de video
|
14
17
|
meeting:
|
15
18
|
address: Dirección
|
16
19
|
available_slots: Espacios disponibles para este encuentro
|
20
|
+
customize_registration_email: Personalizar email de inscripción
|
17
21
|
decidim_category_id: Categoría
|
18
22
|
decidim_scope_id: Ámbito
|
19
23
|
decidim_user_group_id: Grupo de usuarias
|
@@ -25,6 +29,7 @@ es-PY:
|
|
25
29
|
organizer_gid: Crear como
|
26
30
|
organizer_id: Organizador
|
27
31
|
private_meeting: Encuentro privado
|
32
|
+
registration_email_custom_content: Contenido personalizado del email de inscripción
|
28
33
|
registration_form_enabled: Formulario de inscripción habilitado
|
29
34
|
registration_terms: Términos y condiciones de inscripción
|
30
35
|
registration_url: URL de inscripción
|
@@ -33,11 +38,6 @@ es-PY:
|
|
33
38
|
title: Título
|
34
39
|
transparent: Transparente
|
35
40
|
type_of_meeting: Tipo
|
36
|
-
minutes:
|
37
|
-
audio_url: URL de audio
|
38
|
-
description: Descripción
|
39
|
-
video_url: URL de video
|
40
|
-
visible: Es visible
|
41
41
|
errors:
|
42
42
|
models:
|
43
43
|
meeting_agenda:
|
@@ -170,7 +170,6 @@ es-PY:
|
|
170
170
|
proposals_count:
|
171
171
|
one: 'El encuentro no se puede eliminar porque tiene %{count} propuesta asociada:'
|
172
172
|
other: 'El encuentro no se puede eliminar porque tiene %{count} propuestas asociadas:'
|
173
|
-
minutes: Acta
|
174
173
|
new: Nuevo encuentro
|
175
174
|
preview: Previsualizar
|
176
175
|
registrations: Inscripciones
|
@@ -247,7 +246,6 @@ es-PY:
|
|
247
246
|
success: Encuentro cerrado con éxito
|
248
247
|
create:
|
249
248
|
invalid: Ha habido un problema al crear este encuentro
|
250
|
-
success: Encuentro creado con éxito
|
251
249
|
destroy:
|
252
250
|
invalid:
|
253
251
|
proposals_count:
|
@@ -264,6 +262,7 @@ es-PY:
|
|
264
262
|
location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
|
265
263
|
location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
|
266
264
|
online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
|
265
|
+
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
267
266
|
registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
|
268
267
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
269
268
|
select_a_registration_type: Por favor, seleccione un tipo de inscripción
|
@@ -285,19 +284,6 @@ es-PY:
|
|
285
284
|
update:
|
286
285
|
invalid: Ha habido un problema al actualizar este encuentro
|
287
286
|
success: Encuentro actualizado correctamente
|
288
|
-
minutes:
|
289
|
-
create:
|
290
|
-
invalid: Ha habido un problema al crear el acta
|
291
|
-
success: Acta creada con éxito
|
292
|
-
edit:
|
293
|
-
title: Editar actas
|
294
|
-
update: Actualizar
|
295
|
-
new:
|
296
|
-
create: Crear
|
297
|
-
title: Crear acta
|
298
|
-
update:
|
299
|
-
invalid: Ha habido un problema al actualizar el acta
|
300
|
-
success: Acta actualizada con éxito
|
301
287
|
models:
|
302
288
|
meeting:
|
303
289
|
name: Encuentro
|
@@ -337,9 +323,6 @@ es-PY:
|
|
337
323
|
value_types:
|
338
324
|
organizer_presenter:
|
339
325
|
not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
|
340
|
-
minutes:
|
341
|
-
create: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
342
|
-
update: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
343
326
|
calendar_modal:
|
344
327
|
calendar_url: URL del calendario
|
345
328
|
close_window: Cerrar ventana
|
@@ -433,7 +416,6 @@ es-PY:
|
|
433
416
|
index:
|
434
417
|
new_meeting: Nuevo encuentro
|
435
418
|
meeting_minutes:
|
436
|
-
meeting_minutes: Acta del encuentro
|
437
419
|
related_information: Información relacionada
|
438
420
|
meetings:
|
439
421
|
no_meetings_warning: No hay encuentros que coincidan con el criterio de búsqueda o no hay ningún encuentro programado.
|
@@ -452,9 +434,11 @@ es-PY:
|
|
452
434
|
contributions: Número de contribuciones
|
453
435
|
date: Fecha
|
454
436
|
edit_meeting: Editar el encuentro
|
455
|
-
going:
|
437
|
+
going: Te has inscrito en este encuentro
|
456
438
|
join: Inscribirse al encuentro
|
457
|
-
|
439
|
+
leave: Cancela tu inscripción
|
440
|
+
leave_confirmation: '¿Seguro que quieres cancelar tu inscripción para este encuentro?'
|
441
|
+
meeting_minutes: Acta del encuentro
|
458
442
|
no_slots_available: No hay espacio disponible
|
459
443
|
organizations: Organizaciones que han asistido
|
460
444
|
registration_code_help_text: Tu codigo de registro
|
@@ -537,6 +521,8 @@ es-PY:
|
|
537
521
|
proposals_from_meeting:
|
538
522
|
meeting_proposal: 'Propuestas relacionadas:'
|
539
523
|
proposal_meeting: 'Encuentros relacionados:'
|
524
|
+
statistics:
|
525
|
+
meetings_count: Encuentros
|
540
526
|
devise:
|
541
527
|
mailer:
|
542
528
|
join_meeting:
|
data/config/locales/es.yml
CHANGED
@@ -8,12 +8,16 @@ es:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Número de asistentes
|
10
10
|
attending_organizations: Lista de organizaciones que han participado
|
11
|
-
|
11
|
+
audio_url: URL de audio
|
12
|
+
closing_report: Acta
|
13
|
+
closing_visible: Es visible
|
12
14
|
contributions_count: Número de contribuciones
|
13
15
|
proposal_ids: Propuestas creadas en el encuentro
|
16
|
+
video_url: URL de video
|
14
17
|
meeting:
|
15
18
|
address: Dirección
|
16
19
|
available_slots: Espacios disponibles para este encuentro
|
20
|
+
customize_registration_email: Personalizar email de inscripción
|
17
21
|
decidim_category_id: Categoría
|
18
22
|
decidim_scope_id: Ámbito
|
19
23
|
decidim_user_group_id: Grupo
|
@@ -25,6 +29,7 @@ es:
|
|
25
29
|
organizer_gid: Crear como
|
26
30
|
organizer_id: Organizador
|
27
31
|
private_meeting: Encuentro privado
|
32
|
+
registration_email_custom_content: Contenido personalizado del email de inscripción
|
28
33
|
registration_form_enabled: Formulario de inscripción habilitado
|
29
34
|
registration_terms: Términos y condiciones de inscripción
|
30
35
|
registration_url: URL de inscripción
|
@@ -33,11 +38,6 @@ es:
|
|
33
38
|
title: Título
|
34
39
|
transparent: Transparente
|
35
40
|
type_of_meeting: Tipo
|
36
|
-
minutes:
|
37
|
-
audio_url: URL de audio
|
38
|
-
description: Descripción
|
39
|
-
video_url: URL de video
|
40
|
-
visible: Es visible
|
41
41
|
errors:
|
42
42
|
models:
|
43
43
|
meeting_agenda:
|
@@ -170,7 +170,6 @@ es:
|
|
170
170
|
proposals_count:
|
171
171
|
one: 'El encuentro no se puede eliminar porque tiene %{count} propuesta asociada:'
|
172
172
|
other: 'El encuentro no se puede eliminar porque tiene %{count} propuestas asociadas:'
|
173
|
-
minutes: Acta
|
174
173
|
new: Nuevo encuentro
|
175
174
|
preview: Previsualizar
|
176
175
|
registrations: Inscripciones
|
@@ -247,7 +246,6 @@ es:
|
|
247
246
|
success: Encuentro cerrado con éxito
|
248
247
|
create:
|
249
248
|
invalid: Se ha producido un error al crear este encuentro
|
250
|
-
success: Encuentro creado con éxito
|
251
249
|
destroy:
|
252
250
|
invalid:
|
253
251
|
proposals_count:
|
@@ -264,6 +262,7 @@ es:
|
|
264
262
|
location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
|
265
263
|
location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
|
266
264
|
online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
|
265
|
+
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
267
266
|
registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
|
268
267
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
269
268
|
select_a_registration_type: Por favor, seleccione un tipo de inscripción
|
@@ -285,19 +284,6 @@ es:
|
|
285
284
|
update:
|
286
285
|
invalid: Se ha producido un error al actualizar este encuentro
|
287
286
|
success: Encuentro actualizado correctamente
|
288
|
-
minutes:
|
289
|
-
create:
|
290
|
-
invalid: Se ha producido un error al crear este acta
|
291
|
-
success: Acta creada con éxito
|
292
|
-
edit:
|
293
|
-
title: Editar actas
|
294
|
-
update: Actualizar
|
295
|
-
new:
|
296
|
-
create: Crear
|
297
|
-
title: Crear acta
|
298
|
-
update:
|
299
|
-
invalid: Se ha producido un error al actualizar este acta
|
300
|
-
success: Acta actualizada con éxito
|
301
287
|
models:
|
302
288
|
meeting:
|
303
289
|
name: Encuentro
|
@@ -337,9 +323,6 @@ es:
|
|
337
323
|
value_types:
|
338
324
|
organizer_presenter:
|
339
325
|
not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
|
340
|
-
minutes:
|
341
|
-
create: "%{user_name} ha creado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
342
|
-
update: "%{user_name} ha actualizado el acta del encuentro %{resource_name} en el espacio %{space_name}"
|
343
326
|
calendar_modal:
|
344
327
|
calendar_url: URL del calendario
|
345
328
|
close_window: Cerrar ventana
|
@@ -433,7 +416,6 @@ es:
|
|
433
416
|
index:
|
434
417
|
new_meeting: Nuevo encuentro
|
435
418
|
meeting_minutes:
|
436
|
-
meeting_minutes: Acta del encuentro
|
437
419
|
related_information: Información relacionada
|
438
420
|
meetings:
|
439
421
|
no_meetings_warning: No hay encuentros que coincidan con tu búsqueda o no hay ningún encuentro programado.
|
@@ -452,9 +434,11 @@ es:
|
|
452
434
|
contributions: Número de aportaciones
|
453
435
|
date: Fecha
|
454
436
|
edit_meeting: Editar el encuentro
|
455
|
-
going:
|
437
|
+
going: Te has inscrito en este encuentro
|
456
438
|
join: Inscríbete al encuentro
|
457
|
-
|
439
|
+
leave: Cancela tu inscripción
|
440
|
+
leave_confirmation: '¿Seguro que quieres cancelar tu inscripción para este encuentro?'
|
441
|
+
meeting_minutes: Acta del encuentro
|
458
442
|
no_slots_available: No hay plazas disponibles
|
459
443
|
organizations: Organizaciones que han asistido
|
460
444
|
registration_code_help_text: Tu código de inscripción
|
@@ -537,6 +521,8 @@ es:
|
|
537
521
|
proposals_from_meeting:
|
538
522
|
meeting_proposal: 'Propuestas relacionadas:'
|
539
523
|
proposal_meeting: 'Encuentros relacionados:'
|
524
|
+
statistics:
|
525
|
+
meetings_count: Encuentros
|
540
526
|
devise:
|
541
527
|
mailer:
|
542
528
|
join_meeting:
|