decidim-conferences 0.26.8 → 0.27.0.rc1
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/conferences/content_blocks/highlighted_conferences/show.erb +2 -2
- data/app/cells/decidim/conferences/content_blocks/highlighted_conferences_cell.rb +4 -5
- data/app/commands/decidim/conferences/admin/confirm_conference_registration.rb +3 -3
- data/app/commands/decidim/conferences/admin/copy_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/create_conference_speaker.rb +8 -8
- data/app/commands/decidim/conferences/admin/create_media_link.rb +6 -6
- data/app/commands/decidim/conferences/admin/create_partner.rb +8 -8
- data/app/commands/decidim/conferences/admin/create_registration_type.rb +6 -6
- data/app/commands/decidim/conferences/admin/destroy_conference_admin.rb +1 -6
- data/app/commands/decidim/conferences/admin/destroy_conference_speaker.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_media_link.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_partner.rb +1 -1
- data/app/commands/decidim/conferences/admin/destroy_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/export_conference_registrations.rb +1 -1
- data/app/commands/decidim/conferences/admin/invite_user_to_join_conference.rb +10 -12
- data/app/commands/decidim/conferences/admin/notify_role_assigned_to_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/publish_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/publish_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/send_conference_diplomas.rb +1 -1
- data/app/commands/decidim/conferences/admin/unpublish_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/unpublish_registration_type.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference.rb +1 -1
- data/app/commands/decidim/conferences/admin/update_conference_speaker.rb +8 -8
- data/app/commands/decidim/conferences/admin/update_diploma.rb +3 -3
- data/app/commands/decidim/conferences/admin/update_media_link.rb +6 -6
- data/app/commands/decidim/conferences/admin/update_partner.rb +6 -6
- data/app/commands/decidim/conferences/admin/update_registration_type.rb +6 -6
- data/app/commands/decidim/conferences/decline_invitation.rb +1 -1
- data/app/commands/decidim/conferences/join_conference.rb +1 -8
- data/app/commands/decidim/conferences/leave_conference.rb +4 -4
- data/app/controllers/decidim/conferences/admin/conference_invites_controller.rb +12 -8
- data/app/controllers/decidim/conferences/admin/conference_registrations_controller.rb +10 -8
- data/app/controllers/decidim/conferences/admin/conference_speakers_controller.rb +11 -17
- data/app/controllers/decidim/conferences/admin/media_links_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/partners_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_type_publications_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/registration_types_controller.rb +1 -1
- data/app/controllers/decidim/conferences/admin/reminders_controller.rb +14 -0
- data/app/controllers/decidim/conferences/conference_program_controller.rb +2 -2
- data/app/controllers/decidim/conferences/conference_registrations_controller.rb +1 -18
- data/app/events/decidim/conferences/conference_registration_notification_event.rb +1 -1
- data/app/events/decidim/conferences/conference_role_assigned_event.rb +1 -1
- data/app/forms/decidim/conferences/admin/conference_registration_invite_form.rb +1 -1
- data/app/helpers/decidim/conferences/admin/conference_speakers_helper.rb +14 -0
- data/app/mailers/decidim/conferences/admin/send_conference_diploma_mailer.rb +2 -2
- data/app/models/decidim/conference.rb +2 -3
- data/app/models/decidim/conferences/conference_invite.rb +2 -2
- data/app/models/decidim/conferences/conference_registration.rb +2 -2
- data/app/permissions/decidim/conferences/permissions.rb +0 -1
- data/app/presenters/decidim/conference_speaker_presenter.rb +3 -5
- data/app/presenters/decidim/conferences/conference_stats_presenter.rb +4 -1
- data/app/queries/decidim/conferences/admin/admin_users.rb +1 -1
- data/app/queries/decidim/conferences/admin/conference_invites.rb +1 -1
- data/app/queries/decidim/conferences/admin/conference_speakers.rb +1 -1
- data/app/queries/decidim/conferences/conference_program_meetings.rb +2 -2
- data/app/queries/decidim/conferences/conference_program_meetings_by_day.rb +3 -3
- data/app/queries/decidim/conferences/conferences_with_user_role.rb +1 -1
- data/app/queries/decidim/conferences/organization_conferences.rb +1 -1
- data/app/queries/decidim/conferences/organization_prioritized_conferences.rb +3 -3
- data/app/queries/decidim/conferences/organization_published_conferences.rb +3 -3
- data/app/queries/decidim/conferences/prioritized_conferences.rb +1 -1
- data/app/queries/decidim/conferences/promoted_conferences.rb +1 -1
- data/app/queries/decidim/conferences/published_conferences.rb +1 -1
- data/app/queries/decidim/conferences/visible_conferences.rb +1 -1
- data/app/serializers/decidim/conferences/{data_portability_conference_invite_serializer.rb → download_your_data_conference_invite_serializer.rb} +2 -2
- data/app/serializers/decidim/conferences/{data_portability_conference_registration_serializer.rb → download_your_data_conference_registration_serializer.rb} +2 -2
- data/app/views/decidim/conferences/admin/conference_copies/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_invites/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_invites/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_registrations/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_speakers/edit.html.erb +1 -2
- data/app/views/decidim/conferences/admin/conference_speakers/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_speakers/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conference_user_roles/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conferences/_form.html.erb +3 -3
- data/app/views/decidim/conferences/admin/conferences/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conferences/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/conferences/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/diplomas/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/invite_join_conference_mailer/invite.html.erb +3 -3
- data/app/views/decidim/conferences/admin/media_links/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/media_links/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/media_links/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/partners/_form.html.erb +2 -1
- data/app/views/decidim/conferences/admin/partners/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/partners/index.html.erb +3 -2
- data/app/views/decidim/conferences/admin/partners/new.html.erb +0 -1
- data/app/views/decidim/conferences/admin/registration_types/edit.html.erb +0 -1
- data/app/views/decidim/conferences/admin/registration_types/index.html.erb +0 -1
- data/app/views/decidim/conferences/admin/registration_types/new.html.erb +0 -1
- data/app/views/decidim/conferences/conferences/_promoted_conference.html.erb +1 -1
- data/app/views/decidim/conferences/conferences/show.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.html.erb +2 -2
- data/app/views/devise/mailer/join_conference.text.erb +2 -2
- data/app/views/layouts/decidim/_conference_hero.html.erb +1 -1
- data/app/views/layouts/decidim/_conferences_nav.html.erb +1 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +9 -2
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +8 -11
- data/config/locales/cs.yml +18 -21
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +7 -10
- data/config/locales/el.yml +8 -13
- data/config/locales/en.yml +7 -11
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +9 -12
- data/config/locales/es-PY.yml +10 -13
- data/config/locales/es.yml +9 -12
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +40 -39
- data/config/locales/fi-plain.yml +8 -11
- data/config/locales/fi.yml +10 -13
- data/config/locales/fr-CA.yml +4 -7
- data/config/locales/fr.yml +6 -9
- data/config/locales/ga-IE.yml +4 -0
- data/config/locales/gl.yml +9 -1
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +9 -65
- data/config/locales/id-ID.yml +12 -1
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +11 -3
- data/config/locales/ja.yml +5 -8
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +7 -2
- data/config/locales/lt.yml +1 -616
- data/config/locales/lv.yml +12 -1
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +13 -5
- data/config/locales/no.yml +10 -2
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +9 -2
- data/config/locales/pt-BR.yml +11 -3
- data/config/locales/pt.yml +9 -1
- data/config/locales/ro-RO.yml +10 -14
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +12 -1
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +9 -7
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +14 -4
- data/config/locales/uk.yml +1 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +12 -1
- data/config/locales/zh-TW.yml +1 -611
- data/lib/decidim/conferences/admin_engine.rb +1 -0
- data/lib/decidim/conferences/participatory_space.rb +8 -8
- data/lib/decidim/conferences/test/factories.rb +1 -5
- data/lib/decidim/conferences/version.rb +1 -1
- metadata +18 -23
- data/config/environment.rb +0 -0
- data/config/locales/fa-IR.yml +0 -1
- data/config/locales/gn-PY.yml +0 -1
- data/config/locales/ka-GE.yml +0 -1
- data/config/locales/kaa.yml +0 -20
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -1
data/config/locales/el.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
el:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ el:
|
|
28
29
|
show_statistics: Εμφάνιση στατιστικών
|
29
30
|
sign_date: Ημερομηνία υπογραφής
|
30
31
|
signature: Υπογραφή
|
31
|
-
signature_name:
|
32
|
+
signature_name: όνομα υπογραφής
|
32
33
|
slogan: Σύνθημα
|
33
34
|
slug: Slug διεύθυνσης URL
|
34
35
|
start_date: Ημερομηνία έναρξης
|
@@ -37,15 +38,14 @@ el:
|
|
37
38
|
date: Ημερομηνία
|
38
39
|
link: Σύνδεσμος
|
39
40
|
title: Τίτλος
|
40
|
-
weight:
|
41
|
+
weight: Βάρος
|
41
42
|
conference_partner:
|
42
43
|
link: Σύνδεσμος
|
43
44
|
logo: Λογότυπο
|
44
45
|
name: Όνομα
|
45
46
|
partner_type: Τύπος εταίρου
|
46
|
-
weight:
|
47
|
+
weight: Βάρος
|
47
48
|
conference_registration_invite:
|
48
|
-
email: Email
|
49
49
|
name: Όνομα
|
50
50
|
registration_type_id: Τύπος εγγραφής
|
51
51
|
user_id: Χρήστης
|
@@ -53,15 +53,13 @@ el:
|
|
53
53
|
description: Περιγραφή
|
54
54
|
price: Τιμή
|
55
55
|
title: Τίτλος
|
56
|
-
weight:
|
56
|
+
weight: Βάρος
|
57
57
|
conference_speaker:
|
58
58
|
affiliation: Δεσμός
|
59
59
|
avatar: Εικόνα Χρήστη
|
60
60
|
conference_meeting_ids: Σχετικές συναντήσεις
|
61
61
|
full_name: Ονοματεπώνυμο
|
62
|
-
personal_url: Προσωπικό URL
|
63
62
|
position: Θέση
|
64
|
-
short_bio: Σύντομο βιογραφικό
|
65
63
|
twitter_handle: Ψευδώνυμο Twitter
|
66
64
|
user_id: Χρήστης
|
67
65
|
conference_user_role:
|
@@ -134,7 +132,7 @@ el:
|
|
134
132
|
title: Ενημέρωση διαχειριστή διάσκεψης.
|
135
133
|
update: Ενημέρωση
|
136
134
|
index:
|
137
|
-
conference_admins_title:
|
135
|
+
conference_admins_title: διαχειριστές διάσκεψης
|
138
136
|
new:
|
139
137
|
create: Δημιουργία
|
140
138
|
title: Νέος διαχειριστής διάσκεψης.
|
@@ -312,7 +310,6 @@ el:
|
|
312
310
|
update: "Ο χρήστης %{user_name} ενημέρωσε τον εταίρο %{resource_name} στη διάσκεψη %{space_name}"
|
313
311
|
registration_type:
|
314
312
|
create: "Ο χρήστης %{user_name} δημιούργησε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
|
315
|
-
delete: "Ο χρήστης %{user_name} αφαίρεσε τον τύπο εγγραφής %{resource_name} από τη διάσκεψη %{space_name}"
|
316
313
|
publish: "Ο χρήστης %{user_name} δημοσίευσε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
|
317
314
|
unpublish: "Ο χρήστης %{user_name} κατάργησε τη δημοσίευση του τύπου εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
|
318
315
|
update: "Ο χρήστης %{user_name} ενημέρωσε τον τύπο εγγραφής %{resource_name} στη διάσκεψη %{space_name}"
|
@@ -380,8 +377,7 @@ el:
|
|
380
377
|
invite_join_conference_mailer:
|
381
378
|
invite:
|
382
379
|
decline: Απόρριψη πρόσκλησης «%{conference_title}»
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "Ο/Η %{invited_by} σας προσκάλεσε να συμμετάσχετε σε μια διάσκεψη στο %{application}. Μπορείτε να την αποδεχτείτε μέσω του παρακάτω συνδέσμου."
|
380
|
+
invited_you_to_join_a_conference: "Ο χρήστης %{invited_by} σάς προσκάλεσε να συμμετάσχετε σε μια διάσκεψη στην εφαρμογή %{application}. Μπορείτε να την απορρίψετε ή να την αποδεχτείτε μέσω των παρακάτω συνδέσμων."
|
385
381
|
registration: Εγγραφή για τη διάσκεψη «%{conference_title}»
|
386
382
|
partners:
|
387
383
|
index:
|
@@ -432,11 +428,9 @@ el:
|
|
432
428
|
create:
|
433
429
|
invalid: Υπήρξε ένα πρόβλημα κατά τη συμμετοχή σε αυτήν τη διάσκεψη.
|
434
430
|
success: Συμμετείχατε στη διάσκεψη με επιτυχία.
|
435
|
-
unauthorized: Πρέπει να συνδεθείτε πριν εγγραφείτε στη διάσκεψη.
|
436
431
|
decline_invitation:
|
437
432
|
invalid: Υπήρξε ένα πρόβλημα κατά την απόρριψη της πρόσκλησης.
|
438
433
|
success: Απορρίψατε την πρόσκληση με επιτυχία.
|
439
|
-
unauthorized: Θα πρέπει να συνδεθείτε πριν απορρίψετε την πρόσκληση.
|
440
434
|
destroy:
|
441
435
|
invalid: Υπήρξε ένα πρόβλημα κατά την αποχώρηση από αυτήν τη διάσκεψη.
|
442
436
|
success: Αποχωρήσατε από τη διάσκεψη με επιτυχία.
|
@@ -506,6 +500,7 @@ el:
|
|
506
500
|
highlighted_conferences:
|
507
501
|
active_conferences: Ενεργές διασκέψεις
|
508
502
|
conferences_button_title: Σύνδεσμος προς τη σελίδα Διασκέψεων που εμφανίζει όλες τις διασκέψεις
|
503
|
+
see_all_conferences: Δείτε όλες τις διασκέψεις
|
509
504
|
photo:
|
510
505
|
image:
|
511
506
|
attributes:
|
data/config/locales/en.yml
CHANGED
@@ -29,7 +29,7 @@ en:
|
|
29
29
|
show_statistics: Show statistics
|
30
30
|
sign_date: Sign date
|
31
31
|
signature: Signature
|
32
|
-
signature_name:
|
32
|
+
signature_name: signature name
|
33
33
|
slogan: Slogan
|
34
34
|
slug: URL slug
|
35
35
|
start_date: Start date
|
@@ -38,13 +38,13 @@ en:
|
|
38
38
|
date: Date
|
39
39
|
link: Link
|
40
40
|
title: Title
|
41
|
-
weight:
|
41
|
+
weight: Weight
|
42
42
|
conference_partner:
|
43
43
|
link: Link
|
44
44
|
logo: Logo
|
45
45
|
name: Name
|
46
46
|
partner_type: Partner type
|
47
|
-
weight:
|
47
|
+
weight: Weight
|
48
48
|
conference_registration_invite:
|
49
49
|
email: Email
|
50
50
|
name: Name
|
@@ -54,7 +54,7 @@ en:
|
|
54
54
|
description: Description
|
55
55
|
price: Price
|
56
56
|
title: Title
|
57
|
-
weight:
|
57
|
+
weight: Weight
|
58
58
|
conference_speaker:
|
59
59
|
affiliation: Affiliation
|
60
60
|
avatar: Avatar
|
@@ -135,7 +135,7 @@ en:
|
|
135
135
|
title: Update conference admin.
|
136
136
|
update: Update
|
137
137
|
index:
|
138
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: conference admins
|
139
139
|
new:
|
140
140
|
create: Create
|
141
141
|
title: New conference admin.
|
@@ -313,7 +313,6 @@ en:
|
|
313
313
|
update: "%{user_name} updated the partner %{resource_name} in the %{space_name} conference"
|
314
314
|
registration_type:
|
315
315
|
create: "%{user_name} created the %{resource_name} registration type in the %{space_name} conference"
|
316
|
-
delete: "%{user_name} removed the %{resource_name} registration type from the %{space_name} conference"
|
317
316
|
publish: "%{user_name} published the %{resource_name} registration type in the %{space_name} conference"
|
318
317
|
unpublish: "%{user_name} unpublished the %{resource_name} registration type in the %{space_name} conference"
|
319
318
|
update: "%{user_name} updated the %{resource_name} registration type in the %{space_name} conference"
|
@@ -353,7 +352,7 @@ en:
|
|
353
352
|
invites: Invites
|
354
353
|
search: Search
|
355
354
|
new:
|
356
|
-
explanation: The participant will be invited to join a conference. If
|
355
|
+
explanation: The participant will be invited to join a conference. If their email is not registered, they'll be invited to the organization as well.
|
357
356
|
invite: Invite
|
358
357
|
new_invite: Invite participant
|
359
358
|
conference_registrations:
|
@@ -381,8 +380,7 @@ en:
|
|
381
380
|
invite_join_conference_mailer:
|
382
381
|
invite:
|
383
382
|
decline: Decline invitation '%{conference_title}'
|
384
|
-
|
385
|
-
invited_user_to_join_a_conference: "%{invited_by} has invited you to join a conference at %{application}. You can accept it through the link below."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} has invited you to join a conference at %{application}. You can decline or accept it through the links below."
|
386
384
|
registration: Registration for '%{conference_title}'
|
387
385
|
partners:
|
388
386
|
index:
|
@@ -433,11 +431,9 @@ en:
|
|
433
431
|
create:
|
434
432
|
invalid: There was a problem joining this conference.
|
435
433
|
success: You have successfully joined the conference.
|
436
|
-
unauthorized: You need to sign in before registering to the conference.
|
437
434
|
decline_invitation:
|
438
435
|
invalid: There was a problem declining the invitation.
|
439
436
|
success: You have successfully declined the invitation.
|
440
|
-
unauthorized: You need to sign in before declining the invitation.
|
441
437
|
destroy:
|
442
438
|
invalid: There was a problem leaving this conference.
|
443
439
|
success: You have successfully left the conference.
|
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-MX:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ es-MX:
|
|
28
29
|
show_statistics: Mostrar estadísticas
|
29
30
|
sign_date: Fecha de firma
|
30
31
|
signature: Firma
|
31
|
-
signature_name:
|
32
|
+
signature_name: nombre de firma
|
32
33
|
slogan: Eslogan
|
33
34
|
slug: URL amigable
|
34
35
|
start_date: Fecha de inicio
|
@@ -37,13 +38,13 @@ es-MX:
|
|
37
38
|
date: Fecha
|
38
39
|
link: Enlace
|
39
40
|
title: Título
|
40
|
-
weight:
|
41
|
+
weight: Peso
|
41
42
|
conference_partner:
|
42
43
|
link: Enlace
|
43
44
|
logo: Logo
|
44
45
|
name: Nombre
|
45
46
|
partner_type: Tipo de colaboración
|
46
|
-
weight:
|
47
|
+
weight: Peso
|
47
48
|
conference_registration_invite:
|
48
49
|
email: Correo electrónico
|
49
50
|
name: Nombre
|
@@ -53,7 +54,7 @@ es-MX:
|
|
53
54
|
description: Descripción
|
54
55
|
price: Coste
|
55
56
|
title: Título
|
56
|
-
weight:
|
57
|
+
weight: Peso
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Afiliación
|
59
60
|
avatar: Avatar
|
@@ -134,7 +135,7 @@ es-MX:
|
|
134
135
|
title: Actualizar usuario de la conferencia.
|
135
136
|
update: Actualizar
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: usuarios de la conferencia
|
138
139
|
new:
|
139
140
|
create: Crear
|
140
141
|
title: Nuevo usuario de la conferencia.
|
@@ -312,7 +313,6 @@ es-MX:
|
|
312
313
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
315
|
-
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
316
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
317
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
318
318
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -380,8 +380,7 @@ es-MX:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Rechazar invitación a '%{conference_title}'
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarla a través del siguiente enlace."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} te ha invitado a unirte a una conferencia en %{application}. Puedes declinarla o aceptarla a través de los siguientes enlaces."
|
385
384
|
registration: Inscripción para '%{conference_title}'
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -413,7 +412,7 @@ es-MX:
|
|
413
412
|
conference_program:
|
414
413
|
program_meeting:
|
415
414
|
content: Contenido
|
416
|
-
location:
|
415
|
+
location: Ubicación
|
417
416
|
speakers: Ponentes
|
418
417
|
streaming: Retransmisión
|
419
418
|
show:
|
@@ -432,11 +431,9 @@ es-MX:
|
|
432
431
|
create:
|
433
432
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
434
433
|
success: Te has unido a la conferencia con éxito.
|
435
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Ha habido un problema al rechazar la invitación.
|
438
436
|
success: Has rechazado la invitación con éxito.
|
439
|
-
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
440
437
|
destroy:
|
441
438
|
invalid: Ha habido un problema al abandonar esta conferencia.
|
442
439
|
success: Has abandonado la conferencia con éxito.
|
@@ -506,7 +503,7 @@ es-MX:
|
|
506
503
|
highlighted_conferences:
|
507
504
|
active_conferences: Conferencias activas
|
508
505
|
conferences_button_title: Enlace a la página de Jornadas que muestra todas las jornadas
|
509
|
-
see_all_conferences: Ver todas las
|
506
|
+
see_all_conferences: Ver todas las conferencias
|
510
507
|
photo:
|
511
508
|
image:
|
512
509
|
attributes:
|
data/config/locales/es-PY.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-PY:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ es-PY:
|
|
28
29
|
show_statistics: Mostrar estadísticas
|
29
30
|
sign_date: Fecha de firma
|
30
31
|
signature: Firma
|
31
|
-
signature_name:
|
32
|
+
signature_name: nombre de firma
|
32
33
|
slogan: Eslogan
|
33
34
|
slug: URL amigable
|
34
35
|
start_date: Fecha de inicio
|
@@ -37,13 +38,13 @@ es-PY:
|
|
37
38
|
date: Fecha
|
38
39
|
link: Enlace
|
39
40
|
title: Título
|
40
|
-
weight:
|
41
|
+
weight: Peso
|
41
42
|
conference_partner:
|
42
43
|
link: Enlace
|
43
44
|
logo: Logo
|
44
45
|
name: Nombre
|
45
46
|
partner_type: Tipo de colaboración
|
46
|
-
weight:
|
47
|
+
weight: Peso
|
47
48
|
conference_registration_invite:
|
48
49
|
email: Correo electrónico
|
49
50
|
name: Nombre
|
@@ -53,7 +54,7 @@ es-PY:
|
|
53
54
|
description: Descripción
|
54
55
|
price: Coste
|
55
56
|
title: Título
|
56
|
-
weight:
|
57
|
+
weight: Peso
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Afiliación
|
59
60
|
avatar: Avatar
|
@@ -134,7 +135,7 @@ es-PY:
|
|
134
135
|
title: Actualizar el usuario de la conferencia.
|
135
136
|
update: Actualizar
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: usuarios de la conferencia
|
138
139
|
new:
|
139
140
|
create: Crear
|
140
141
|
title: Nuevo usuario de la conferencia.
|
@@ -312,7 +313,6 @@ es-PY:
|
|
312
313
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
315
|
-
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
316
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
317
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
318
318
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
@@ -380,8 +380,7 @@ es-PY:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Rechazar invitación '%{conference_title}'
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarla a través del siguiente enlace."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} ha invitado a unirse a una conferencia en %{application}. Puede rechazarlo o aceptarlo a través de los enlaces a continuación."
|
385
384
|
registration: Registro para '%{conference_title}'
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -413,7 +412,7 @@ es-PY:
|
|
413
412
|
conference_program:
|
414
413
|
program_meeting:
|
415
414
|
content: Contenido
|
416
|
-
location:
|
415
|
+
location: Ubicación
|
417
416
|
speakers: Ponentes
|
418
417
|
streaming: Transmisión
|
419
418
|
show:
|
@@ -432,11 +431,9 @@ es-PY:
|
|
432
431
|
create:
|
433
432
|
invalid: Ha habido un problema al unirse a esta conferencia.
|
434
433
|
success: Te has unido a la conferencia con éxito.
|
435
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Ha habido un problema al rechazar la invitación.
|
438
436
|
success: Has rechazado la invitación con éxito.
|
439
|
-
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
440
437
|
destroy:
|
441
438
|
invalid: Ha habido un problema al abandonar esta conferencia.
|
442
439
|
success: Usted ha abandonado la conferencia con éxito.
|
@@ -454,7 +451,7 @@ es-PY:
|
|
454
451
|
go_to_twitter: Ir a twitter
|
455
452
|
conference_speakers:
|
456
453
|
index:
|
457
|
-
speakers:
|
454
|
+
speakers: Altavoces
|
458
455
|
conferences:
|
459
456
|
partners:
|
460
457
|
collaborators: Fogonadura
|
@@ -506,7 +503,7 @@ es-PY:
|
|
506
503
|
highlighted_conferences:
|
507
504
|
active_conferences: Conferencias activas
|
508
505
|
conferences_button_title: Enlace a la página de Jornadas que muestra todas las jornadas
|
509
|
-
see_all_conferences: Ver todas las
|
506
|
+
see_all_conferences: Ver todas las conferencias
|
510
507
|
photo:
|
511
508
|
image:
|
512
509
|
attributes:
|
data/config/locales/es.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ es:
|
|
28
29
|
show_statistics: Mostrar estadísticas
|
29
30
|
sign_date: Fecha de firma
|
30
31
|
signature: Firma
|
31
|
-
signature_name:
|
32
|
+
signature_name: nombre de firma
|
32
33
|
slogan: Eslogan
|
33
34
|
slug: URL amigable
|
34
35
|
start_date: Fecha de inicio
|
@@ -37,13 +38,13 @@ es:
|
|
37
38
|
date: Fecha
|
38
39
|
link: Enlace
|
39
40
|
title: Título
|
40
|
-
weight:
|
41
|
+
weight: Peso
|
41
42
|
conference_partner:
|
42
43
|
link: Enlace
|
43
44
|
logo: Logo
|
44
45
|
name: Nombre
|
45
46
|
partner_type: Tipo de colaboración
|
46
|
-
weight:
|
47
|
+
weight: Peso
|
47
48
|
conference_registration_invite:
|
48
49
|
email: Correo electrónico
|
49
50
|
name: Nombre
|
@@ -53,7 +54,7 @@ es:
|
|
53
54
|
description: Descripción
|
54
55
|
price: Coste
|
55
56
|
title: Título
|
56
|
-
weight:
|
57
|
+
weight: Peso
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Afiliación
|
59
60
|
avatar: Avatar
|
@@ -134,7 +135,7 @@ es:
|
|
134
135
|
title: Actualizar administradora de la jornada.
|
135
136
|
update: Actualizar
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: administradoras de la jornada
|
138
139
|
new:
|
139
140
|
create: Crear
|
140
141
|
title: Nueva administradora de la jornada.
|
@@ -312,7 +313,6 @@ es:
|
|
312
313
|
update: "%{user_name} actualizó la colaboradora %{resource_name} de la jornada %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} ha creado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
315
|
-
delete: "%{user_name} ha eliminado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
316
316
|
publish: "%{user_name} ha publicado el tipo de inscripción %{resource_name} en la conferencia %{space_name}"
|
317
317
|
unpublish: "%{user_name} ha despublicado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
318
318
|
update: "%{user_name} ha actualizado el tipo de inscripción %{resource_name} en la jornada %{space_name}"
|
@@ -352,7 +352,7 @@ es:
|
|
352
352
|
invites: Invita
|
353
353
|
search: Buscar
|
354
354
|
new:
|
355
|
-
explanation: La participante será invitada a unirse a
|
355
|
+
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.
|
356
356
|
invite: Invitar
|
357
357
|
new_invite: Invitar participante
|
358
358
|
conference_registrations:
|
@@ -380,8 +380,7 @@ es:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Rechazar invitación a '%{conference_title}'
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} te ha invitado a unirte a un encuentro en %{application}. Puedes aceptarla a través del siguiente enlace."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} te ha invitado a unirte a una conferencia en %{application}. Puedes declinar o aceptar a través de los siguientes enlaces."
|
385
384
|
registration: Inscripción para '%{conference_title}'
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -413,7 +412,7 @@ es:
|
|
413
412
|
conference_program:
|
414
413
|
program_meeting:
|
415
414
|
content: Contenido
|
416
|
-
location:
|
415
|
+
location: Ubicación
|
417
416
|
speakers: Ponentes
|
418
417
|
streaming: Streaming
|
419
418
|
show:
|
@@ -432,11 +431,9 @@ es:
|
|
432
431
|
create:
|
433
432
|
invalid: Se ha producido un error al inscribirte a esta jornada.
|
434
433
|
success: Te has inscrito a la jornada correctamente.
|
435
|
-
unauthorized: Necesitas iniciar tu sesión antes de registrarse en la jornada.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Se ha producido un error al declinar la invitación.
|
438
436
|
success: Has declinado la invitación correctamente.
|
439
|
-
unauthorized: Necesitas iniciar tu sesión antes de rechazar la invitación.
|
440
437
|
destroy:
|
441
438
|
invalid: Se ha producido un error al abandonar esta jornada.
|
442
439
|
success: Has abandonado la jornada correctamente.
|
data/config/locales/et.yml
CHANGED
data/config/locales/eu.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
eu:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -9,41 +10,41 @@ eu:
|
|
9
10
|
copy_categories: Kopiatu kategoriak
|
10
11
|
copy_components: Kopiatu osagaiak
|
11
12
|
copy_features: Kopiatu ezaugarriak
|
12
|
-
decidim_scope_id:
|
13
|
-
description:
|
13
|
+
decidim_scope_id: esparrua
|
14
|
+
description: deskribapena
|
14
15
|
end_date: Amaiera-data
|
15
|
-
hashtag:
|
16
|
-
hero_image:
|
16
|
+
hashtag: hashtag
|
17
|
+
hero_image: Hasiera irudia
|
17
18
|
location: Kokapena
|
18
19
|
main_logo: Logo nagusia
|
19
20
|
objectives: Helburuak
|
20
|
-
participatory_processes_ids:
|
21
|
-
promoted:
|
22
|
-
published_at:
|
23
|
-
registration_terms:
|
24
|
-
registrations_enabled:
|
25
|
-
scope_id:
|
26
|
-
scopes_enabled:
|
21
|
+
participatory_processes_ids: Parte hartutako prozesu erlazionatuak
|
22
|
+
promoted: sustatuta
|
23
|
+
published_at: Argitaratu at
|
24
|
+
registration_terms: Izen-ematearen irizpideak eta baldintzak
|
25
|
+
registrations_enabled: Gaitu izen-emateak
|
26
|
+
scope_id: esparrua
|
27
|
+
scopes_enabled: Scopes gaituta
|
27
28
|
short_description: Deskribapen laburra
|
28
29
|
show_statistics: Erakutsi estatistikak
|
29
30
|
sign_date: Sinatze-data
|
30
31
|
signature: Sinadura
|
31
|
-
signature_name:
|
32
|
+
signature_name: sinaduraren izena
|
32
33
|
slogan: Leloa
|
33
34
|
slug: URL laburra
|
34
35
|
start_date: Hasiera-data
|
35
36
|
title: Izenburua
|
36
37
|
conference_media_link:
|
37
38
|
date: Data
|
38
|
-
link:
|
39
|
+
link: Lotura
|
39
40
|
title: Izenburua
|
40
|
-
weight:
|
41
|
+
weight: Pisua
|
41
42
|
conference_partner:
|
42
|
-
link:
|
43
|
+
link: Lotura
|
43
44
|
logo: Logoa
|
44
45
|
name: Izena
|
45
46
|
partner_type: Lankidetza mota
|
46
|
-
weight:
|
47
|
+
weight: Pisua
|
47
48
|
conference_registration_invite:
|
48
49
|
email: Helbide elektronikoa
|
49
50
|
name: Izena
|
@@ -53,21 +54,19 @@ eu:
|
|
53
54
|
description: Deskribapena
|
54
55
|
price: Prezioa
|
55
56
|
title: Izenburua
|
56
|
-
weight:
|
57
|
+
weight: Pisua
|
57
58
|
conference_speaker:
|
58
|
-
affiliation:
|
59
|
-
avatar:
|
59
|
+
affiliation: Kidetza
|
60
|
+
avatar: Avatarra
|
60
61
|
conference_meeting_ids: Honekin lotutako topaketak
|
61
|
-
full_name:
|
62
|
-
|
63
|
-
position: Lekua
|
64
|
-
short_bio: Biografia laburra
|
62
|
+
full_name: Izen osoa
|
63
|
+
position: Kokapena
|
65
64
|
twitter_handle: Twitter kontua
|
66
65
|
user_id: Erabiltzailea
|
67
66
|
conference_user_role:
|
68
|
-
email:
|
69
|
-
name:
|
70
|
-
role:
|
67
|
+
email: Emaila
|
68
|
+
name: izena
|
69
|
+
role: Role
|
71
70
|
errors:
|
72
71
|
models:
|
73
72
|
conference_registration_invite:
|
@@ -77,23 +76,23 @@ eu:
|
|
77
76
|
activerecord:
|
78
77
|
models:
|
79
78
|
decidim/conference:
|
80
|
-
one:
|
81
|
-
other:
|
79
|
+
one: Konferentzia
|
80
|
+
other: Jardunaldiak
|
82
81
|
decidim/conference_speaker:
|
83
|
-
one:
|
84
|
-
other:
|
82
|
+
one: Hitzaldi hizlaria
|
83
|
+
other: Hitzaldi hiztunak
|
85
84
|
decidim/conference_user_role:
|
86
|
-
one:
|
87
|
-
other:
|
85
|
+
one: Konferentzia erabiltzailearen rola
|
86
|
+
other: Konferentzia erabiltzailearen rola
|
88
87
|
decidim:
|
89
88
|
admin:
|
90
89
|
actions:
|
91
90
|
confirm: Berretsi
|
92
|
-
new_conference:
|
93
|
-
send_diplomas:
|
91
|
+
new_conference: Konferentzia berria
|
92
|
+
send_diplomas: Eman ziurtagiriak bidaltzeko
|
94
93
|
conference_copies:
|
95
94
|
new:
|
96
|
-
copy:
|
95
|
+
copy: Copy
|
97
96
|
select: Aukeratu zein datu bikoiztu nahi dituzun
|
98
97
|
title: Bilera bikoiztua
|
99
98
|
conference_publications:
|
@@ -133,6 +132,8 @@ eu:
|
|
133
132
|
edit:
|
134
133
|
title: Eguneratu konferentzia erabiltzaileak.
|
135
134
|
update: eguneratzearen
|
135
|
+
index:
|
136
|
+
conference_admins_title: konferentzia erabiltzaileak
|
136
137
|
new:
|
137
138
|
create: Sortu
|
138
139
|
title: Konferentzia erabiltzaile berria.
|
@@ -347,7 +348,7 @@ eu:
|
|
347
348
|
filter_by: Iragazi arabera
|
348
349
|
invite_attendee: Gonbidatu parte-hartzailea
|
349
350
|
invites: Gonbidapenak
|
350
|
-
search:
|
351
|
+
search: Search
|
351
352
|
new:
|
352
353
|
explanation: Erabiltzaileari hitzaldi batean parte hartzeko gonbidapena egongo da. Posta elektronikoa ez bada erregistratuta, erakundera gonbidatuko dute.
|
353
354
|
invite: gonbidatu
|
@@ -362,7 +363,7 @@ eu:
|
|
362
363
|
select_user: Aukeratu erabiltzailea
|
363
364
|
user_type: Erabiltzaile mota
|
364
365
|
index:
|
365
|
-
search:
|
366
|
+
search: Search
|
366
367
|
conferences:
|
367
368
|
form:
|
368
369
|
available_slots_help: Utzi 0 mugak mugagabea badaude.
|
@@ -377,7 +378,7 @@ eu:
|
|
377
378
|
invite_join_conference_mailer:
|
378
379
|
invite:
|
379
380
|
decline: Baztertu gonbidapena '%{conference_title}'
|
380
|
-
|
381
|
+
invited_you_to_join_a_conference: "%{invited_by} gonbidatu zaitu hitzaldi batean %{application}. Beheko esteken bidez baztertu edo onartu dezakezu."
|
381
382
|
registration: '''%{conference_title}'' izen-ematea'
|
382
383
|
partners:
|
383
384
|
index:
|
@@ -409,7 +410,7 @@ eu:
|
|
409
410
|
conference_program:
|
410
411
|
program_meeting:
|
411
412
|
content: Edukia
|
412
|
-
location:
|
413
|
+
location: Kokalekua
|
413
414
|
speakers: Hizlariak
|
414
415
|
streaming: Streaming
|
415
416
|
show:
|