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/nl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
nl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,6 +29,7 @@ nl:
|
|
28
29
|
show_statistics: Toon statistieken
|
29
30
|
sign_date: Datum ondertekenen
|
30
31
|
signature: Handtekening
|
32
|
+
signature_name: naam van de handtekenaar
|
31
33
|
slogan: Slogan
|
32
34
|
slug: URL-slug
|
33
35
|
start_date: Startdatum
|
@@ -36,11 +38,13 @@ nl:
|
|
36
38
|
date: Datum
|
37
39
|
link: Link
|
38
40
|
title: Titel
|
41
|
+
weight: Gewicht
|
39
42
|
conference_partner:
|
40
43
|
link: Link
|
41
44
|
logo: Logo
|
42
45
|
name: Naam
|
43
46
|
partner_type: Type partner
|
47
|
+
weight: Gewicht
|
44
48
|
conference_registration_invite:
|
45
49
|
email: E-mail
|
46
50
|
name: Naam
|
@@ -50,6 +54,7 @@ nl:
|
|
50
54
|
description: Omschrijving
|
51
55
|
price: Prijs
|
52
56
|
title: Titel
|
57
|
+
weight: Gewicht
|
53
58
|
conference_speaker:
|
54
59
|
affiliation: Aansluiting
|
55
60
|
avatar: Profielfoto
|
@@ -127,6 +132,8 @@ nl:
|
|
127
132
|
edit:
|
128
133
|
title: Update conferentiebeheerder.
|
129
134
|
update: Bijwerken
|
135
|
+
index:
|
136
|
+
conference_admins_title: conferentiebeheerders
|
130
137
|
new:
|
131
138
|
create: Creëren
|
132
139
|
title: Nieuwe conferentiebeheerder.
|
@@ -343,7 +350,7 @@ nl:
|
|
343
350
|
invites: Uitnodigingen
|
344
351
|
search: Zoeken
|
345
352
|
new:
|
346
|
-
explanation: De gebruiker wordt uitgenodigd om deel te nemen aan een conferentie. Als
|
353
|
+
explanation: De gebruiker wordt uitgenodigd om deel te nemen aan een conferentie. Als zijn/haar e-mailadres niet is geregistreerd, worden ze ook uitgenodigd voor de organisatie.
|
347
354
|
invite: Nodig uit
|
348
355
|
new_invite: Nodig deelnemer uit
|
349
356
|
conference_registrations:
|
@@ -371,7 +378,7 @@ nl:
|
|
371
378
|
invite_join_conference_mailer:
|
372
379
|
invite:
|
373
380
|
decline: Uitnodiging '%{conference_title}' weigeren
|
374
|
-
|
381
|
+
invited_you_to_join_a_conference: "%{invited_by} heeft je uitgenodigd om deel te nemen aan een conferentie op %{application}. U kunt het weigeren of accepteren via de onderstaande links."
|
375
382
|
registration: Registratie voor '%{conference_title}'
|
376
383
|
partners:
|
377
384
|
index:
|
@@ -403,7 +410,7 @@ nl:
|
|
403
410
|
conference_program:
|
404
411
|
program_meeting:
|
405
412
|
content: Inhoud
|
406
|
-
location:
|
413
|
+
location: Plaats
|
407
414
|
speakers: Sprekers
|
408
415
|
streaming: Streaming
|
409
416
|
show:
|
@@ -434,7 +441,7 @@ nl:
|
|
434
441
|
personal_website: Persoonlijke website
|
435
442
|
show:
|
436
443
|
more_info: meer informatie
|
437
|
-
speaking_at:
|
444
|
+
speaking_at: Spreker bij
|
438
445
|
conference_speaker_cell:
|
439
446
|
personal_url:
|
440
447
|
personal_website: Persoonlijke website
|
@@ -494,6 +501,7 @@ nl:
|
|
494
501
|
highlighted_conferences:
|
495
502
|
active_conferences: Actieve conferenties
|
496
503
|
conferences_button_title: Link naar de pagina Conferenties waarop alle conferenties worden weergegeven
|
504
|
+
see_all_conferences: Bekijk alle conferenties
|
497
505
|
photo:
|
498
506
|
image:
|
499
507
|
attributes:
|
@@ -507,7 +515,7 @@ nl:
|
|
507
515
|
registration_types:
|
508
516
|
index:
|
509
517
|
choose_an_option: 'Kies je registratieoptie:'
|
510
|
-
login_as:
|
518
|
+
login_as: Je bent ingelogd als %{name} <%{email}>
|
511
519
|
no_registrations: Geen inschrijvingen
|
512
520
|
register: Registreren
|
513
521
|
title: Registratie soorten
|
data/config/locales/no.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
"no":
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,6 +29,7 @@
|
|
28
29
|
show_statistics: Vis statistikk
|
29
30
|
sign_date: Underskriftsdato
|
30
31
|
signature: Underskrift
|
32
|
+
signature_name: signaturnavn
|
31
33
|
slogan: Slagord
|
32
34
|
slug: URL slug
|
33
35
|
start_date: Startdato
|
@@ -36,11 +38,13 @@
|
|
36
38
|
date: Dato
|
37
39
|
link: Lenke
|
38
40
|
title: Tittel
|
41
|
+
weight: Vekt
|
39
42
|
conference_partner:
|
40
43
|
link: Lenke
|
41
44
|
logo: Logo
|
42
45
|
name: Navn
|
43
46
|
partner_type: Type partner
|
47
|
+
weight: Vekt
|
44
48
|
conference_registration_invite:
|
45
49
|
email: E-post
|
46
50
|
name: Navn
|
@@ -50,6 +54,7 @@
|
|
50
54
|
description: Beskrivelse
|
51
55
|
price: Pris
|
52
56
|
title: Tittel
|
57
|
+
weight: Vekt
|
53
58
|
conference_speaker:
|
54
59
|
affiliation: Tilknytning
|
55
60
|
avatar: Profilbilde
|
@@ -127,6 +132,8 @@
|
|
127
132
|
edit:
|
128
133
|
title: Oppdater konferanse administrator.
|
129
134
|
update: Oppdater
|
135
|
+
index:
|
136
|
+
conference_admins_title: konferanse administratorer
|
130
137
|
new:
|
131
138
|
create: Opprett
|
132
139
|
title: Ny konferanse administrator.
|
@@ -371,7 +378,7 @@
|
|
371
378
|
invite_join_conference_mailer:
|
372
379
|
invite:
|
373
380
|
decline: Avvis invitasjon '%{conference_title}'
|
374
|
-
|
381
|
+
invited_you_to_join_a_conference: "%{invited_by} har invitert deg til å delta et foredrag på %{application}. Du kan avvise eller godta gjennom lenkene nedenfor."
|
375
382
|
registration: Påmelding til '%{conference_title}'
|
376
383
|
partners:
|
377
384
|
index:
|
@@ -403,7 +410,7 @@
|
|
403
410
|
conference_program:
|
404
411
|
program_meeting:
|
405
412
|
content: Innhold
|
406
|
-
location:
|
413
|
+
location: Plassering
|
407
414
|
speakers: Talere
|
408
415
|
streaming: Strømming
|
409
416
|
show:
|
@@ -494,6 +501,7 @@
|
|
494
501
|
highlighted_conferences:
|
495
502
|
active_conferences: Aktive konferanser
|
496
503
|
conferences_button_title: Lenke til konferansesiden som viser alle konferansene
|
504
|
+
see_all_conferences: Se alle konferanser
|
497
505
|
photo:
|
498
506
|
image:
|
499
507
|
attributes:
|
data/config/locales/om-ET.yml
CHANGED
data/config/locales/pl.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
pl:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -36,11 +37,13 @@ pl:
|
|
36
37
|
date: Data
|
37
38
|
link: Link
|
38
39
|
title: Tytuł
|
40
|
+
weight: Kolejność na stronie
|
39
41
|
conference_partner:
|
40
42
|
link: Link
|
41
43
|
logo: Logo
|
42
44
|
name: Imię
|
43
45
|
partner_type: Typ partnera
|
46
|
+
weight: Kolejność na stronie
|
44
47
|
conference_registration_invite:
|
45
48
|
email: Adres e-mail
|
46
49
|
name: Imię
|
@@ -50,6 +53,7 @@ pl:
|
|
50
53
|
description: Opis
|
51
54
|
price: Cena
|
52
55
|
title: Tytuł
|
56
|
+
weight: Kolejność na stronie
|
53
57
|
conference_speaker:
|
54
58
|
affiliation: Przynależność
|
55
59
|
avatar: Awatar
|
@@ -132,6 +136,8 @@ pl:
|
|
132
136
|
edit:
|
133
137
|
title: Zaktualizuj administratora konferencji.
|
134
138
|
update: Aktualizuj
|
139
|
+
index:
|
140
|
+
conference_admins_title: administratorzy konferencji
|
135
141
|
new:
|
136
142
|
create: Utwórz
|
137
143
|
title: Nowy administrator konferencji.
|
@@ -378,7 +384,7 @@ pl:
|
|
378
384
|
invite_join_conference_mailer:
|
379
385
|
invite:
|
380
386
|
decline: Odrzuć zaproszenie "%{conference_title}"
|
381
|
-
|
387
|
+
invited_you_to_join_a_conference: "%{invited_by} zaprosił(a) Cię do udziału w konferencji %{application}. Możesz odrzucić lub zaakceptować zaproszenie korzystając z poniższych linków."
|
382
388
|
registration: Rejestracja na "%{conference_title}"
|
383
389
|
partners:
|
384
390
|
index:
|
@@ -410,7 +416,7 @@ pl:
|
|
410
416
|
conference_program:
|
411
417
|
program_meeting:
|
412
418
|
content: Zawartość
|
413
|
-
location:
|
419
|
+
location: Lokalizacja
|
414
420
|
speakers: Prelegenci
|
415
421
|
streaming: Streaming
|
416
422
|
show:
|
@@ -500,6 +506,7 @@ pl:
|
|
500
506
|
home:
|
501
507
|
highlighted_conferences:
|
502
508
|
active_conferences: Aktualne konferencje
|
509
|
+
see_all_conferences: Zobacz wszystkie konferencje
|
503
510
|
photo:
|
504
511
|
image:
|
505
512
|
attributes:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
pt:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
4
5
|
conference:
|
@@ -28,6 +29,7 @@ pt-BR:
|
|
28
29
|
show_statistics: Mostre estatisticas
|
29
30
|
sign_date: Data de assinatura
|
30
31
|
signature: Assinatura
|
32
|
+
signature_name: nome da assinatura
|
31
33
|
slogan: Slogan
|
32
34
|
slug: Lesma de URL
|
33
35
|
start_date: Data de início
|
@@ -36,11 +38,13 @@ pt-BR:
|
|
36
38
|
date: Data
|
37
39
|
link: Link
|
38
40
|
title: Título
|
41
|
+
weight: Peso
|
39
42
|
conference_partner:
|
40
43
|
link: Link
|
41
44
|
logo: Logo
|
42
45
|
name: Nome
|
43
46
|
partner_type: Tipo de parceiro
|
47
|
+
weight: Peso
|
44
48
|
conference_registration_invite:
|
45
49
|
email: E-mail
|
46
50
|
name: Nome
|
@@ -50,6 +54,7 @@ pt-BR:
|
|
50
54
|
description: Descrição
|
51
55
|
price: Preço
|
52
56
|
title: Título
|
57
|
+
weight: Peso
|
53
58
|
conference_speaker:
|
54
59
|
affiliation: Afiliação
|
55
60
|
avatar: Avatar
|
@@ -127,6 +132,8 @@ pt-BR:
|
|
127
132
|
edit:
|
128
133
|
title: Atualize o usuário da conferência.
|
129
134
|
update: Atualizar
|
135
|
+
index:
|
136
|
+
conference_admins_title: usuários da conferência
|
130
137
|
new:
|
131
138
|
create: Crio
|
132
139
|
title: Novo usuário da conferência.
|
@@ -371,7 +378,7 @@ pt-BR:
|
|
371
378
|
invite_join_conference_mailer:
|
372
379
|
invite:
|
373
380
|
decline: Recusar convite '%{conference_title}'
|
374
|
-
|
381
|
+
invited_you_to_join_a_conference: "%{invited_by} convidou você para participar de uma conferência em %{application}. Você pode recusar ou aceitá-lo através dos links abaixo."
|
375
382
|
registration: Registro para '%{conference_title}'
|
376
383
|
partners:
|
377
384
|
index:
|
@@ -404,7 +411,7 @@ pt-BR:
|
|
404
411
|
program_meeting:
|
405
412
|
content: Conteúdo
|
406
413
|
location: Localização
|
407
|
-
speakers:
|
414
|
+
speakers: Alto-falantes
|
408
415
|
streaming: Transmissão
|
409
416
|
show:
|
410
417
|
day: Dia
|
@@ -494,6 +501,7 @@ pt-BR:
|
|
494
501
|
highlighted_conferences:
|
495
502
|
active_conferences: Conferências ativas
|
496
503
|
conferences_button_title: Link para a página de Conferências exibindo todas as conferências
|
504
|
+
see_all_conferences: Veja todas as conferências
|
497
505
|
photo:
|
498
506
|
image:
|
499
507
|
attributes:
|
data/config/locales/pt.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
pt:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,6 +29,7 @@ pt:
|
|
28
29
|
show_statistics: Mostrar estatísticas
|
29
30
|
sign_date: Data de assinatura
|
30
31
|
signature: Assinatura
|
32
|
+
signature_name: nome da assinatura
|
31
33
|
slogan: Slogan
|
32
34
|
slug: Campo de dados dinâmicos de URL
|
33
35
|
start_date: Data de início
|
@@ -36,11 +38,13 @@ pt:
|
|
36
38
|
date: Datas
|
37
39
|
link: Hiperligação
|
38
40
|
title: Título
|
41
|
+
weight: Peso
|
39
42
|
conference_partner:
|
40
43
|
link: Hiperligação
|
41
44
|
logo: Logótipo
|
42
45
|
name: Nome
|
43
46
|
partner_type: Tipo de parceiro
|
47
|
+
weight: Peso
|
44
48
|
conference_registration_invite:
|
45
49
|
email: E-Mail
|
46
50
|
name: Nome
|
@@ -50,6 +54,7 @@ pt:
|
|
50
54
|
description: Descrição
|
51
55
|
price: Preço
|
52
56
|
title: Título
|
57
|
+
weight: Peso
|
53
58
|
conference_speaker:
|
54
59
|
affiliation: Afiliação
|
55
60
|
avatar: Avatar
|
@@ -127,6 +132,8 @@ pt:
|
|
127
132
|
edit:
|
128
133
|
title: Atualizar administrador da conferência.
|
129
134
|
update: Atualizar
|
135
|
+
index:
|
136
|
+
conference_admins_title: administradores da conferência
|
130
137
|
new:
|
131
138
|
create: Criar
|
132
139
|
title: Novo administrador da conferência.
|
@@ -371,7 +378,7 @@ pt:
|
|
371
378
|
invite_join_conference_mailer:
|
372
379
|
invite:
|
373
380
|
decline: Recusar convite '%{conference_title}'
|
374
|
-
|
381
|
+
invited_you_to_join_a_conference: "%{invited_by} convido-o para participar numa conferência em %{application}. Pode recusá-lo ou aceitá-lo através dos links abaixo."
|
375
382
|
registration: Registo para '%{conference_title}'
|
376
383
|
partners:
|
377
384
|
index:
|
@@ -494,6 +501,7 @@ pt:
|
|
494
501
|
highlighted_conferences:
|
495
502
|
active_conferences: Conferências ativas
|
496
503
|
conferences_button_title: Ligação para a página de Conferências que mostra todas as conferências
|
504
|
+
see_all_conferences: Ver todas as conferências
|
497
505
|
photo:
|
498
506
|
image:
|
499
507
|
attributes:
|
data/config/locales/ro-RO.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ro:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ ro:
|
|
28
29
|
show_statistics: Arată statistici
|
29
30
|
sign_date: Data semnării
|
30
31
|
signature: Semnătură
|
31
|
-
signature_name:
|
32
|
+
signature_name: numele semnăturii
|
32
33
|
slogan: Slogan
|
33
34
|
slug: URL slug
|
34
35
|
start_date: Data de început
|
@@ -37,13 +38,13 @@ ro:
|
|
37
38
|
date: Dată
|
38
39
|
link: Link
|
39
40
|
title: Titlu
|
40
|
-
weight:
|
41
|
+
weight: Ordinea în poziționare
|
41
42
|
conference_partner:
|
42
43
|
link: Link
|
43
44
|
logo: Logo
|
44
45
|
name: Nume
|
45
46
|
partner_type: Tipul partenerului
|
46
|
-
weight:
|
47
|
+
weight: Ordinea în poziționare
|
47
48
|
conference_registration_invite:
|
48
49
|
email: E-mail
|
49
50
|
name: Nume
|
@@ -53,15 +54,13 @@ ro:
|
|
53
54
|
description: Descriere
|
54
55
|
price: Preț
|
55
56
|
title: Titlu
|
56
|
-
weight:
|
57
|
+
weight: Ordinea în poziționare
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Afiliere
|
59
60
|
avatar: Avatar
|
60
61
|
conference_meeting_ids: Întâlniri asociate
|
61
62
|
full_name: Numele complet
|
62
|
-
personal_url: URL personal
|
63
63
|
position: Poziție
|
64
|
-
short_bio: Biografie scurtă
|
65
64
|
twitter_handle: Responsabil Twitter
|
66
65
|
user_id: Utilizator
|
67
66
|
conference_user_role:
|
@@ -137,7 +136,7 @@ ro:
|
|
137
136
|
title: Actualizează administratorul conferinţei.
|
138
137
|
update: Actualizare
|
139
138
|
index:
|
140
|
-
conference_admins_title:
|
139
|
+
conference_admins_title: administratori ai conferinței
|
141
140
|
new:
|
142
141
|
create: Creează
|
143
142
|
title: Admin de conferință nouă.
|
@@ -249,7 +248,7 @@ ro:
|
|
249
248
|
price: Preț
|
250
249
|
registrations_count: Numărul de înregistrări
|
251
250
|
title: Titlu
|
252
|
-
weight:
|
251
|
+
weight: Ordinea în poziționare
|
253
252
|
name: Tip de înregistrare
|
254
253
|
partners:
|
255
254
|
create:
|
@@ -315,7 +314,6 @@ ro:
|
|
315
314
|
update: "%{user_name} a actualizat vorbitorul %{resource_name} în conferința %{space_name}"
|
316
315
|
registration_type:
|
317
316
|
create: "%{user_name} a creat tipul de înregistrare %{resource_name} în conferința %{space_name}"
|
318
|
-
delete: "%{user_name} a eliminat tipul de înregistrare %{resource_name} din conferința %{space_name}"
|
319
317
|
publish: "%{user_name} a publicat tipul de înregistrare %{resource_name} în conferința %{space_name}"
|
320
318
|
unpublish: "%{user_name} nu a publicat tipul de înregistrare %{resource_name} în conferința %{space_name}"
|
321
319
|
update: "%{user_name} a actualizat tipul de înregistrare %{resource_name} în conferința %{space_name}"
|
@@ -384,8 +382,7 @@ ro:
|
|
384
382
|
invite_join_conference_mailer:
|
385
383
|
invite:
|
386
384
|
decline: Refuzați invitația '%{conference_title}'
|
387
|
-
|
388
|
-
invited_user_to_join_a_conference: "%{invited_by} te-a invitat să te alături unei conferințe la %{application}. Poți să o accepți prin link-ul de mai jos."
|
385
|
+
invited_you_to_join_a_conference: "%{invited_by} te-a invitat să participi la o conferință la %{application}. Puteți să o refuzați sau să o acceptați prin intermediul linkurilor de mai jos."
|
389
386
|
registration: Înregistrare pentru '%{conference_title}'
|
390
387
|
partners:
|
391
388
|
index:
|
@@ -417,7 +414,7 @@ ro:
|
|
417
414
|
conference_program:
|
418
415
|
program_meeting:
|
419
416
|
content: Conținut
|
420
|
-
location:
|
417
|
+
location: Locaţie
|
421
418
|
speakers: Vorbitori
|
422
419
|
streaming: Streaming
|
423
420
|
show:
|
@@ -436,11 +433,9 @@ ro:
|
|
436
433
|
create:
|
437
434
|
invalid: A apărut o problemă la această conferință.
|
438
435
|
success: V-aţi alăturat cu succes conferinţei.
|
439
|
-
unauthorized: Trebuie să te autentifici înainte de a te înregistra la conferință.
|
440
436
|
decline_invitation:
|
441
437
|
invalid: A existat o problemă la refuzarea invitaţiei.
|
442
438
|
success: Ați refuzat cu succes invitația.
|
443
|
-
unauthorized: Trebuie să te autentifici înainte de a refuza invitația.
|
444
439
|
destroy:
|
445
440
|
invalid: A apărut o problemă la ieşirea din această conferinţă.
|
446
441
|
success: Aţi părăsit cu succes conferinţa.
|
@@ -510,6 +505,7 @@ ro:
|
|
510
505
|
highlighted_conferences:
|
511
506
|
active_conferences: Conferințe active
|
512
507
|
conferences_button_title: Link către pagina de conferințe care afișează toate conferințele
|
508
|
+
see_all_conferences: Vezi toate conferințele
|
513
509
|
photo:
|
514
510
|
image:
|
515
511
|
attributes:
|
data/config/locales/ru.yml
CHANGED
data/config/locales/si-LK.yml
CHANGED
data/config/locales/sk.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
sk:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -22,6 +23,12 @@ sk:
|
|
22
23
|
slogan: Slogan
|
23
24
|
slug: URL krátky odkaz
|
24
25
|
title: Názov
|
26
|
+
conference_media_link:
|
27
|
+
weight: Váha
|
28
|
+
conference_partner:
|
29
|
+
weight: Váha
|
30
|
+
conference_registration_type:
|
31
|
+
weight: Váha
|
25
32
|
conference_speaker:
|
26
33
|
full_name: Meno a priezvisko
|
27
34
|
conference_user_role:
|
@@ -99,6 +106,8 @@ sk:
|
|
99
106
|
edit:
|
100
107
|
title: Aktualizovať administrátora konferencie.
|
101
108
|
update: Aktualizovať
|
109
|
+
index:
|
110
|
+
conference_admins_title: administrátori konferencie
|
102
111
|
new:
|
103
112
|
create: Vytvoriť
|
104
113
|
title: Nový administrátor konferencie.
|
@@ -340,7 +349,7 @@ sk:
|
|
340
349
|
invite_join_conference_mailer:
|
341
350
|
invite:
|
342
351
|
decline: Odmietnuť pozvánku na "%{conference_title}"
|
343
|
-
|
352
|
+
invited_you_to_join_a_conference: "%{invited_by} Vás pozval na účasť na konferencii na %{application}. Účasť môžete potvrdiť alebo odmietnuť kliknutím na odkaz nižšie."
|
344
353
|
registration: Registrácia na konferenciu "%{conference_title}"
|
345
354
|
partners:
|
346
355
|
index:
|
@@ -372,6 +381,7 @@ sk:
|
|
372
381
|
conference_program:
|
373
382
|
program_meeting:
|
374
383
|
content: Obsah
|
384
|
+
location: Miesto
|
375
385
|
speakers: Rečníci
|
376
386
|
streaming: Streamovanie
|
377
387
|
show:
|
@@ -460,6 +470,7 @@ sk:
|
|
460
470
|
home:
|
461
471
|
highlighted_conferences:
|
462
472
|
active_conferences: Aktívne konferencie
|
473
|
+
see_all_conferences: Zobraziť všetky konferencie
|
463
474
|
photo:
|
464
475
|
image:
|
465
476
|
attributes:
|
data/config/locales/sl.yml
CHANGED
data/config/locales/so-SO.yml
CHANGED
data/config/locales/sr-CS.yml
CHANGED
data/config/locales/sv.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
sv:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -28,7 +29,7 @@ sv:
|
|
28
29
|
show_statistics: Visa statistik
|
29
30
|
sign_date: Underskriftsdatum
|
30
31
|
signature: Underskrift
|
31
|
-
signature_name:
|
32
|
+
signature_name: signaturnamn
|
32
33
|
slogan: Slogan
|
33
34
|
slug: URL-slug
|
34
35
|
start_date: Startdatum
|
@@ -37,13 +38,13 @@ sv:
|
|
37
38
|
date: Datum
|
38
39
|
link: Länk
|
39
40
|
title: Titel
|
40
|
-
weight:
|
41
|
+
weight: Vikt
|
41
42
|
conference_partner:
|
42
43
|
link: Länk
|
43
44
|
logo: Logga
|
44
45
|
name: Namn
|
45
46
|
partner_type: Typ av partner
|
46
|
-
weight:
|
47
|
+
weight: Vikt
|
47
48
|
conference_registration_invite:
|
48
49
|
email: E-post
|
49
50
|
name: Namn
|
@@ -53,13 +54,12 @@ sv:
|
|
53
54
|
description: Beskrivning
|
54
55
|
price: Pris
|
55
56
|
title: Titel
|
56
|
-
weight:
|
57
|
+
weight: Vikt
|
57
58
|
conference_speaker:
|
58
59
|
affiliation: Anknytning
|
59
60
|
avatar: Avatar
|
60
61
|
conference_meeting_ids: Relaterade möten
|
61
62
|
full_name: Fullständigt namn
|
62
|
-
personal_url: Personlig URL
|
63
63
|
position: Plats
|
64
64
|
twitter_handle: Twitternamn
|
65
65
|
user_id: Användare
|
@@ -132,6 +132,8 @@ sv:
|
|
132
132
|
edit:
|
133
133
|
title: Uppdatera konferensadministratör.
|
134
134
|
update: Uppdatera
|
135
|
+
index:
|
136
|
+
conference_admins_title: konferensadministratörer
|
135
137
|
new:
|
136
138
|
create: Skapa
|
137
139
|
title: Ny konferensadministratör.
|
@@ -376,7 +378,7 @@ sv:
|
|
376
378
|
invite_join_conference_mailer:
|
377
379
|
invite:
|
378
380
|
decline: Avböj inbjudan till '%{conference_title}'
|
379
|
-
|
381
|
+
invited_you_to_join_a_conference: "%{invited_by} har bjudit in dig till en konferens på %{application}. Du kan avböja eller godkänna den via länkarna nedan."
|
380
382
|
registration: Registrering till '%{conference_title}'
|
381
383
|
partners:
|
382
384
|
index:
|
@@ -499,7 +501,7 @@ sv:
|
|
499
501
|
highlighted_conferences:
|
500
502
|
active_conferences: Pågående konferenser
|
501
503
|
conferences_button_title: Länk till sidan över konferenser som visar alla konferenser
|
502
|
-
see_all_conferences:
|
504
|
+
see_all_conferences: Visa alla konferenser
|
503
505
|
photo:
|
504
506
|
image:
|
505
507
|
attributes:
|
data/config/locales/sw-KE.yml
CHANGED
data/config/locales/ti-ER.yml
CHANGED
data/config/locales/tr-TR.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
tr:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -22,6 +23,12 @@ tr:
|
|
22
23
|
slogan: Slogan
|
23
24
|
slug: URL özel bilgisi
|
24
25
|
title: Başlık
|
26
|
+
conference_media_link:
|
27
|
+
weight: Ağırlık
|
28
|
+
conference_partner:
|
29
|
+
weight: Ağırlık
|
30
|
+
conference_registration_type:
|
31
|
+
weight: Ağırlık
|
25
32
|
conference_speaker:
|
26
33
|
full_name: Ad Soyad
|
27
34
|
conference_user_role:
|
@@ -93,6 +100,8 @@ tr:
|
|
93
100
|
edit:
|
94
101
|
title: Konferans yöneticisi güncelle.
|
95
102
|
update: Güncelle
|
103
|
+
index:
|
104
|
+
conference_admins_title: konferans yöneticileri
|
96
105
|
new:
|
97
106
|
create: Oluştur
|
98
107
|
title: Yeni konferans yöneticisi
|
@@ -332,7 +341,7 @@ tr:
|
|
332
341
|
invite_join_conference_mailer:
|
333
342
|
invite:
|
334
343
|
decline: '''%{conference_title}'' davetiyesini reddet'
|
335
|
-
|
344
|
+
invited_you_to_join_a_conference: "%{invited_by} sizi %{application}bir konferansa katılmaya davet etti. Aşağıdaki bağlantılardan reddedebilir veya kabul edebilirsiniz."
|
336
345
|
registration: '''%{conference_title}'' için kayıt'
|
337
346
|
partners:
|
338
347
|
index:
|
@@ -364,7 +373,8 @@ tr:
|
|
364
373
|
conference_program:
|
365
374
|
program_meeting:
|
366
375
|
content: içerik
|
367
|
-
|
376
|
+
location: yer
|
377
|
+
speakers: Hoparlörler
|
368
378
|
streaming: Yayın Akışı
|
369
379
|
show:
|
370
380
|
day: Gün
|
@@ -402,7 +412,7 @@ tr:
|
|
402
412
|
go_to_twitter: Twitter'a git
|
403
413
|
conference_speakers:
|
404
414
|
index:
|
405
|
-
speakers:
|
415
|
+
speakers: Hoparlörler
|
406
416
|
conferences:
|
407
417
|
partners:
|
408
418
|
collaborators: Ortaklar
|
@@ -453,7 +463,7 @@ tr:
|
|
453
463
|
home:
|
454
464
|
highlighted_conferences:
|
455
465
|
active_conferences: Aktif konferanslar
|
456
|
-
see_all_conferences: Tüm
|
466
|
+
see_all_conferences: Tüm konferanslara bak
|
457
467
|
photo:
|
458
468
|
image:
|
459
469
|
attributes:
|
data/config/locales/uk.yml
CHANGED
data/config/locales/val-ES.yml
CHANGED