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/fi-plain.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fi-pl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ fi-pl:
|
|
28
29
|
show_statistics: Näytä tilastot
|
29
30
|
sign_date: Allekirjoituksen päivämäärä
|
30
31
|
signature: Allekirjoitus
|
31
|
-
signature_name:
|
32
|
+
signature_name: allekirjoituksen nimi
|
32
33
|
slogan: Iskulause
|
33
34
|
slug: URL-tunniste
|
34
35
|
start_date: Alkamispäivä
|
@@ -37,13 +38,13 @@ fi-pl:
|
|
37
38
|
date: Päivämäärä
|
38
39
|
link: Linkki
|
39
40
|
title: Otsikko
|
40
|
-
weight:
|
41
|
+
weight: Painoarvo
|
41
42
|
conference_partner:
|
42
43
|
link: Linkki
|
43
44
|
logo: Logo
|
44
45
|
name: Nimi
|
45
46
|
partner_type: Kumppanin tyyppi
|
46
|
-
weight:
|
47
|
+
weight: Painoarvo
|
47
48
|
conference_registration_invite:
|
48
49
|
email: Sähköposti
|
49
50
|
name: Nimi
|
@@ -53,7 +54,7 @@ fi-pl:
|
|
53
54
|
description: Kuvaus
|
54
55
|
price: Hinta
|
55
56
|
title: Otsikko
|
56
|
-
weight:
|
57
|
+
weight: Painoarvo
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Jäsenyys
|
59
60
|
avatar: Avatar
|
@@ -134,7 +135,7 @@ fi-pl:
|
|
134
135
|
title: Päivitä konferenssin käyttäjä.
|
135
136
|
update: Päivitä
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: konferenssin käyttäjät
|
138
139
|
new:
|
139
140
|
create: Luo
|
140
141
|
title: Uusi konferenssin käyttäjä.
|
@@ -312,7 +313,6 @@ fi-pl:
|
|
312
313
|
update: "%{user_name} päivitti yhteistyökumppania %{resource_name} konferenssissa %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
315
|
-
delete: "%{user_name} poisti ilmoittautumistyypin %{resource_name} konferenssista %{space_name}"
|
316
316
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
317
317
|
unpublish: "%{user_name} lopetti ilmoittautumistyypin %{resource_name} julkaisun konferenssissa %{space_name}"
|
318
318
|
update: "%{user_name} päivitti ilmoittautumistyyppiä %{resource_name} konferenssissa %{space_name}"
|
@@ -380,8 +380,7 @@ fi-pl:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Hylkää kutsu "%{conference_title}"
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} on kutsunut sinut osallistumaan konferenssiin palvelussa %{application}. Voit hyväksyä kutsun alla esitetyn linkin kautta."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} on kutsunut sinut konferenssiin palvelussa %{application}. Voit hylätä tai hyväksyä kutsun alla olevien linkkien avulla."
|
385
384
|
registration: Ilmoittautuminen konferenssiin "%{conference_title}"
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -432,11 +431,9 @@ fi-pl:
|
|
432
431
|
create:
|
433
432
|
invalid: Konferenssiin ilmoittautumisessa tapahtui virhe.
|
434
433
|
success: Olet ilmoittautunut konferenssiin onnistuneesti.
|
435
|
-
unauthorized: Sinun täytyy kirjautua sisään hyväksyäksesi konferenssikutsun.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Kutsun hyläämisessä esiintyi ongelma.
|
438
436
|
success: Olet hylännyt kutsun onnistuneesti.
|
439
|
-
unauthorized: Sinun täytyy kirjautua sisään hylätäksesi konferenssikutsun.
|
440
437
|
destroy:
|
441
438
|
invalid: Konferenssista poistumisessa on tapahtunut virhe.
|
442
439
|
success: Olet poistunut konferenssista onnistuneeksi.
|
@@ -506,7 +503,7 @@ fi-pl:
|
|
506
503
|
highlighted_conferences:
|
507
504
|
active_conferences: Aktiiviset konferenssit
|
508
505
|
conferences_button_title: Linkki Konferenssit-sivulle, jossa näkyvät kaikki konferenssit
|
509
|
-
see_all_conferences:
|
506
|
+
see_all_conferences: Katso kaikki konferenssit
|
510
507
|
photo:
|
511
508
|
image:
|
512
509
|
attributes:
|
data/config/locales/fi.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fi:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ fi:
|
|
28
29
|
show_statistics: Näytä tilastot
|
29
30
|
sign_date: Allekirjoituksen päivämäärä
|
30
31
|
signature: Allekirjoitus
|
31
|
-
signature_name:
|
32
|
+
signature_name: allekirjoituksen nimi
|
32
33
|
slogan: Iskulause
|
33
34
|
slug: URL-tunniste
|
34
35
|
start_date: Alkamispäivä
|
@@ -37,13 +38,13 @@ fi:
|
|
37
38
|
date: Päivämäärä
|
38
39
|
link: Linkki
|
39
40
|
title: Otsikko
|
40
|
-
weight:
|
41
|
+
weight: Painoarvo
|
41
42
|
conference_partner:
|
42
43
|
link: Linkki
|
43
44
|
logo: Logo
|
44
45
|
name: Nimi
|
45
46
|
partner_type: Kumppanin tyyppi
|
46
|
-
weight:
|
47
|
+
weight: Painoarvo
|
47
48
|
conference_registration_invite:
|
48
49
|
email: Sähköposti
|
49
50
|
name: Nimi
|
@@ -53,7 +54,7 @@ fi:
|
|
53
54
|
description: Kuvaus
|
54
55
|
price: Hinta
|
55
56
|
title: Otsikko
|
56
|
-
weight:
|
57
|
+
weight: Painoarvo
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Jäsenyys
|
59
60
|
avatar: Avatar
|
@@ -134,7 +135,7 @@ fi:
|
|
134
135
|
title: Päivitä konferenssin hallintakäyttäjä.
|
135
136
|
update: Päivitä
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: konferenssin hallintakäyttäjät
|
138
139
|
new:
|
139
140
|
create: Luo
|
140
141
|
title: Uusi konferenssin hallintakäyttäjä.
|
@@ -220,7 +221,7 @@ fi:
|
|
220
221
|
role: Rooli
|
221
222
|
name: Konferenssin hallintakäyttäjä
|
222
223
|
roles:
|
223
|
-
admin:
|
224
|
+
admin: Hallinnointikäyttäjä
|
224
225
|
collaborator: Työryhmän jäsen
|
225
226
|
moderator: Moderoija
|
226
227
|
valuator: Arvioija
|
@@ -312,7 +313,6 @@ fi:
|
|
312
313
|
update: "%{user_name} päivitti yhteistyökumppania %{resource_name} konferenssissa %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} loi ilmoittautumistyypin %{resource_name} konferenssiin %{space_name}"
|
315
|
-
delete: "%{user_name} poisti ilmoittautumistyypin %{resource_name} konferenssista %{space_name}"
|
316
316
|
publish: "%{user_name} julkaisi ilmoittautumistyypin %{resource_name} konferenssissa %{space_name}"
|
317
317
|
unpublish: "%{user_name} lopetti ilmoittautumistyypin %{resource_name} julkaisun konferenssissa %{space_name}"
|
318
318
|
update: "%{user_name} päivitti ilmoittautumistyyppiä %{resource_name} konferenssissa %{space_name}"
|
@@ -352,7 +352,7 @@ fi:
|
|
352
352
|
invites: Kutsut
|
353
353
|
search: Hae
|
354
354
|
new:
|
355
|
-
explanation: Käyttäjä kutsutaan mukaan konferenssiin. Jos
|
355
|
+
explanation: Käyttäjä kutsutaan mukaan konferenssiin. Jos sähköpostiosoitteella ei ole käyttäjätiliä, käyttäjä kutsutaan myös organisaatioon.
|
356
356
|
invite: Kutsu
|
357
357
|
new_invite: Kutsu käyttäjä
|
358
358
|
conference_registrations:
|
@@ -380,8 +380,7 @@ fi:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Hylkää kutsu "%{conference_title}"
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} on kutsunut sinut osallistumaan konferenssiin palvelussa %{application}. Voit hyväksyä kutsun alla esitetyn linkin kautta."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} on kutsunut sinut konferenssiin palvelussa %{application}. Voit hylätä tai hyväksyä kutsun alla olevien linkkien avulla."
|
385
384
|
registration: Ilmoittautuminen konferenssiin "%{conference_title}"
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -432,11 +431,9 @@ fi:
|
|
432
431
|
create:
|
433
432
|
invalid: Konferenssiin ilmoittautuminen epäonnistui.
|
434
433
|
success: Ilmoittautuminen konferenssiin onnistui.
|
435
|
-
unauthorized: Sinun täytyy kirjautua sisään hyväksyäksesi konferenssikutsun.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Kutsun hylkääminen epäonnistui.
|
438
436
|
success: Kutsun hylkääminen onnistui.
|
439
|
-
unauthorized: Sinun täytyy kirjautua sisään hylätäksesi konferenssikutsun.
|
440
437
|
destroy:
|
441
438
|
invalid: Konferenssista poistuminen epäonnistui.
|
442
439
|
success: Konferenssista poistuminen onnistui.
|
@@ -506,7 +503,7 @@ fi:
|
|
506
503
|
highlighted_conferences:
|
507
504
|
active_conferences: Aktiiviset konferenssit
|
508
505
|
conferences_button_title: Linkki Konferenssit-sivulle, jossa näkyvät kaikki konferenssit
|
509
|
-
see_all_conferences:
|
506
|
+
see_all_conferences: Katso kaikki konferenssit
|
510
507
|
photo:
|
511
508
|
image:
|
512
509
|
attributes:
|
data/config/locales/fr-CA.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fr-CA:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ fr-CA:
|
|
28
29
|
show_statistics: Montrer les statistiques
|
29
30
|
sign_date: Date de signature
|
30
31
|
signature: Signature
|
31
|
-
signature_name:
|
32
|
+
signature_name: nom de la signature
|
32
33
|
slogan: Slogan
|
33
34
|
slug: Slug URL
|
34
35
|
start_date: Date de début
|
@@ -134,7 +135,7 @@ fr-CA:
|
|
134
135
|
title: Mettre à jour l'administrateur de la conférence.
|
135
136
|
update: Mettre à jour
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: administrateurs de la conférence
|
138
139
|
new:
|
139
140
|
create: Créer
|
140
141
|
title: Nouvel administrateur de conférence.
|
@@ -312,7 +313,6 @@ fr-CA:
|
|
312
313
|
update: "%{user_name} a mis à jour le partenaire %{resource_name} dans la conférence %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} créé le type d'inscription %{resource_name} dans la conférence %{space_name}"
|
315
|
-
delete: "%{user_name} a supprimé le type d'inscription %{resource_name} de la conférence %{space_name}"
|
316
316
|
publish: "%{user_name} publié le %{resource_name} type d'inscription dans la %{space_name} conférence"
|
317
317
|
unpublish: "%{user_name} non publié le type d'inscription %{resource_name} dans la conférence %{space_name}"
|
318
318
|
update: "%{user_name} mis à jour le type d'inscription %{resource_name} dans la conférence %{space_name}"
|
@@ -380,8 +380,7 @@ fr-CA:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Refuser l'invitation '%{conference_title}'
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} vous a invité à participer à une conférence à %{application}. Vous pouvez accepter en utilisant le lien ci-dessous."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} a invité à participer à une conférence à %{application}. Vous pouvez refuser ou l'accepter via les liens ci-dessous."
|
385
384
|
registration: Inscription pour '%{conference_title}'
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -432,11 +431,9 @@ fr-CA:
|
|
432
431
|
create:
|
433
432
|
invalid: Il y a eu un problème pour rejoindre cette conférence.
|
434
433
|
success: Vous avez rejoint la conférence avec succès.
|
435
|
-
unauthorized: Vous devez vous connecter avant de vous inscrire à la conférence.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Il y a eu un problème pour refuser l'invitation.
|
438
436
|
success: Vous avez refusé l'invitation avec succès.
|
439
|
-
unauthorized: Vous devez vous connecter avant de refuser l'invitation.
|
440
437
|
destroy:
|
441
438
|
invalid: Il y a eu un problème pour quitter cette conférence.
|
442
439
|
success: Vous avez quitté la conférence avec succès.
|
data/config/locales/fr.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
fr:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -23,12 +24,12 @@ fr:
|
|
23
24
|
registration_terms: Conditions d’inscription
|
24
25
|
registrations_enabled: Inscriptions ouvertes
|
25
26
|
scope_id: Périmètre
|
26
|
-
scopes_enabled:
|
27
|
+
scopes_enabled: Périmètres d'application activés
|
27
28
|
short_description: Brève description
|
28
29
|
show_statistics: Montrer les statistiques
|
29
30
|
sign_date: Date de signature
|
30
31
|
signature: Signature
|
31
|
-
signature_name:
|
32
|
+
signature_name: nom de la signature
|
32
33
|
slogan: Slogan
|
33
34
|
slug: Slug URL
|
34
35
|
start_date: Date de début
|
@@ -134,7 +135,7 @@ fr:
|
|
134
135
|
title: Mettre à jour l'administrateur de la conférence.
|
135
136
|
update: Mettre à jour
|
136
137
|
index:
|
137
|
-
conference_admins_title:
|
138
|
+
conference_admins_title: administrateurs de la conférence
|
138
139
|
new:
|
139
140
|
create: Créer
|
140
141
|
title: Nouvel administrateur de conférence.
|
@@ -312,7 +313,6 @@ fr:
|
|
312
313
|
update: "%{user_name} a mis à jour le partenaire %{resource_name} dans la conférence %{space_name}"
|
313
314
|
registration_type:
|
314
315
|
create: "%{user_name} créé le type d'inscription %{resource_name} dans la conférence %{space_name}"
|
315
|
-
delete: "%{user_name} a supprimé le type d'inscription %{resource_name} de la conférence %{space_name}"
|
316
316
|
publish: "%{user_name} publié le %{resource_name} type d'inscription dans la %{space_name} conférence"
|
317
317
|
unpublish: "%{user_name} non publié le type d'inscription %{resource_name} dans la conférence %{space_name}"
|
318
318
|
update: "%{user_name} mis à jour le type d'inscription %{resource_name} dans la conférence %{space_name}"
|
@@ -352,7 +352,7 @@ fr:
|
|
352
352
|
invites: Invite
|
353
353
|
search: Chercher
|
354
354
|
new:
|
355
|
-
explanation: L'utilisateur sera invité à participer à une conférence. Si l'e-mail n'est pas enregistré, ils seront également invités
|
355
|
+
explanation: L'utilisateur sera invité à participer à une conférence. Si l'e-mail n'est pas enregistré, ils seront également invités dans l'organisation.
|
356
356
|
invite: Inviter
|
357
357
|
new_invite: Inviter un utilisateur
|
358
358
|
conference_registrations:
|
@@ -380,8 +380,7 @@ fr:
|
|
380
380
|
invite_join_conference_mailer:
|
381
381
|
invite:
|
382
382
|
decline: Refuser l'invitation '%{conference_title}'
|
383
|
-
|
384
|
-
invited_user_to_join_a_conference: "%{invited_by} vous a invité à participer à une conférence à %{application}. Vous pouvez accepter en utilisant le lien ci-dessous."
|
383
|
+
invited_you_to_join_a_conference: "%{invited_by} a invité à participer à une conférence à %{application}. Vous pouvez refuser ou l'accepter via les liens ci-dessous."
|
385
384
|
registration: Inscription pour '%{conference_title}'
|
386
385
|
partners:
|
387
386
|
index:
|
@@ -432,11 +431,9 @@ fr:
|
|
432
431
|
create:
|
433
432
|
invalid: Il y a eu un problème pour rejoindre cette conférence.
|
434
433
|
success: Vous avez rejoint la conférence avec succès.
|
435
|
-
unauthorized: Vous devez vous connecter avant de vous inscrire à la conférence.
|
436
434
|
decline_invitation:
|
437
435
|
invalid: Il y a eu un problème pour refuser l'invitation.
|
438
436
|
success: Vous avez refusé l'invitation avec succès.
|
439
|
-
unauthorized: Vous devez vous connecter avant de refuser l'invitation.
|
440
437
|
destroy:
|
441
438
|
invalid: Il y a eu un problème pour quitter cette conférence.
|
442
439
|
success: Vous avez quitté la conférence avec succès.
|
data/config/locales/ga-IE.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ga:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -16,10 +17,12 @@ ga:
|
|
16
17
|
date: Dáta
|
17
18
|
link: Nasc
|
18
19
|
title: Teideal
|
20
|
+
weight: Meáchan
|
19
21
|
conference_partner:
|
20
22
|
link: Nasc
|
21
23
|
logo: Lógó
|
22
24
|
name: Ainm
|
25
|
+
weight: Meáchan
|
23
26
|
conference_registration_invite:
|
24
27
|
email: Seoladh ríomhphoist
|
25
28
|
name: Ainm
|
@@ -27,6 +30,7 @@ ga:
|
|
27
30
|
conference_registration_type:
|
28
31
|
price: Praghas
|
29
32
|
title: Teideal
|
33
|
+
weight: Meáchan
|
30
34
|
conference_speaker:
|
31
35
|
avatar: Abhatár
|
32
36
|
user_id: Úsáideoir
|
data/config/locales/gl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
gl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,6 +29,7 @@ gl:
|
|
28
29
|
show_statistics: Amosar estatísticas
|
29
30
|
sign_date: Data de sinatura
|
30
31
|
signature: Sinatura
|
32
|
+
signature_name: nome da sinatura
|
31
33
|
slogan: Eslogan
|
32
34
|
slug: URL slug
|
33
35
|
start_date: Data de inicio
|
@@ -36,11 +38,13 @@ gl:
|
|
36
38
|
date: Data
|
37
39
|
link: Ligazón
|
38
40
|
title: Título
|
41
|
+
weight: Peso
|
39
42
|
conference_partner:
|
40
43
|
link: Ligazón
|
41
44
|
logo: Logotipo
|
42
45
|
name: Nome
|
43
46
|
partner_type: Tipo de socio
|
47
|
+
weight: Peso
|
44
48
|
conference_registration_invite:
|
45
49
|
email: Correo electrónico
|
46
50
|
name: Nome
|
@@ -50,6 +54,7 @@ gl:
|
|
50
54
|
description: Descrición
|
51
55
|
price: Prezo
|
52
56
|
title: Título
|
57
|
+
weight: Peso
|
53
58
|
conference_speaker:
|
54
59
|
affiliation: Afiliación
|
55
60
|
avatar: Avatar
|
@@ -127,6 +132,8 @@ gl:
|
|
127
132
|
edit:
|
128
133
|
title: Actualiza o usuario da conferencia.
|
129
134
|
update: Actualización
|
135
|
+
index:
|
136
|
+
conference_admins_title: usuarios de conferencias
|
130
137
|
new:
|
131
138
|
create: Crear
|
132
139
|
title: Novo usuario da conferencia.
|
@@ -367,7 +374,7 @@ gl:
|
|
367
374
|
invite_join_conference_mailer:
|
368
375
|
invite:
|
369
376
|
decline: Declina a invitación '%{conference_title}'
|
370
|
-
|
377
|
+
invited_you_to_join_a_conference: "%{invited_by} convidoute a unirse a unha conferencia en %{application}. Podes rexeitalo ou aceptalo a través das ligazóns a continuación."
|
371
378
|
registration: Rexistro para '%{conference_title}'
|
372
379
|
partners:
|
373
380
|
index:
|
@@ -490,6 +497,7 @@ gl:
|
|
490
497
|
highlighted_conferences:
|
491
498
|
active_conferences: Conferencias activas
|
492
499
|
conferences_button_title: Ligazón á páxina de Conferencias que amosa todas as conferencias
|
500
|
+
see_all_conferences: Ver todas as conferencias
|
493
501
|
photo:
|
494
502
|
image:
|
495
503
|
attributes:
|
data/config/locales/hr.yml
CHANGED
data/config/locales/hu.yml
CHANGED
@@ -1,9 +1,9 @@
|
|
1
|
+
---
|
1
2
|
hu:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
4
5
|
conference:
|
5
6
|
assemblies_ids: Kapcsolódó gyűlések
|
6
|
-
available_slots: Rendelkezésre álló időpontok
|
7
7
|
banner_image: Banner kép
|
8
8
|
consultations_ids: Kapcsolódó konzultációk
|
9
9
|
copy_categories: Másolási kategóriák
|
@@ -11,58 +11,26 @@ hu:
|
|
11
11
|
copy_features: Másolási funkciók
|
12
12
|
decidim_scope_id: terület
|
13
13
|
description: Leírás
|
14
|
-
end_date: Befejezés dátuma
|
15
14
|
hashtag: Kettőskereszt
|
16
15
|
hero_image: Kezdő kép
|
17
|
-
location: Helyszín
|
18
|
-
main_logo: Fő logó
|
19
|
-
objectives: Célok
|
20
16
|
participatory_processes_ids: Kapcsolódó részvételi folyamatok
|
21
17
|
promoted: Kiemelt
|
22
18
|
published_at: Megjelent a
|
23
|
-
registration_terms: Regisztrációs feltételek
|
24
|
-
registrations_enabled: Regisztráció engedélyezve
|
25
19
|
scope_id: terület
|
26
20
|
scopes_enabled: A hatókör engedélyezett
|
27
21
|
short_description: Rövid leírás
|
28
22
|
show_statistics: Statisztikák megjelenítése
|
29
|
-
signature: Aláírás
|
30
|
-
signature_name: Aláíró neve
|
31
23
|
slogan: Szlogen
|
32
24
|
slug: URL slug
|
33
|
-
start_date: Kezdő dátum
|
34
25
|
title: Cím
|
35
26
|
conference_media_link:
|
36
|
-
|
37
|
-
link: Hivatkozás
|
38
|
-
title: Cím
|
39
|
-
weight: Pozíció sorrend
|
27
|
+
weight: Súly
|
40
28
|
conference_partner:
|
41
|
-
|
42
|
-
logo: Logó
|
43
|
-
name: Név
|
44
|
-
partner_type: Partner típus
|
45
|
-
weight: Pozíció sorrend
|
46
|
-
conference_registration_invite:
|
47
|
-
email: Email
|
48
|
-
name: Név
|
49
|
-
registration_type_id: Regisztráció típusa
|
50
|
-
user_id: Felhasználó
|
29
|
+
weight: Súly
|
51
30
|
conference_registration_type:
|
52
|
-
|
53
|
-
price: Ár
|
54
|
-
title: Cím
|
55
|
-
weight: Pozíció sorrend
|
31
|
+
weight: Súly
|
56
32
|
conference_speaker:
|
57
|
-
affiliation: Beosztás
|
58
|
-
avatar: Profilkép
|
59
|
-
conference_meeting_ids: Kapcsolódó találkozók
|
60
33
|
full_name: Teljes név
|
61
|
-
personal_url: Személyes URL-cím
|
62
|
-
position: Pozíció
|
63
|
-
short_bio: Rövid önéletrajz
|
64
|
-
twitter_handle: Twitter oldal
|
65
|
-
user_id: Felhasználó
|
66
34
|
conference_user_role:
|
67
35
|
email: Email
|
68
36
|
name: Név
|
@@ -133,7 +101,7 @@ hu:
|
|
133
101
|
title: A konferencia felhasználó frissítése.
|
134
102
|
update: frissítés
|
135
103
|
index:
|
136
|
-
conference_admins_title:
|
104
|
+
conference_admins_title: konferencia felhasználók számára
|
137
105
|
new:
|
138
106
|
create: Teremt
|
139
107
|
title: Új konferencia felhasználó.
|
@@ -245,7 +213,6 @@ hu:
|
|
245
213
|
price: Ár
|
246
214
|
registrations_count: A regisztrációk száma
|
247
215
|
title: Cím
|
248
|
-
weight: Pozíció sorrend
|
249
216
|
name: Regisztrációs típus
|
250
217
|
partners:
|
251
218
|
create:
|
@@ -305,13 +272,8 @@ hu:
|
|
305
272
|
conferences:
|
306
273
|
conference_registration:
|
307
274
|
confirm: "%{user_name} megerősítette konferencia regisztrációját a %{resource_name} konferencián"
|
308
|
-
partner:
|
309
|
-
create: "%{user_name} létrehozta a %{resource_name} partnert a %{space_name} konferencián"
|
310
|
-
delete: "%{user_name} eltávolította a %{resource_name} partnert a %{space_name} konferenciából"
|
311
|
-
update: "%{user_name} frissítette a %{resource_name} partnert a %{space_name} konferencián"
|
312
275
|
registration_type:
|
313
276
|
create: "%{user_name} létrehozta az %{resource_name} regisztrációs típust a %{space_name} konferencián"
|
314
|
-
delete: "%{user_name} eltávolította a %{resource_name} regisztrációs típust a %{space_name} konferenciból"
|
315
277
|
publish: "%{user_name} közzétette az %{resource_name} regisztrációs típust a %{space_name} konferencián"
|
316
278
|
unpublish: "%{user_name} visszavonta a %{resource_name} regisztrációs típus közzétételét a %{space_name} konferencián"
|
317
279
|
update: "%{user_name} frissítette a %{resource_name} regisztrációs típust a %{space_name} konferencián"
|
@@ -379,8 +341,7 @@ hu:
|
|
379
341
|
invite_join_conference_mailer:
|
380
342
|
invite:
|
381
343
|
decline: A "%{conference_title}" meghívása
|
382
|
-
|
383
|
-
invited_user_to_join_a_conference: "%{invited_by} meghívott, hogy csatlakozz ehhez a conferenciához itt: %{application}. Az alábbi linken jelezz vissza számára."
|
344
|
+
invited_you_to_join_a_conference: "%{invited_by} meghívta Önt, hogy csatlakozzon egy konferenciához %{application}kor. Az alábbi linkeken keresztül visszautasíthatja vagy elfogadhatja."
|
384
345
|
registration: Regisztráció a '%{conference_title}' -ra
|
385
346
|
partners:
|
386
347
|
index:
|
@@ -431,11 +392,9 @@ hu:
|
|
431
392
|
create:
|
432
393
|
invalid: Probléma merült fel a konferencián.
|
433
394
|
success: A konferencia sikeresen csatlakozott.
|
434
|
-
unauthorized: A konferenciára való regisztráció előtt be kell jelentkeznie.
|
435
395
|
decline_invitation:
|
436
396
|
invalid: Hiba történt a meghívás visszautasításában.
|
437
397
|
success: Elutasította a meghívást sikeresen.
|
438
|
-
unauthorized: A meghívás elutasítása előtt be kell jelentkeznie.
|
439
398
|
destroy:
|
440
399
|
invalid: Probléma merült fel a konferencián.
|
441
400
|
success: A konferencia sikeres volt.
|
@@ -445,7 +404,6 @@ hu:
|
|
445
404
|
personal_website: Személyes weboldal
|
446
405
|
show:
|
447
406
|
more_info: több információ
|
448
|
-
speaking_at: Előad ekkor
|
449
407
|
conference_speaker_cell:
|
450
408
|
personal_url:
|
451
409
|
personal_website: Személyes weboldal
|
@@ -453,7 +411,7 @@ hu:
|
|
453
411
|
go_to_twitter: Menjen a Twitterre
|
454
412
|
conference_speakers:
|
455
413
|
index:
|
456
|
-
speakers:
|
414
|
+
speakers: Hangszórók
|
457
415
|
conferences:
|
458
416
|
partners:
|
459
417
|
collaborators: Partnerek
|
@@ -504,7 +462,7 @@ hu:
|
|
504
462
|
home:
|
505
463
|
highlighted_conferences:
|
506
464
|
active_conferences: Aktív konferenciák
|
507
|
-
|
465
|
+
see_all_conferences: Lásd az összes konferenciát
|
508
466
|
photo:
|
509
467
|
image:
|
510
468
|
attributes:
|
@@ -518,8 +476,7 @@ hu:
|
|
518
476
|
registration_types:
|
519
477
|
index:
|
520
478
|
choose_an_option: 'Válassza ki a regisztrációs lehetőséget:'
|
521
|
-
login_as: '%{name} <%{email}> -ként
|
522
|
-
no_registrations: Nincs regisztráció
|
479
|
+
login_as: '%{name} <%{email}> -ként jelentkezett be'
|
523
480
|
register: Regisztráció
|
524
481
|
title: Regisztrációs típusok
|
525
482
|
shared:
|
@@ -556,22 +513,11 @@ hu:
|
|
556
513
|
email_outro: Ezt az értesítést megkapta, mert a "%{resource_title}" konferenciát követi. Leiratkozhat az előző linkről.
|
557
514
|
email_subject: A "%{resource_title}" konferencia lehetővé tette a regisztrációt.
|
558
515
|
notification_title: A <a href="%{resource_path}">%{resource_title}</a> konferencia engedélyezte a regisztrációkat.
|
559
|
-
role_assigned:
|
560
|
-
email_intro: A(z) "%{resource_title}" konferencia %{role} szerepét rendelték Önhöz.
|
561
|
-
email_outro: 'Azért kapta ezt az értesítést, mert a(z) "%{resource_title}" konferencián a következő szerepet kapta: %{role}.'
|
562
|
-
email_subject: 'Önt a(z) %{role} szerephez rendelték itt: "%{resource_title}".'
|
563
|
-
notification_title: 'A(z) %{role} szerephez rendelték a következő konferencián: <a href="%{resource_url}">%{resource_title}</a>.'
|
564
516
|
upcoming_conference:
|
565
517
|
email_intro: 'A "%{resource_title}" konferencia 2 nap múlva kezdődik. Olvasd el a leírást ezen az oldalon:'
|
566
518
|
email_outro: Ezt az értesítést azért kaptad, mert a "%{resource_title}" konferenciát követed. Leiratkozhatsz az értesítésekről az előző linken keresztül.
|
567
519
|
email_subject: A "%{resource_title}" konferencia hamarosan indul!
|
568
520
|
notification_title: A <a href="%{resource_path}">%{resource_title}</a> konferencia 2 nap múlva kezdődik.
|
569
|
-
help:
|
570
|
-
participatory_spaces:
|
571
|
-
conferences:
|
572
|
-
contextual: "<p>A <strong>konferencia</strong> egy programba rendezett találkozók gyűjteménye, számos meghívott előadóval és a nagy kongresszusokra vagy társadalmi eseményekre jellemző egyéb információs mezőkkel (regisztráció, a rendezvényt támogató vagy szponzoráló szervezetek listája stb.).</p> <p>Példák: Egy konferencia lehet egy szervezet és tagjai számára releváns esemény, vagy egy részvételi folyamat részeként, illetve egy konzultációt követően kerülhet megrendezésre.</p>\n"
|
573
|
-
page: "<p>A <strong>konferencia</strong> egy programba rendezett találkozók gyűjteménye, számos meghívott előadóval és a nagy kongresszusokra vagy társadalmi eseményekre jellemző egyéb információs mezőkkel (regisztráció, a rendezvényt támogató vagy szponzoráló szervezetek listája stb.).</p> <p>Példák: Egy konferencia lehet egy szervezet és tagjai számára releváns esemény, vagy egy részvételi folyamat részeként, illetve egy konzultációt követően kerülhet megrendezésre.</p>\n"
|
574
|
-
title: Mik a konferenciák?
|
575
521
|
log:
|
576
522
|
value_types:
|
577
523
|
conference_presenter:
|
@@ -582,8 +528,6 @@ hu:
|
|
582
528
|
title: Média és linkek
|
583
529
|
menu:
|
584
530
|
conferences: Konferenciák
|
585
|
-
statistics:
|
586
|
-
conferences_count: Konferenciák
|
587
531
|
devise:
|
588
532
|
mailer:
|
589
533
|
join_conference:
|
data/config/locales/id-ID.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
id:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -22,6 +23,12 @@ id:
|
|
22
23
|
slogan: Slogan
|
23
24
|
slug: Siput URL
|
24
25
|
title: Judul
|
26
|
+
conference_media_link:
|
27
|
+
weight: Berat
|
28
|
+
conference_partner:
|
29
|
+
weight: Berat
|
30
|
+
conference_registration_type:
|
31
|
+
weight: Berat
|
25
32
|
conference_speaker:
|
26
33
|
full_name: Nama lengkap
|
27
34
|
conference_user_role:
|
@@ -90,6 +97,8 @@ id:
|
|
90
97
|
edit:
|
91
98
|
title: Perbarui pengguna konferensi.
|
92
99
|
update: Memperbarui
|
100
|
+
index:
|
101
|
+
conference_admins_title: pengguna konferensi
|
93
102
|
new:
|
94
103
|
create: Membuat
|
95
104
|
title: Pengguna konferensi baru.
|
@@ -327,7 +336,7 @@ id:
|
|
327
336
|
invite_join_conference_mailer:
|
328
337
|
invite:
|
329
338
|
decline: Tolak undangan '%{conference_title}'
|
330
|
-
|
339
|
+
invited_you_to_join_a_conference: "%{invited_by} telah mengundang Anda untuk bergabung dalam konferensi di %{application}. Anda dapat menolak atau menerimanya melalui tautan di bawah ini."
|
331
340
|
registration: Registrasi untuk '%{conference_title}'
|
332
341
|
partners:
|
333
342
|
index:
|
@@ -359,6 +368,7 @@ id:
|
|
359
368
|
conference_program:
|
360
369
|
program_meeting:
|
361
370
|
content: Konten
|
371
|
+
location: Lokasi
|
362
372
|
speakers: Pembicara
|
363
373
|
streaming: Streaming
|
364
374
|
show:
|
@@ -447,6 +457,7 @@ id:
|
|
447
457
|
home:
|
448
458
|
highlighted_conferences:
|
449
459
|
active_conferences: Konferensi aktif
|
460
|
+
see_all_conferences: Lihat semua konferensi
|
450
461
|
photo:
|
451
462
|
show:
|
452
463
|
close_modal: Tutup modal
|
data/config/locales/is-IS.yml
CHANGED
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
is:
|