decidim-conferences 0.27.10 → 0.28.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/conferences/conference_cell.rb +9 -4
- data/app/cells/decidim/conferences/conference_dropdown_metadata_cell.rb +19 -0
- data/app/cells/decidim/conferences/conference_g_cell.rb +23 -0
- data/app/cells/decidim/conferences/conference_metadata_cell.rb +21 -0
- data/app/cells/decidim/conferences/conference_s_cell.rb +13 -0
- data/app/cells/decidim/conferences/conference_speaker/show.erb +44 -58
- data/app/cells/decidim/conferences/conference_speaker_cell.rb +4 -14
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +15 -14
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form/show.erb +3 -0
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_settings_form_cell.rb +19 -0
- data/app/cells/decidim/conferences/linked_participatory_spaces/show.erb +6 -8
- data/app/cells/decidim/conferences/linked_participatory_spaces_cell.rb +1 -10
- data/app/cells/decidim/conferences/media_link/show.erb +6 -8
- data/app/cells/decidim/conferences/partner/image.erb +3 -0
- data/app/cells/decidim/conferences/partner/show.erb +8 -8
- data/app/cells/decidim/conferences/partner/text.erb +1 -0
- data/app/cells/decidim/conferences/partner_cell.rb +4 -2
- data/app/cells/decidim/conferences/registration_type/join_conference.erb +15 -12
- data/app/cells/decidim/conferences/registration_type/registration_confirm.erb +12 -12
- data/app/cells/decidim/conferences/registration_type/show.erb +11 -14
- data/app/cells/decidim/conferences/registration_type_cell.rb +3 -3
- data/app/commands/decidim/conferences/admin/copy_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference.rb +2 -11
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_media_link.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_partner.rb +2 -2
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +2 -2
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +2 -2
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +3 -3
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +5 -5
- data/app/commands/decidim/conferences/admin/publish_conference.rb +9 -26
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +2 -11
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/decline_invitation.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +5 -5
- data/app/constraints/decidim/conferences/current_component.rb +2 -2
- data/app/constraints/decidim/conferences/current_conference.rb +2 -2
- data/app/controllers/concerns/decidim/conferences/admin/conference_context.rb +1 -1
- data/app/controllers/decidim/conferences/admin/concerns/conference_admin.rb +2 -2
- data/app/controllers/decidim/conferences/admin/conference_attachment_collections_controller.rb +6 -1
- data/app/controllers/decidim/conferences/admin/conference_attachments_controller.rb +5 -0
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +2 -1
- data/app/controllers/decidim/conferences/admin/conference_publications_controller.rb +10 -28
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/conference_user_roles_controller.rb +8 -90
- data/app/controllers/decidim/conferences/admin/conferences_controller.rb +2 -0
- data/app/controllers/decidim/conferences/admin/diplomas_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/exports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/imports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/moderations/reports_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/moderations_controller.rb +1 -1
- data/app/controllers/decidim/conferences/application_controller.rb +6 -0
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +3 -3
- data/app/controllers/decidim/conferences/conferences_controller.rb +9 -2
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +3 -13
- data/app/events/decidim/conferences/conference_registrations_enabled_event.rb +1 -1
- data/app/events/decidim/conferences/conference_registrations_over_percentage_event.rb +1 -1
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +6 -6
- data/app/forms/decidim/conferences/admin/conference_copy_form.rb +1 -1
- data/app/forms/decidim/conferences/admin/conference_form.rb +4 -15
- data/app/forms/decidim/conferences/admin/conference_user_role_form.rb +2 -17
- data/app/helpers/decidim/conferences/admin/conferences_helper.rb +0 -4
- data/app/helpers/decidim/conferences/conference_helper.rb +55 -0
- data/app/helpers/decidim/conferences/conference_program_helper.rb +1 -1
- data/app/helpers/decidim/conferences/media_attachments_helper.rb +0 -10
- data/app/helpers/decidim/conferences/partners_helper.rb +3 -1
- data/app/mailers/decidim/conferences/admin/invite_join_conference_mailer.rb +1 -1
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +1 -1
- data/app/mailers/decidim/conferences/conference_registration_mailer.rb +2 -2
- data/app/models/decidim/conference.rb +4 -4
- data/app/models/decidim/conference_user_role.rb +6 -34
- data/app/packs/entrypoints/decidim_conferences.js +5 -0
- data/app/packs/src/decidim/conferences/admin/conferences.js +6 -6
- data/app/packs/stylesheets/decidim/conferences/_conference.scss +102 -0
- data/app/packs/stylesheets/decidim/conferences/_media.scss +13 -0
- data/app/packs/stylesheets/decidim/conferences/_program.scss +43 -0
- data/app/packs/stylesheets/decidim/conferences/_registration.scss +39 -0
- data/app/packs/stylesheets/decidim/conferences/_speaker.scss +83 -0
- data/app/packs/stylesheets/decidim/conferences/conferences.scss +5 -3
- data/app/permissions/decidim/conferences/permissions.rb +2 -13
- data/app/presenters/decidim/conference_speaker_presenter.rb +1 -1
- data/app/presenters/decidim/conferences/admin_log/conference_invite_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_registration_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_speaker_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/conference_user_role_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/media_link_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/partner_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/admin_log/registration_type_presenter.rb +2 -2
- data/app/presenters/decidim/conferences/conference_stats_presenter.rb +3 -28
- data/app/queries/decidim/conferences/admin/admin_users.rb +4 -4
- data/app/queries/decidim/conferences/conferences_with_user_role.rb +2 -2
- data/app/queries/decidim/conferences/organization_conferences.rb +1 -1
- data/app/queries/decidim/conferences/organization_published_conferences.rb +1 -1
- data/app/views/decidim/conferences/admin/conference_copies/_form.html.erb +22 -28
- data/app/views/decidim/conferences/admin/conference_copies/new.html.erb +16 -5
- data/app/views/decidim/conferences/admin/conference_invites/_form.html.erb +17 -19
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +69 -74
- data/app/views/decidim/conferences/admin/conference_invites/new.html.erb +21 -17
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +45 -45
- data/app/views/decidim/conferences/admin/conference_speakers/_form.html.erb +42 -46
- data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +52 -55
- data/app/views/decidim/conferences/admin/conference_speakers/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_user_roles/_form.html.erb +14 -18
- data/app/views/decidim/conferences/admin/conference_user_roles/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +53 -56
- data/app/views/decidim/conferences/admin/conference_user_roles/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +88 -88
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +26 -12
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +55 -64
- data/app/views/decidim/conferences/admin/conferences/new.html.erb +16 -8
- data/app/views/decidim/conferences/admin/diplomas/_form.html.erb +18 -24
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +19 -5
- data/app/views/decidim/conferences/admin/media_links/_form.html.erb +15 -19
- data/app/views/decidim/conferences/admin/media_links/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +37 -40
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +18 -22
- data/app/views/decidim/conferences/admin/partners/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/partners/index.html.erb +45 -48
- data/app/views/decidim/conferences/admin/partners/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/registration_types/_form.html.erb +23 -23
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +16 -6
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +52 -56
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +16 -6
- data/app/views/decidim/conferences/admin/send_conference_diploma_mailer/diploma_user.html.erb +2 -2
- data/app/views/decidim/conferences/conference_program/_program_item.html.erb +21 -24
- data/app/views/decidim/conferences/conference_program/_program_meeting.html.erb +29 -63
- data/app/views/decidim/conferences/conference_program/show.html.erb +27 -39
- data/app/views/decidim/conferences/conference_speakers/index.html.erb +12 -6
- data/app/views/decidim/conferences/conferences/_conference_hero.html.erb +33 -0
- data/app/views/decidim/conferences/conferences/_partners.html.erb +10 -13
- data/app/views/decidim/conferences/conferences/index.html.erb +17 -7
- data/app/views/decidim/conferences/conferences/show.html.erb +84 -50
- data/app/views/decidim/conferences/media/index.html.erb +33 -19
- data/app/views/decidim/conferences/registration_types/index.html.erb +25 -17
- data/app/views/layouts/decidim/admin/conference.html.erb +12 -14
- data/app/views/layouts/decidim/admin/conferences.html.erb +13 -8
- data/app/views/layouts/decidim/conference.html.erb +7 -17
- data/app/views/layouts/decidim/conferences/_conference_nav_item.html.erb +6 -0
- data/app/views/layouts/decidim/conferences/application.html.erb +6 -0
- data/config/assets.rb +1 -1
- data/config/initializers/wicked_pdf.rb +1 -1
- data/config/locales/ar.yml +3 -64
- data/config/locales/bg.yml +0 -612
- data/config/locales/ca.yml +35 -55
- data/config/locales/cs.yml +35 -53
- data/config/locales/de.yml +34 -54
- data/config/locales/el.yml +11 -51
- data/config/locales/en.yml +34 -54
- data/config/locales/es-MX.yml +32 -52
- data/config/locales/es-PY.yml +32 -52
- data/config/locales/es.yml +32 -52
- data/config/locales/eu.yml +33 -58
- data/config/locales/fi-plain.yml +32 -52
- data/config/locales/fi.yml +32 -52
- data/config/locales/fr-CA.yml +31 -51
- data/config/locales/fr.yml +31 -51
- data/config/locales/ga-IE.yml +0 -17
- data/config/locales/gl.yml +3 -62
- data/config/locales/hu.yml +15 -53
- data/config/locales/id-ID.yml +3 -57
- data/config/locales/it.yml +4 -62
- data/config/locales/ja.yml +33 -54
- data/config/locales/lb.yml +1 -55
- data/config/locales/lt.yml +14 -52
- data/config/locales/lv.yml +1 -61
- data/config/locales/nl.yml +3 -62
- data/config/locales/no.yml +1 -62
- data/config/locales/pl.yml +1 -81
- data/config/locales/pt-BR.yml +1 -72
- data/config/locales/pt.yml +2 -63
- data/config/locales/ro-RO.yml +13 -50
- data/config/locales/sk.yml +1 -61
- data/config/locales/sl.yml +0 -2
- data/config/locales/sr-CS.yml +0 -9
- data/config/locales/sv.yml +22 -77
- data/config/locales/tr-TR.yml +13 -62
- data/config/locales/zh-CN.yml +3 -60
- data/config/locales/zh-TW.yml +6 -47
- data/db/migrate/20221116084952_add_weight_to_conferences.rb +7 -0
- data/lib/decidim/conferences/admin_engine.rb +14 -138
- data/lib/decidim/conferences/content_blocks/registry_manager.rb +21 -0
- data/lib/decidim/conferences/engine.rb +17 -15
- data/lib/decidim/conferences/menu.rb +182 -0
- data/lib/decidim/conferences/participatory_space.rb +6 -200
- data/lib/decidim/conferences/query_extensions.rb +2 -2
- data/lib/decidim/conferences/seeds.rb +153 -0
- data/lib/decidim/conferences/test/factories.rb +37 -73
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +47 -51
- data/app/cells/decidim/conferences/conference_address/show.erb +0 -11
- data/app/cells/decidim/conferences/conference_address_cell.rb +0 -11
- data/app/cells/decidim/conferences/conference_m/footer.erb +0 -9
- data/app/cells/decidim/conferences/conference_m/tags.erb +0 -1
- data/app/cells/decidim/conferences/conference_m_cell.rb +0 -38
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences/show.erb +0 -30
- data/app/cells/decidim/conferences/photo/show.erb +0 -26
- data/app/cells/decidim/conferences/photo_cell.rb +0 -41
- data/app/cells/decidim/conferences/photos_list/show.erb +0 -8
- data/app/cells/decidim/conferences/photos_list_cell.rb +0 -18
- data/app/commands/decidim/conferences/admin/create_conference_admin.rb +0 -114
- data/app/commands/decidim/conferences/admin/destroy_conference_admin.rb +0 -58
- data/app/commands/decidim/conferences/admin/notify_role_assigned_to_conference.rb +0 -22
- data/app/commands/decidim/conferences/admin/unpublish_conference.rb +0 -39
- data/app/commands/decidim/conferences/admin/update_conference_admin.rb +0 -53
- data/app/controllers/decidim/conferences/conference_widgets_controller.rb +0 -33
- data/app/queries/decidim/conferences/admin/conference_invites.rb +0 -60
- data/app/views/decidim/conferences/_order_by_conferences.html.erb +0 -3
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +0 -27
- data/app/views/decidim/conferences/media/_attachments.html.erb +0 -6
- data/app/views/decidim/conferences/shared/_conference_user_login.html.erb +0 -14
- data/app/views/layouts/decidim/_conference_hero.html.erb +0 -42
- data/app/views/layouts/decidim/_conferences_nav.html.erb +0 -46
- data/config/locales/he-IL.yml +0 -1
- data/db/seeds/Exampledocument.pdf +0 -0
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/db/seeds/homepage_image.jpg +0 -0
- data/db/seeds/logo.png +0 -0
- data/decidim-conferences.gemspec +0 -33
data/config/locales/en.yml
CHANGED
@@ -6,7 +6,6 @@ en:
|
|
6
6
|
assemblies_ids: Related Assemblies
|
7
7
|
available_slots: Available slots
|
8
8
|
banner_image: Banner image
|
9
|
-
consultations_ids: Related Consultations
|
10
9
|
copy_categories: Copy categories
|
11
10
|
copy_components: Copy components
|
12
11
|
copy_features: Copy features
|
@@ -34,6 +33,7 @@ en:
|
|
34
33
|
slug: URL slug
|
35
34
|
start_date: Start date
|
36
35
|
title: Title
|
36
|
+
weight: Order position
|
37
37
|
conference_media_link:
|
38
38
|
date: Date
|
39
39
|
link: Link
|
@@ -74,7 +74,7 @@ en:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited: This email has already been invited
|
77
|
+
already_invited: This email has already been invited.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -90,7 +90,12 @@ en:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirm
|
93
|
-
new_conference: New
|
93
|
+
new_conference: New conference
|
94
|
+
new_conference_user_role: New conference admin
|
95
|
+
new_media_link: New media link
|
96
|
+
new_partner: New partner
|
97
|
+
new_registration_type: New registration type
|
98
|
+
new_speaker: New speaker
|
94
99
|
send_diplomas: Send certificates of attendance
|
95
100
|
conference_copies:
|
96
101
|
new:
|
@@ -153,8 +158,8 @@ en:
|
|
153
158
|
form:
|
154
159
|
title: General Information
|
155
160
|
index:
|
156
|
-
not_published: Not published
|
157
161
|
published: Published
|
162
|
+
unpublished: Unpublished
|
158
163
|
new:
|
159
164
|
create: Create
|
160
165
|
title: Conference
|
@@ -194,18 +199,18 @@ en:
|
|
194
199
|
conference_invites: Invites
|
195
200
|
conference_speakers: Speakers
|
196
201
|
diploma: Certificate of Attendance
|
197
|
-
info:
|
202
|
+
info: About this conference
|
198
203
|
media_links: Media Links
|
199
204
|
moderations: Moderations
|
200
205
|
partners: Partners
|
201
206
|
registration_types: Registration Types
|
202
207
|
registrations: Registrations
|
208
|
+
see_conference: See conference
|
203
209
|
user_registrations: User Registrations
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Created at
|
208
|
-
promoted: Highlighted
|
209
214
|
published: Published
|
210
215
|
title: Title
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ en:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
slug_help_html: 'URL slugs are used to generate the URLs that point to this conference. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: There was a problem inviting the participant to join the conference.
|
@@ -348,12 +353,11 @@ en:
|
|
348
353
|
all: All
|
349
354
|
rejected: Rejected
|
350
355
|
sent: Sent
|
351
|
-
filter_by: Filter by
|
352
356
|
invite_attendee: Invite participant
|
353
357
|
invites: Invites
|
354
358
|
search: Search
|
355
359
|
new:
|
356
|
-
explanation: The participant will be invited to join a conference. If their email is not registered, they
|
360
|
+
explanation: The participant will be invited to join a conference. If their email is not registered, they will be invited to the organization as well.
|
357
361
|
invite: Invite
|
358
362
|
new_invite: Invite participant
|
359
363
|
conference_registrations:
|
@@ -373,7 +377,10 @@ en:
|
|
373
377
|
registrations_count:
|
374
378
|
one: There has been 1 registration.
|
375
379
|
other: There has been %{count} registrations.
|
376
|
-
|
380
|
+
slug_help_html: 'URL slugs are used to generate the URLs that point to this conference. Only accepts letters, numbers and dashes, and must start with a letter. Example: %{url}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Maximum amount of elements to show
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: Save
|
@@ -407,18 +414,11 @@ en:
|
|
407
414
|
cancel: Cancel
|
408
415
|
confirm: Confirm
|
409
416
|
show:
|
410
|
-
free: Free
|
411
417
|
going: Attending
|
412
418
|
no_slots_available: No slots available
|
413
419
|
registration: Registration
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Content
|
417
|
-
location: Location
|
418
|
-
speakers: Speakers
|
419
|
-
streaming: Streaming
|
420
421
|
show:
|
421
|
-
day: Day
|
422
422
|
program: Program
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -433,11 +433,11 @@ en:
|
|
433
433
|
create:
|
434
434
|
invalid: There was a problem joining this conference.
|
435
435
|
success: You have successfully joined the conference.
|
436
|
-
unauthorized: You need to
|
436
|
+
unauthorized: You need to log in before registering to the conference.
|
437
437
|
decline_invitation:
|
438
438
|
invalid: There was a problem declining the invitation.
|
439
439
|
success: You have successfully declined the invitation.
|
440
|
-
unauthorized: You need to
|
440
|
+
unauthorized: You need to log in before declining the invitation.
|
441
441
|
destroy:
|
442
442
|
invalid: There was a problem leaving this conference.
|
443
443
|
success: You have successfully left the conference.
|
@@ -451,19 +451,24 @@ en:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Personal website
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Go to Twitter
|
456
454
|
conference_speakers:
|
457
455
|
index:
|
458
|
-
speakers:
|
456
|
+
speakers:
|
457
|
+
one: Speaker
|
458
|
+
other: Speakers
|
459
459
|
conferences:
|
460
460
|
partners:
|
461
461
|
collaborators: Partners
|
462
462
|
main_promotors: Organizers
|
463
463
|
show:
|
464
|
+
already_have_an_account?: Already have an account?
|
465
|
+
are_you_new?: New participant?
|
464
466
|
login_as: You are logged in as %{name} <%{email}>
|
465
|
-
make_conference_registration:
|
467
|
+
make_conference_registration: Register for the conference
|
468
|
+
manage_registration: Manage registration
|
466
469
|
register: Register
|
470
|
+
sign_in_description: Log in to register to the conference
|
471
|
+
sign_up_description: Create an account to register to the conference
|
467
472
|
content_blocks:
|
468
473
|
highlighted_conferences:
|
469
474
|
name: Highlighted conferences
|
@@ -472,9 +477,9 @@ en:
|
|
472
477
|
mailer:
|
473
478
|
conference_registration_mailer:
|
474
479
|
confirmation:
|
475
|
-
subject: Your conference's registration has been confirmed
|
480
|
+
subject: Your conference's registration has been confirmed.
|
476
481
|
pending_validation:
|
477
|
-
subject: Your conference's registration is pending confirmation
|
482
|
+
subject: Your conference's registration is pending confirmation.
|
478
483
|
invite_join_conference_mailer:
|
479
484
|
invite:
|
480
485
|
subject: Invitation to join a conference
|
@@ -505,38 +510,19 @@ en:
|
|
505
510
|
pages:
|
506
511
|
home:
|
507
512
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: See all conferences
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Media picture
|
515
|
-
show:
|
516
|
-
close_modal: Close modal
|
517
|
-
photo: Image
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Images
|
513
|
+
active_spaces: Active conferences
|
514
|
+
see_all_spaces: See all conferences
|
521
515
|
registration_types:
|
522
516
|
index:
|
523
517
|
choose_an_option: 'Choose your registration option:'
|
524
|
-
login_as: You are logged in as %{name} <%{email}>
|
525
518
|
no_registrations: No registrations
|
526
519
|
register: Register
|
527
520
|
title: Registration types
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: Do you already have an account in decidim?
|
531
|
-
new_user: New user?
|
532
|
-
sign_in: Login to register for the conference
|
533
|
-
sign_up: Create an account in decidim to register for the conference
|
534
521
|
show:
|
535
522
|
details: Details
|
536
523
|
introduction: Introduction
|
537
524
|
objectives: Objectives
|
538
525
|
related_assemblies: Related assemblies
|
539
|
-
related_consultations: Related Consultations
|
540
526
|
related_participatory_processes: Related participatory processes
|
541
527
|
events:
|
542
528
|
conferences:
|
@@ -578,7 +564,7 @@ en:
|
|
578
564
|
log:
|
579
565
|
value_types:
|
580
566
|
conference_presenter:
|
581
|
-
not_found: 'The conference was not found on the database (ID: %{id})'
|
567
|
+
not_found: 'The conference was not found on the database (ID: %{id}).'
|
582
568
|
media:
|
583
569
|
index:
|
584
570
|
description: Links about this conference
|
@@ -594,10 +580,8 @@ en:
|
|
594
580
|
layouts:
|
595
581
|
decidim:
|
596
582
|
conference_hero:
|
583
|
+
manage_registration: Manage registration
|
597
584
|
register: Register
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Take part
|
601
585
|
conferences:
|
602
586
|
conference:
|
603
587
|
more_info: More info
|
@@ -608,11 +592,7 @@ en:
|
|
608
592
|
conferences:
|
609
593
|
one: "%{count} conference"
|
610
594
|
other: "%{count} conferences"
|
611
|
-
promoted_conference:
|
612
|
-
more_info: More info
|
613
|
-
take_part: Take part
|
614
595
|
conferences_nav:
|
615
|
-
conference_menu_item: Information
|
616
596
|
conference_partners_menu_item: Partners
|
617
597
|
conference_speaker_menu_item: Speakers
|
618
598
|
media: Media
|
data/config/locales/es-MX.yml
CHANGED
@@ -6,7 +6,6 @@ es-MX:
|
|
6
6
|
assemblies_ids: Asambleas relacionadas
|
7
7
|
available_slots: Plazas disponibles
|
8
8
|
banner_image: Imagen de banner
|
9
|
-
consultations_ids: Consultas relacionadas
|
10
9
|
copy_categories: Copiar categorías
|
11
10
|
copy_components: Copiar componentes
|
12
11
|
copy_features: Copiar funcionalidades
|
@@ -34,6 +33,7 @@ es-MX:
|
|
34
33
|
slug: URL amigable
|
35
34
|
start_date: Fecha de inicio
|
36
35
|
title: Título
|
36
|
+
weight: Orden de posición
|
37
37
|
conference_media_link:
|
38
38
|
date: Fecha
|
39
39
|
link: Enlace
|
@@ -74,7 +74,7 @@ es-MX:
|
|
74
74
|
conference_registration_invite:
|
75
75
|
attributes:
|
76
76
|
email:
|
77
|
-
already_invited:
|
77
|
+
already_invited: Ya se había invitado a este correo electrónico.
|
78
78
|
activerecord:
|
79
79
|
models:
|
80
80
|
decidim/conference:
|
@@ -90,7 +90,12 @@ es-MX:
|
|
90
90
|
admin:
|
91
91
|
actions:
|
92
92
|
confirm: Confirmar
|
93
|
-
new_conference:
|
93
|
+
new_conference: Añadir jornada
|
94
|
+
new_conference_user_role: Añadir administradora
|
95
|
+
new_media_link: Añadir enlace multimedia
|
96
|
+
new_partner: Añadir colaboradora
|
97
|
+
new_registration_type: Añadir tipo de registro
|
98
|
+
new_speaker: Añadir ponente
|
94
99
|
send_diplomas: Enviar certificados de asistencia.
|
95
100
|
conference_copies:
|
96
101
|
new:
|
@@ -153,8 +158,8 @@ es-MX:
|
|
153
158
|
form:
|
154
159
|
title: Información general
|
155
160
|
index:
|
156
|
-
not_published: No publicado
|
157
161
|
published: Publicado
|
162
|
+
unpublished: Despublicada
|
158
163
|
new:
|
159
164
|
create: Crear
|
160
165
|
title: Conferencia
|
@@ -194,18 +199,18 @@ es-MX:
|
|
194
199
|
conference_invites: Invita
|
195
200
|
conference_speakers: Ponentes
|
196
201
|
diploma: Certificado de asistencia
|
197
|
-
info:
|
202
|
+
info: Acerca de esta jornada
|
198
203
|
media_links: Enlaces multimedia
|
199
204
|
moderations: Moderaciones
|
200
205
|
partners: Colaboradores
|
201
206
|
registration_types: Tipos de inscripción
|
202
207
|
registrations: Inscripciones
|
208
|
+
see_conference: Ver la jornada
|
203
209
|
user_registrations: Inscripciones de usuario
|
204
210
|
models:
|
205
211
|
conference:
|
206
212
|
fields:
|
207
213
|
created_at: Creada en
|
208
|
-
promoted: Destacada
|
209
214
|
published: Publicada
|
210
215
|
title: Título
|
211
216
|
conference_speaker:
|
@@ -331,7 +336,7 @@ es-MX:
|
|
331
336
|
admin:
|
332
337
|
conference_copies:
|
333
338
|
form:
|
334
|
-
|
339
|
+
slug_help_html: 'Las URL amigables se utilizan para generar las URL que apuntan a esta conferencia. Solo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
335
340
|
conference_invites:
|
336
341
|
create:
|
337
342
|
error: Ha habido un problema al invitar al usuario a unirse a la conferencia.
|
@@ -348,12 +353,11 @@ es-MX:
|
|
348
353
|
all: Todas
|
349
354
|
rejected: Rechazada
|
350
355
|
sent: Enviada
|
351
|
-
filter_by: Filtrar por
|
352
356
|
invite_attendee: Invitar a un asistente
|
353
357
|
invites: Invitaciones
|
354
358
|
search: Buscar
|
355
359
|
new:
|
356
|
-
explanation:
|
360
|
+
explanation: La participante será invitada a unirse a la jornada. Si su correo electrónico no está registrado, también será invitada a unirse a la organización.
|
357
361
|
invite: Invitar
|
358
362
|
new_invite: Invitar a un usuario
|
359
363
|
conference_registrations:
|
@@ -373,7 +377,10 @@ es-MX:
|
|
373
377
|
registrations_count:
|
374
378
|
one: Ha habido 1 inscripción.
|
375
379
|
other: Ha habido %{count} inscripciones.
|
376
|
-
|
380
|
+
slug_help_html: 'Las URL amigables se utilizan para generar las URL que apuntan a esta conferencia. Solo acepta letras, números y guiones, y debe comenzar con una letra. Ejemplo: %{url}'
|
381
|
+
content_blocks:
|
382
|
+
highlighted_conferences:
|
383
|
+
max_results: Cantidad máxima de elementos a mostrar
|
377
384
|
diplomas:
|
378
385
|
edit:
|
379
386
|
save: Guardar
|
@@ -407,18 +414,11 @@ es-MX:
|
|
407
414
|
cancel: Cancelar
|
408
415
|
confirm: Confirmar
|
409
416
|
show:
|
410
|
-
free: Entrada libre
|
411
417
|
going: Asistiré
|
412
418
|
no_slots_available: No hay plazas disponibles
|
413
419
|
registration: Inscripción
|
414
420
|
conference_program:
|
415
|
-
program_meeting:
|
416
|
-
content: Contenido
|
417
|
-
location: Localización
|
418
|
-
speakers: Ponentes
|
419
|
-
streaming: Retransmisión
|
420
421
|
show:
|
421
|
-
day: Día
|
422
422
|
program: Programa
|
423
423
|
conference_registration_mailer:
|
424
424
|
confirmation:
|
@@ -451,19 +451,24 @@ es-MX:
|
|
451
451
|
conference_speaker_cell:
|
452
452
|
personal_url:
|
453
453
|
personal_website: Sitio web personal
|
454
|
-
twitter_handle:
|
455
|
-
go_to_twitter: Ir a twitter
|
456
454
|
conference_speakers:
|
457
455
|
index:
|
458
|
-
speakers:
|
456
|
+
speakers:
|
457
|
+
one: Ponente
|
458
|
+
other: Ponentes
|
459
459
|
conferences:
|
460
460
|
partners:
|
461
461
|
collaborators: Colaboradores
|
462
462
|
main_promotors: Organizadores
|
463
463
|
show:
|
464
|
+
already_have_an_account?: '¿Ya tienes una cuenta?'
|
465
|
+
are_you_new?: '¿Aún no eres participante?'
|
464
466
|
login_as: Has iniciado sesión como %{name} <%{email}>
|
465
|
-
make_conference_registration:
|
467
|
+
make_conference_registration: Inscríbete en la jornada
|
468
|
+
manage_registration: Gestionar inscripciones
|
466
469
|
register: Inscripciones
|
470
|
+
sign_in_description: Inicia sesión para inscribirte en la conferencia
|
471
|
+
sign_up_description: Crea una cuenta de participante para inscribirte en la jornada
|
467
472
|
content_blocks:
|
468
473
|
highlighted_conferences:
|
469
474
|
name: Conferencias destacadas
|
@@ -472,9 +477,9 @@ es-MX:
|
|
472
477
|
mailer:
|
473
478
|
conference_registration_mailer:
|
474
479
|
confirmation:
|
475
|
-
subject:
|
480
|
+
subject: Se ha confirmado tu inscripción a la jornada.
|
476
481
|
pending_validation:
|
477
|
-
subject: Tu inscripción a la
|
482
|
+
subject: Tu inscripción a la jornada está pendiente de confirmación.
|
478
483
|
invite_join_conference_mailer:
|
479
484
|
invite:
|
480
485
|
subject: Invitación para unirse a una conferencia
|
@@ -505,38 +510,19 @@ es-MX:
|
|
505
510
|
pages:
|
506
511
|
home:
|
507
512
|
highlighted_conferences:
|
508
|
-
|
509
|
-
|
510
|
-
see_all_conferences: Ver todas las conferencias
|
511
|
-
photo:
|
512
|
-
image:
|
513
|
-
attributes:
|
514
|
-
alt: Imagen multimedia
|
515
|
-
show:
|
516
|
-
close_modal: Cerrar modal
|
517
|
-
photo: Foto
|
518
|
-
photos_list:
|
519
|
-
show:
|
520
|
-
related_photos: Fotos
|
513
|
+
active_spaces: Conferencias activas
|
514
|
+
see_all_spaces: Ver todas las jornadas
|
521
515
|
registration_types:
|
522
516
|
index:
|
523
517
|
choose_an_option: 'Elige tu tipo de inscripción:'
|
524
|
-
login_as: Has iniciado sesión como %{name} <%{email}>
|
525
518
|
no_registrations: No hay inscripciones
|
526
519
|
register: Inscribirse
|
527
520
|
title: Tipos de inscripción
|
528
|
-
shared:
|
529
|
-
conference_user_login:
|
530
|
-
already_account: '¿Ya tienes una cuenta en decidim?'
|
531
|
-
new_user: '¿Eres nuevo?'
|
532
|
-
sign_in: Inicia sesión para inscribirte en la conferencia
|
533
|
-
sign_up: Crea una cuenta de usuario para inscribirte en la conferencia
|
534
521
|
show:
|
535
522
|
details: Detalles
|
536
523
|
introduction: Introducción
|
537
524
|
objectives: Objetivos
|
538
525
|
related_assemblies: Asambleas relacionadas
|
539
|
-
related_consultations: Consultas relacionadas
|
540
526
|
related_participatory_processes: Procesos participativos relacionados
|
541
527
|
events:
|
542
528
|
conferences:
|
@@ -578,7 +564,7 @@ es-MX:
|
|
578
564
|
log:
|
579
565
|
value_types:
|
580
566
|
conference_presenter:
|
581
|
-
not_found: 'La
|
567
|
+
not_found: 'La jornada no se ha encontrado en la base de datos (ID: %{id}).'
|
582
568
|
media:
|
583
569
|
index:
|
584
570
|
description: Enlaces sobre esta conferencia
|
@@ -594,10 +580,8 @@ es-MX:
|
|
594
580
|
layouts:
|
595
581
|
decidim:
|
596
582
|
conference_hero:
|
583
|
+
manage_registration: Gestionar inscripciones
|
597
584
|
register: Inscripción
|
598
|
-
conference_widgets:
|
599
|
-
show:
|
600
|
-
take_part: Participar
|
601
585
|
conferences:
|
602
586
|
conference:
|
603
587
|
more_info: Más información
|
@@ -608,11 +592,7 @@ es-MX:
|
|
608
592
|
conferences:
|
609
593
|
one: "%{count} conferencia"
|
610
594
|
other: "%{count} conferencias"
|
611
|
-
promoted_conference:
|
612
|
-
more_info: Más información
|
613
|
-
take_part: Participar
|
614
595
|
conferences_nav:
|
615
|
-
conference_menu_item: Información
|
616
596
|
conference_partners_menu_item: Colaboradores
|
617
597
|
conference_speaker_menu_item: Ponentes
|
618
598
|
media: Multimedia
|