decidim-meetings 0.26.2 → 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/meetings/content_blocks/highlighted_meetings_cell.rb +1 -1
- data/app/cells/decidim/meetings/content_blocks/upcoming_meetings/show.erb +1 -1
- data/app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb +2 -2
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +10 -1
- data/app/commands/decidim/meetings/admin/close_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/create_agenda.rb +1 -1
- data/app/commands/decidim/meetings/admin/create_meeting.rb +1 -4
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/export_meeting_registrations.rb +1 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +9 -11
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/unpublish_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_agenda.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +1 -4
- data/app/commands/decidim/meetings/admin/update_question_status.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +10 -7
- data/app/commands/decidim/meetings/admin/update_registrations.rb +5 -3
- data/app/commands/decidim/meetings/admin/validate_registration_code.rb +1 -1
- data/app/commands/decidim/meetings/close_meeting.rb +1 -1
- data/app/commands/decidim/meetings/create_answer.rb +1 -1
- data/app/commands/decidim/meetings/create_meeting.rb +1 -1
- data/app/commands/decidim/meetings/decline_invitation.rb +1 -1
- data/app/commands/decidim/meetings/join_meeting.rb +15 -7
- data/app/commands/decidim/meetings/leave_meeting.rb +3 -3
- data/app/commands/decidim/meetings/update_meeting.rb +1 -1
- data/app/commands/decidim/meetings/withdraw_meeting.rb +1 -1
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +4 -4
- data/app/controllers/concerns/decidim/meetings/filterable.rb +1 -7
- data/app/controllers/decidim/meetings/calendars_controller.rb +1 -1
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +17 -15
- data/app/controllers/decidim/meetings/meetings_controller.rb +21 -14
- data/app/events/decidim/meetings/meeting_registration_notification_event.rb +1 -1
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +2 -5
- data/app/forms/decidim/meetings/admin/meeting_registration_invite_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +3 -0
- data/app/forms/decidim/meetings/answer_form.rb +0 -1
- data/app/forms/decidim/meetings/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/meeting_form.rb +2 -2
- data/app/helpers/decidim/meetings/application_helper.rb +1 -1
- data/app/helpers/decidim/meetings/directory/application_helper.rb +1 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +1 -3
- data/app/jobs/decidim/meetings/send_close_meeting_reminder_job.rb +17 -0
- data/app/mailers/decidim/meetings/close_meeting_reminder_mailer.rb +43 -0
- data/app/models/decidim/meetings/answer.rb +2 -2
- data/app/models/decidim/meetings/invite.rb +2 -2
- data/app/models/decidim/meetings/meeting.rb +34 -16
- data/app/models/decidim/meetings/questionnaire.rb +6 -0
- data/app/models/decidim/meetings/registration.rb +2 -2
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +0 -4
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +2 -0
- data/app/presenters/decidim/meetings/admin_log/questionnaire_presenter.rb +39 -0
- data/app/queries/decidim/meetings/admin/invites.rb +1 -1
- data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
- data/app/queries/decidim/meetings/questionnaire_user_answers.rb +1 -1
- data/app/serializers/decidim/meetings/{data_portability_invite_serializer.rb → download_your_data_invite_serializer.rb} +2 -2
- data/app/serializers/decidim/meetings/{data_portability_registration_serializer.rb → download_your_data_registration_serializer.rb} +2 -2
- data/app/services/decidim/meetings/calendar/base_calendar.rb +4 -3
- data/app/services/decidim/meetings/calendar/component_calendar.rb +7 -9
- data/app/services/decidim/meetings/calendar/organization_calendar.rb +1 -1
- data/app/services/decidim/meetings/calendar_renderer.rb +4 -4
- data/app/services/decidim/meetings/close_meeting_reminder_generator.rb +68 -0
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +10 -6
- data/app/services/decidim/meetings/meeting_search.rb +7 -53
- data/app/views/decidim/meetings/_calendar_modal.html.erb +19 -2
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +4 -16
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +9 -0
- data/app/views/decidim/meetings/close_meeting_reminder_mailer/close_meeting_reminder.html.erb +5 -0
- data/app/views/decidim/meetings/directory/meetings/_filters.html.erb +7 -7
- data/app/views/decidim/meetings/directory/meetings/_meetings.html.erb +6 -1
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -1
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +7 -1
- data/app/views/decidim/meetings/layouts/live_event.html.erb +6 -2
- data/app/views/decidim/meetings/meetings/_count.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_filters.html.erb +7 -7
- data/app/views/decidim/meetings/meetings/_form.html.erb +4 -2
- data/app/views/decidim/meetings/meetings/_meetings.html.erb +11 -6
- data/app/views/decidim/meetings/meetings/index.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/index.js.erb +7 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +4 -7
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +24 -10
- data/config/locales/cs.yml +24 -10
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +10 -13
- data/config/locales/el.yml +1 -0
- data/config/locales/en.yml +23 -10
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +25 -11
- data/config/locales/es-PY.yml +25 -11
- data/config/locales/es.yml +25 -11
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +10 -11
- data/config/locales/fi-plain.yml +24 -10
- data/config/locales/fi.yml +24 -10
- data/config/locales/fr-CA.yml +22 -10
- data/config/locales/fr.yml +22 -10
- data/config/locales/ga-IE.yml +1 -9
- data/config/locales/gl.yml +14 -2
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +16 -8
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +7 -11
- data/config/locales/ja.yml +26 -12
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +6 -6
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +7 -11
- data/config/locales/no.yml +7 -12
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +2 -10
- data/config/locales/pt-BR.yml +3 -13
- data/config/locales/pt.yml +6 -11
- data/config/locales/ro-RO.yml +8 -8
- data/config/locales/ru.yml +1 -0
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +1 -0
- 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 +15 -11
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +1 -11
- 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 +1 -7
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20210512100333_drop_decidim_meetings_minutes_table.rb +2 -2
- data/db/migrate/20210518133236_merge_minutes_with_closing_report_in_meetings_table.rb +1 -1
- data/db/migrate/20211105115625_remove_not_null_on_customize_registration_email.rb +7 -0
- data/lib/decidim/api/meeting_type.rb +1 -1
- data/lib/decidim/meetings/component.rb +5 -5
- data/lib/decidim/meetings/{data_portability_user_answers_serializer.rb → download_your_data_user_answers_serializer.rb} +2 -2
- data/lib/decidim/meetings/engine.rb +14 -0
- data/lib/decidim/meetings/test/factories.rb +3 -1
- data/lib/decidim/meetings/test/notifications_handling.rb +1 -1
- data/lib/decidim/meetings/test/translated_event.rb +2 -2
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +5 -1
- metadata +27 -22
- data/app/services/decidim/meetings/directory/meeting_search.rb +0 -53
data/config/locales/ca.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
ca:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -89,15 +90,15 @@ ca:
|
|
89
90
|
values:
|
90
91
|
'false': Passades
|
91
92
|
'true': Properes
|
92
|
-
|
93
|
+
scope_id_eq:
|
94
|
+
label: Àmbit
|
95
|
+
with_any_origin:
|
93
96
|
label: Origen
|
94
97
|
values:
|
95
|
-
citizen: Ciutadania
|
96
98
|
official: Oficial
|
99
|
+
participants: Participant
|
97
100
|
user_group: Grups
|
98
|
-
|
99
|
-
label: Àmbit
|
100
|
-
type_eq:
|
101
|
+
with_any_type:
|
101
102
|
label: Tipus de trobada
|
102
103
|
values:
|
103
104
|
hybrid: Híbrida
|
@@ -303,17 +304,15 @@ ca:
|
|
303
304
|
update: Actualitzar
|
304
305
|
form:
|
305
306
|
address_help: 'Adreça: que farà servir per Geocoder per a trobar la localització'
|
306
|
-
available_slots_help: Deixa-ho a 0 si les places disponibles són il·limitades
|
307
307
|
disclaimer: 'Descàrrec de responsabilitat: en utilitzar un sistema d''inscripcions extern, ets conscient que els organitzadors de %{organization} no són responsables de les dades proporcionades per les usuàries al servei extern.'
|
308
308
|
location_help: 'Localització: missatge dirigit a les participants indicant el lloc on trobar-se'
|
309
309
|
location_hints_help: 'Detalls d''ubicació: informació addicional. Exemple: la planta de l''edifici si es tracta d''una reunió presencial, o la contrasenya de la reunió si es tracta d''una reunió en línia amb accés restringit.'
|
310
310
|
online_meeting_url_help: 'Enllaç: permetre que les participants es connectin directament a la teva trobada'
|
311
|
-
registration_email_help: Aquest text apareixerà enmig del correu de confirmació de la inscripció. Just a sota del codi d'inscripció.
|
312
311
|
registration_url_help: 'Enllaç: permetre a les participants anar al servei extern que estàs utilitzant per a les inscripcions'
|
313
312
|
select_a_meeting_type: Si us plau selecciona un tipus de trobada
|
314
313
|
select_a_registration_type: Si us plau selecciona un tipus d'inscripció
|
315
314
|
select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
|
316
|
-
show_embedded_iframe_help: Només uns quants serveis es poden incrustar a una trobada o esdeveniment en directe
|
315
|
+
show_embedded_iframe_help: 'Només uns quants serveis es poden incrustar a una trobada o esdeveniment en directe des dels següents dominis: %{domains}'
|
317
316
|
index:
|
318
317
|
title: Trobades
|
319
318
|
new:
|
@@ -356,6 +355,7 @@ ca:
|
|
356
355
|
available_slots_help: Deixar a 0 si les inscripcions són il·limitades.
|
357
356
|
invites: Invitacions
|
358
357
|
recommendation_message: Per raons de privacitat et recomanem que esborris aquest formulari d'inscripció quan ja no el necessitis. Per defecte això és 3 mesos després que la reunió hagi finalitzat.
|
358
|
+
registration_email_help: Aquest text apareixerà enmig del correu de confirmació de la inscripció. Just a sota del codi d'inscripció.
|
359
359
|
registration_form: Formulari d'inscripció
|
360
360
|
registrations_count:
|
361
361
|
one: Hi ha hagut %{count} inscripció.
|
@@ -383,6 +383,8 @@ ca:
|
|
383
383
|
value_types:
|
384
384
|
organizer_presenter:
|
385
385
|
not_found: 'L''organitzador no s''ha trobat a la base de dades (identificació: %{id})'
|
386
|
+
questionnaire:
|
387
|
+
update: "%{user_name} ha actualitzat el qüestionari per a la trobada %{meeting_name}"
|
386
388
|
application_helper:
|
387
389
|
filter_category_values:
|
388
390
|
all: Totes
|
@@ -393,7 +395,19 @@ ca:
|
|
393
395
|
calendar_modal:
|
394
396
|
calendar_url: URL del calendari
|
395
397
|
close_window: Tanca la finestra
|
398
|
+
copy_calendar_url: Copiar
|
399
|
+
copy_calendar_url_clarification: Copiar l'URL del calendari al porta-retalls
|
400
|
+
copy_calendar_url_copied: Copiat!
|
401
|
+
copy_calendar_url_description: Pots veure totes les reunions publicades a la teva aplicació o preveïdor de calendari. Copia i enganxa aquesta URL al teu calendari fent servir l'opció "Afegir nou calendari des d'una URL".
|
402
|
+
copy_calendar_url_explanation: Tingues en compte que estàs exportant una selecció de reunions, ja que hi ha filtres activats. Si vols exportar-les totes, primer elimina tots els filtres.
|
403
|
+
copy_calendar_url_message: S'ha copiat l'enllaç al porta-retalls correctament.
|
396
404
|
export_calendar: Exporta el calendari
|
405
|
+
close_meeting_reminder_mailer:
|
406
|
+
close_meeting_reminder:
|
407
|
+
body: La trobada <a href="%{meeting_path}">"%{meeting_title}"</a> està pendent de tancar-se. Si us plau, afegiu un informe de la reunió fent servir el botó "Tancar trobada".
|
408
|
+
greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
409
|
+
hello: Hola %{username},
|
410
|
+
subject: Ara pots tancar la trobada amb un informe a la plataforma %{organization_name}
|
397
411
|
conference_venues: Seus de les jornades
|
398
412
|
content_blocks:
|
399
413
|
upcoming_meetings:
|
@@ -468,8 +482,8 @@ ca:
|
|
468
482
|
origin: Origen
|
469
483
|
origin_values:
|
470
484
|
all: Tots
|
471
|
-
citizens: Ciutadania
|
472
485
|
official: Oficial
|
486
|
+
participants: Participants
|
473
487
|
user_groups: Grups
|
474
488
|
scope: Àmbit
|
475
489
|
search: Cerca
|
@@ -497,7 +511,7 @@ ca:
|
|
497
511
|
select_a_meeting_type: Si us plau selecciona un tipus de trobada
|
498
512
|
select_a_registration_type: Si us plau selecciona un tipus d'inscripció
|
499
513
|
select_an_iframe_access_level: Si us plau, selecciona el nivell d'accés a l'iframe
|
500
|
-
show_embedded_iframe_help: Només uns quants serveis es poden incrustar a una trobada o esdeveniment en directe
|
514
|
+
show_embedded_iframe_help: 'Només uns quants serveis es poden incrustar a una trobada o esdeveniment en directe des dels següents dominis: %{domains}'
|
501
515
|
index:
|
502
516
|
click_here: Veure totes les trobades
|
503
517
|
new_meeting: Nova trobada
|
data/config/locales/cs.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
cs:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -95,15 +96,15 @@ cs:
|
|
95
96
|
values:
|
96
97
|
'false': Minulé
|
97
98
|
'true': Nadcházející
|
98
|
-
|
99
|
+
scope_id_eq:
|
100
|
+
label: Oblast působnosti
|
101
|
+
with_any_origin:
|
99
102
|
label: Původ
|
100
103
|
values:
|
101
|
-
citizen: Občané
|
102
104
|
official: Úředník
|
105
|
+
participants: Účastník
|
103
106
|
user_group: Skupiny uživatelů
|
104
|
-
|
105
|
-
label: Oblast působnosti
|
106
|
-
type_eq:
|
107
|
+
with_any_type:
|
107
108
|
label: Typ schůzky
|
108
109
|
values:
|
109
110
|
hybrid: Hybridní
|
@@ -313,17 +314,15 @@ cs:
|
|
313
314
|
update: Aktualizace
|
314
315
|
form:
|
315
316
|
address_help: 'Adresa: použita Geocoderem k nalezení polohy'
|
316
|
-
available_slots_help: Ponechte 0, pokud máte k dispozici neomezený počet slotů
|
317
317
|
disclaimer: 'Prohlášení o zřeknutí: Použitím externího registračního systému jste si vědomi toho, že organizátoři %{organization} nejsou odpovědní za data poskytovaná uživateli externí službě.'
|
318
318
|
location_help: 'Poloha: zpráva určená uživatelům, kteří předávají místo, aby se setkali'
|
319
319
|
location_hints_help: 'Upřesnění k místu: dodatečné informace. Příklad: patro budovy, pokud se jedná o osobní schůzku, nebo vstupní heslo pro schůzku, pokud se jedná o schůzku s omezeným přístupem.'
|
320
320
|
online_meeting_url_help: 'Odkaz: Umožnit účastníkům připojení přímo k vaší schůzce'
|
321
|
-
registration_email_help: Tento text se zobrazí uprostřed potvrzení registračním e-mailem. Hned za registračním kódem.
|
322
321
|
registration_url_help: 'Odkaz: umožnit účastníkům jít na externí službu, kterou používáte pro registrace'
|
323
322
|
select_a_meeting_type: Vyberte prosím typ schůzky
|
324
323
|
select_a_registration_type: Vyberte prosím typ registrace
|
325
324
|
select_an_iframe_access_level: Vyberte prosím úroveň přístupu iframe
|
326
|
-
show_embedded_iframe_help: Pouze pár služeb umožňuje vložení do schůzky nebo živé události
|
325
|
+
show_embedded_iframe_help: 'Pouze pár služeb umožňuje vložení do schůzky nebo živé události z následujících domén: %{domains}'
|
327
326
|
index:
|
328
327
|
title: Setkání
|
329
328
|
new:
|
@@ -366,6 +365,7 @@ cs:
|
|
366
365
|
available_slots_help: Nechte to na 0, pokud máte k dispozici neomezené sloty.
|
367
366
|
invites: Pozvánky
|
368
367
|
recommendation_message: Z důvodu ochrany osobních údajů doporučujeme odstranit tento nadepsaný formulář, když jej již nepotřebujete. Ve výchozím nastavení je to 3 měsíce po ukončení schůzky.
|
368
|
+
registration_email_help: Tento text se zobrazí uprostřed potvrzení registračním e-mailem. Hned za registračním kódem.
|
369
369
|
registration_form: Registrační formulář
|
370
370
|
registrations_count:
|
371
371
|
one: Byla zde registrace %{count}.
|
@@ -395,6 +395,8 @@ cs:
|
|
395
395
|
value_types:
|
396
396
|
organizer_presenter:
|
397
397
|
not_found: 'Organizátor nebyl nalezen v databázi (ID: %{id})'
|
398
|
+
questionnaire:
|
399
|
+
update: "%{user_name} aktualizoval dotazník pro schůzku %{meeting_name}"
|
398
400
|
application_helper:
|
399
401
|
filter_category_values:
|
400
402
|
all: Vše
|
@@ -405,7 +407,19 @@ cs:
|
|
405
407
|
calendar_modal:
|
406
408
|
calendar_url: Adresa URL kalendáře
|
407
409
|
close_window: Zavřete okno
|
410
|
+
copy_calendar_url: Kopírovat
|
411
|
+
copy_calendar_url_clarification: Kopírovat URL kalendáře do schránky
|
412
|
+
copy_calendar_url_copied: Zkopírováno!
|
413
|
+
copy_calendar_url_description: Všechny zveřejněné schůzky můžete vidět v aplikaci nebo poskytovateli kalendáře. Zkopírujte a vložte tuto URL do kalendáře pomocí možnosti "Přidat nový kalendář z URL".
|
414
|
+
copy_calendar_url_explanation: Vezměte prosím na vědomí, že exportujete výběr schůzek, protože existují aktivní filtry. Pokud si přejete exportovat všechny, resetujte nejprve všechny filtry.
|
415
|
+
copy_calendar_url_message: URL byla úspěšně zkopírována do schránky.
|
408
416
|
export_calendar: Exportovat kalendář
|
417
|
+
close_meeting_reminder_mailer:
|
418
|
+
close_meeting_reminder:
|
419
|
+
body: Schůzka <a href="%{meeting_path}">"%{meeting_title}"</a> čeká na ukončení. Přidejte prosím zprávu o schůzce pomocí tlačítka "Zavřít schůzku".
|
420
|
+
greetings: Dobrý den,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
421
|
+
hello: Dobrý den %{username},
|
422
|
+
subject: Nyní můžete svou schůzku uzavřít se zprávou o platformě %{organization_name}
|
409
423
|
conference_venues: Konferenční prostory
|
410
424
|
content_blocks:
|
411
425
|
upcoming_meetings:
|
@@ -482,8 +496,8 @@ cs:
|
|
482
496
|
origin: Původ
|
483
497
|
origin_values:
|
484
498
|
all: Vše
|
485
|
-
citizens: Občané
|
486
499
|
official: Úředník
|
500
|
+
participants: Účastníci
|
487
501
|
user_groups: Skupiny
|
488
502
|
scope: Oblast působnosti
|
489
503
|
search: Vyhledávání
|
@@ -511,7 +525,7 @@ cs:
|
|
511
525
|
select_a_meeting_type: Vyberte prosím typ schůzky
|
512
526
|
select_a_registration_type: Vyberte prosím typ registrace
|
513
527
|
select_an_iframe_access_level: Vyberte prosím úroveň přístupu iframe
|
514
|
-
show_embedded_iframe_help: Pouze pár služeb umožňuje vložení do schůzky nebo živé události
|
528
|
+
show_embedded_iframe_help: 'Pouze pár služeb umožňuje vložení do schůzky nebo živé události z následujících domén: %{domains}'
|
515
529
|
index:
|
516
530
|
click_here: Zobrazit všechny schůzky
|
517
531
|
new_meeting: Nová schůzka
|
data/config/locales/da.yml
CHANGED
data/config/locales/de.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
de:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -76,19 +77,15 @@ de:
|
|
76
77
|
values:
|
77
78
|
'false': Vergangenheit
|
78
79
|
'true': Anstehend
|
79
|
-
origin_eq:
|
80
|
-
label: Ursprung
|
81
|
-
values:
|
82
|
-
citizen: Bürger
|
83
|
-
official: Offiziell
|
84
|
-
user_group: Benutzergruppen
|
85
80
|
scope_id_eq:
|
86
81
|
label: Umfang
|
87
|
-
|
82
|
+
with_any_origin:
|
83
|
+
values:
|
84
|
+
user_group: Benutzergruppen
|
85
|
+
with_any_type:
|
88
86
|
label: Art des Treffens
|
89
87
|
values:
|
90
88
|
in_person: Persönlich
|
91
|
-
online: Online
|
92
89
|
meeting_copies:
|
93
90
|
create:
|
94
91
|
error: Es gab einen Fehler beim Duplizieren dieses Meetings.
|
@@ -278,16 +275,13 @@ de:
|
|
278
275
|
update: Aktualisieren
|
279
276
|
form:
|
280
277
|
address_help: 'Adresse: wird von Geocoder zur Lokalisierung verwendet'
|
281
|
-
available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben
|
282
278
|
disclaimer: 'Haftungsausschluss: Durch Verwendung eines externen Registrierungssystems wissen Sie, dass die Organisatoren von %{organization} nicht für die Daten verantwortlich sind, welche die Benutzer dem externen Dienst zur Verfügung stellen.'
|
283
279
|
location_help: 'Ort: an die Benutzer gerichtete Nachricht mit dem Treffpunkt'
|
284
280
|
location_hints_help: 'Hinweise zum Standort: Zusätzliche Informationen. Beispiel: das Stockwerk im Gebäude wenn es eine Sitzung vor Ort ist, oder das Passwort wenn es eine Online-Sitzung mit eingeschränktem Zugriff ist.'
|
285
281
|
online_meeting_url_help: 'Link: Erlaubt Teilnehmern, sich direkt mit Ihrem Meeting zu verbinden'
|
286
|
-
registration_email_help: Dieser Text erscheint in der Mitte der Registrierungs-E-Mail, direkt nach dem Registrierungscode.
|
287
282
|
registration_url_help: 'Link: Erlaubt den Teilnehmern den externen Service zu nutzen, den Sie für die Registrierung verwenden'
|
288
283
|
select_a_meeting_type: Bitte eine Meeting-Typ auswählen
|
289
284
|
select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
|
290
|
-
show_embedded_iframe_help: Nur wenige Dienste erlauben das Einbetten einer Veranstaltung oder eines Livestreams (Youtube, Twitch und Jitsi)
|
291
285
|
index:
|
292
286
|
title: Meetings
|
293
287
|
new:
|
@@ -324,6 +318,7 @@ de:
|
|
324
318
|
available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben.
|
325
319
|
invites: Lädt ein
|
326
320
|
recommendation_message: Aus Datenschutzgründen empfehlen wir, dass Sie dieses Einschreibeformular löschen, wenn es nicht länger benötigt wird. Standardmäßig ist das 3 Monate nachdem die Besprechung durchgeführt wurde.
|
321
|
+
registration_email_help: Dieser Text erscheint in der Mitte der Registrierungs-E-Mail, direkt nach dem Registrierungscode.
|
327
322
|
registration_form: Anmeldeformular
|
328
323
|
registrations_count:
|
329
324
|
one: Es wurde %{count} registriert.
|
@@ -361,6 +356,10 @@ de:
|
|
361
356
|
calendar_modal:
|
362
357
|
calendar_url: Kalender-URL
|
363
358
|
close_window: Fenster schließen
|
359
|
+
copy_calendar_url: Kopieren
|
360
|
+
copy_calendar_url_copied: Kopiert!
|
361
|
+
copy_calendar_url_description: Sie können alle veröffentlichten Meetings in Ihrer Kalenderanwendung oder bei Ihrem Kalender-Anbieter sehen. Kopieren und fügen Sie diese URL mit der Option "Neuen Kalender von einer URL hinzufügen" in Ihren Kalender ein.
|
362
|
+
copy_calendar_url_explanation: Bitte beachten Sie, dass Sie eine Auswahl von Meetings exportieren, da es aktive Filter gibt. Wenn Sie alle exportieren möchten, setzen Sie zuerst alle Filter zurück.
|
364
363
|
export_calendar: Kalender exportieren
|
365
364
|
conference_venues: Tagungsstätten
|
366
365
|
content_blocks:
|
@@ -434,7 +433,6 @@ de:
|
|
434
433
|
origin: Ursprung
|
435
434
|
origin_values:
|
436
435
|
all: Alle
|
437
|
-
citizens: Einzelpersonen
|
438
436
|
official: Offiziell
|
439
437
|
user_groups: Gruppen
|
440
438
|
scope: Umfang
|
@@ -461,7 +459,6 @@ de:
|
|
461
459
|
select_a_category: Bitte wählen sie eine Kategorie
|
462
460
|
select_a_meeting_type: Bitte eine Meeting-Art auswählen
|
463
461
|
select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
|
464
|
-
show_embedded_iframe_help: Nur wenige Dienste erlauben das Einbetten einer Veranstaltung oder eines Livestreams (Youtube, Twitch und Jitsi)
|
465
462
|
index:
|
466
463
|
new_meeting: Neue Besprechung
|
467
464
|
meeting_minutes:
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
@@ -90,15 +90,15 @@ en:
|
|
90
90
|
values:
|
91
91
|
'false': Past
|
92
92
|
'true': Upcoming
|
93
|
-
|
93
|
+
scope_id_eq:
|
94
|
+
label: Scope
|
95
|
+
with_any_origin:
|
94
96
|
label: Origin
|
95
97
|
values:
|
96
|
-
citizen: Citizen
|
97
98
|
official: Official
|
99
|
+
participants: Participant
|
98
100
|
user_group: User Groups
|
99
|
-
|
100
|
-
label: Scope
|
101
|
-
type_eq:
|
101
|
+
with_any_type:
|
102
102
|
label: Type of meeting
|
103
103
|
values:
|
104
104
|
hybrid: Hybrid
|
@@ -304,17 +304,15 @@ en:
|
|
304
304
|
update: Update
|
305
305
|
form:
|
306
306
|
address_help: 'Address: used by Geocoder to find the location'
|
307
|
-
available_slots_help: Leave it to 0 if you have unlimited slots available
|
308
307
|
disclaimer: 'Disclaimer: By using an external registration system, you''re aware that the organizers of %{organization} are not responsible for the data provided by the users to the external service.'
|
309
308
|
location_help: 'Location: message directed to the users implying the spot to meet at'
|
310
309
|
location_hints_help: 'Location hints: additional info. Example: the floor of the building if it is an in-person meeting, or the meeting password if it is an online meeting with restricted access.'
|
311
310
|
online_meeting_url_help: 'Link: allow participants to connect directly to your meeting'
|
312
|
-
registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
|
313
311
|
registration_url_help: 'Link: allow participants to go on the external service you are using for registrations'
|
314
312
|
select_a_meeting_type: Please select a meeting type
|
315
313
|
select_a_registration_type: Please select a registration type
|
316
314
|
select_an_iframe_access_level: Please select an iframe access level
|
317
|
-
show_embedded_iframe_help: Only a few services allow embedding in meeting or live event
|
315
|
+
show_embedded_iframe_help: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
|
318
316
|
index:
|
319
317
|
title: Meetings
|
320
318
|
new:
|
@@ -357,6 +355,7 @@ en:
|
|
357
355
|
available_slots_help: Leave it to 0 if you have unlimited slots available.
|
358
356
|
invites: Invitations
|
359
357
|
recommendation_message: For privacy reasons we recommend that you delete this inscription form when you no longer need it. By default this is 3 months after the meeting has ended.
|
358
|
+
registration_email_help: This text will appear in the middle of the registration confirmation email. Just after the registration code.
|
360
359
|
registration_form: Registration form
|
361
360
|
registrations_count:
|
362
361
|
one: There has been %{count} registration.
|
@@ -384,6 +383,8 @@ en:
|
|
384
383
|
value_types:
|
385
384
|
organizer_presenter:
|
386
385
|
not_found: 'The organizer was not found on the database (ID: %{id})'
|
386
|
+
questionnaire:
|
387
|
+
update: "%{user_name} updated the questionnaire for the %{meeting_name} meeting"
|
387
388
|
application_helper:
|
388
389
|
filter_category_values:
|
389
390
|
all: All
|
@@ -394,7 +395,19 @@ en:
|
|
394
395
|
calendar_modal:
|
395
396
|
calendar_url: Calendar URL
|
396
397
|
close_window: Close window
|
398
|
+
copy_calendar_url: Copy
|
399
|
+
copy_calendar_url_clarification: Copy calendar URL to clipboard
|
400
|
+
copy_calendar_url_copied: Copied!
|
401
|
+
copy_calendar_url_description: You can see all the published meetings in your calendar application or provider. Copy and paste this URL in your calendar using the "Add new calendar from an URL" option.
|
402
|
+
copy_calendar_url_explanation: Please note that you're exporting a selection of meetings, as there are active filters. If you wish to export them all, reset all filters first.
|
403
|
+
copy_calendar_url_message: The URL was successfully copied to clipboard.
|
397
404
|
export_calendar: Export calendar
|
405
|
+
close_meeting_reminder_mailer:
|
406
|
+
close_meeting_reminder:
|
407
|
+
body: The meeting <a href="%{meeting_path}">"%{meeting_title}"</a> is pending to be closed. Please add a report of the meeting using the "Close meeting" button.
|
408
|
+
greetings: Greetings,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
409
|
+
hello: Hello %{username},
|
410
|
+
subject: You can now close your meeting with a report on the %{organization_name} platform
|
398
411
|
conference_venues: Conference Venues
|
399
412
|
content_blocks:
|
400
413
|
upcoming_meetings:
|
@@ -469,8 +482,8 @@ en:
|
|
469
482
|
origin: Origin
|
470
483
|
origin_values:
|
471
484
|
all: All
|
472
|
-
citizens: Citizens
|
473
485
|
official: Official
|
486
|
+
participants: Participants
|
474
487
|
user_groups: Groups
|
475
488
|
scope: Scope
|
476
489
|
search: Search
|
@@ -498,7 +511,7 @@ en:
|
|
498
511
|
select_a_meeting_type: Please select a meeting type
|
499
512
|
select_a_registration_type: Please select a registration type
|
500
513
|
select_an_iframe_access_level: Please select an iframe access level
|
501
|
-
show_embedded_iframe_help: Only a few services allow embedding in meeting or live event
|
514
|
+
show_embedded_iframe_help: 'Only a few services allow embedding in meeting or live event from the following domains: %{domains}'
|
502
515
|
index:
|
503
516
|
click_here: See all meetings
|
504
517
|
new_meeting: New meeting
|
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:
|
@@ -89,15 +90,15 @@ es-MX:
|
|
89
90
|
values:
|
90
91
|
'false': Pasados
|
91
92
|
'true': Próximos
|
92
|
-
|
93
|
+
scope_id_eq:
|
94
|
+
label: Ámbito
|
95
|
+
with_any_origin:
|
93
96
|
label: Origen
|
94
97
|
values:
|
95
|
-
citizen: Ciudadanía
|
96
98
|
official: Oficial
|
99
|
+
participants: Participante
|
97
100
|
user_group: Grupos
|
98
|
-
|
99
|
-
label: Ámbito
|
100
|
-
type_eq:
|
101
|
+
with_any_type:
|
101
102
|
label: Tipo de encuentro
|
102
103
|
values:
|
103
104
|
hybrid: Híbrido
|
@@ -303,17 +304,15 @@ es-MX:
|
|
303
304
|
update: Actualizar
|
304
305
|
form:
|
305
306
|
address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
|
306
|
-
available_slots_help: Déjalo a 0 si tienes espacio ilimitado disponible
|
307
307
|
disclaimer: 'Descargo de responsabilidad: Mediante el uso de un sistema de inscripción externo, aceptas que los organizadores de %{organization} no son responsables de los datos proporcionados por los usuarios al servicio externo.'
|
308
308
|
location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
|
309
309
|
location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
|
310
310
|
online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
|
311
|
-
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
312
311
|
registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
|
313
312
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
314
313
|
select_a_registration_type: Por favor, seleccione un tipo de inscripción
|
315
314
|
select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
|
316
|
-
show_embedded_iframe_help:
|
315
|
+
show_embedded_iframe_help: 'Solo unos pocos servicios permiten incrustar en reuniones o eventos en vivo desde los siguientes dominios: %{domains}'
|
317
316
|
index:
|
318
317
|
title: Encuentros
|
319
318
|
new:
|
@@ -356,6 +355,7 @@ es-MX:
|
|
356
355
|
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
357
356
|
invites: Invitaciones
|
358
357
|
recommendation_message: Por razones de privacidad te recomendamos que elimines este formulario de inscripción cuando ya no lo necesites. Por defecto, esto es 3 meses después de que la reunión haya finalizado.
|
358
|
+
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
359
359
|
registration_form: Formulario de inscripción
|
360
360
|
registrations_count:
|
361
361
|
one: Ha habido %{count} inscripción.
|
@@ -383,6 +383,8 @@ es-MX:
|
|
383
383
|
value_types:
|
384
384
|
organizer_presenter:
|
385
385
|
not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
|
386
|
+
questionnaire:
|
387
|
+
update: "%{user_name} ha actualizado el cuestionario del encuentro %{meeting_name}"
|
386
388
|
application_helper:
|
387
389
|
filter_category_values:
|
388
390
|
all: Todas
|
@@ -393,7 +395,19 @@ es-MX:
|
|
393
395
|
calendar_modal:
|
394
396
|
calendar_url: URL del calendario
|
395
397
|
close_window: Cerrar ventana
|
398
|
+
copy_calendar_url: Copiar
|
399
|
+
copy_calendar_url_clarification: Copiar la URL del calendario al portapapeles
|
400
|
+
copy_calendar_url_copied: '¡Copiado!'
|
401
|
+
copy_calendar_url_description: Puedes ver todas las reuniones publicadas en tu aplicación o proveedor de calendario. Copia y pega esta URL en tu calendario usando la opción "Añadir nuevo calendario desde una URL".
|
402
|
+
copy_calendar_url_explanation: Ten en cuenta que estás exportando una selección de encuentros, ya que hay filtros activos. Si deseas exportarlos todos, primero elimina todos los filtros.
|
403
|
+
copy_calendar_url_message: Se ha copiado el enlace al portapapeles correctamente.
|
396
404
|
export_calendar: Exportar calendario
|
405
|
+
close_meeting_reminder_mailer:
|
406
|
+
close_meeting_reminder:
|
407
|
+
body: El encuentro <a href="%{meeting_path}">"%{meeting_title}"</a> está pendiente de cerrarse. Por favor, agrega un informe de la reunión usando el botón "Cerrar encuentro".
|
408
|
+
greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
409
|
+
hello: Hola %{username},
|
410
|
+
subject: Ahora puedes cerrar el encuentro con un informe en la plataforma %{organization_name}
|
397
411
|
conference_venues: Sedes de las jornadas
|
398
412
|
content_blocks:
|
399
413
|
upcoming_meetings:
|
@@ -468,8 +482,8 @@ es-MX:
|
|
468
482
|
origin: Origen
|
469
483
|
origin_values:
|
470
484
|
all: Todos
|
471
|
-
citizens: Ciudadanos
|
472
485
|
official: Oficial
|
486
|
+
participants: Participantes
|
473
487
|
user_groups: Grupos
|
474
488
|
scope: Ámbito
|
475
489
|
search: Buscar
|
@@ -497,7 +511,7 @@ es-MX:
|
|
497
511
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
498
512
|
select_a_registration_type: Por favor, selecciona un tipo de inscripción
|
499
513
|
select_an_iframe_access_level: Por favor, selecciona un nivel de acceso iframe
|
500
|
-
show_embedded_iframe_help:
|
514
|
+
show_embedded_iframe_help: 'Solo unos pocos servicios permiten incrustar en reuniones o eventos en vivo desde los siguientes dominios: %{domains}'
|
501
515
|
index:
|
502
516
|
click_here: Ver todos los encuentros
|
503
517
|
new_meeting: Nuevo encuentro
|
@@ -618,7 +632,7 @@ es-MX:
|
|
618
632
|
invalid: Ha habido un problema al salir de esta encuentro.
|
619
633
|
success: Has salido del encuentro con éxito.
|
620
634
|
type_of_meeting:
|
621
|
-
hybrid:
|
635
|
+
hybrid: Híbrido
|
622
636
|
in_person: Presencial
|
623
637
|
online: En línea
|
624
638
|
types:
|
data/config/locales/es-PY.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
es-PY:
|
2
3
|
activemodel:
|
3
4
|
attributes:
|
@@ -89,15 +90,15 @@ es-PY:
|
|
89
90
|
values:
|
90
91
|
'false': Pasados
|
91
92
|
'true': Próximos
|
92
|
-
|
93
|
+
scope_id_eq:
|
94
|
+
label: Ámbito
|
95
|
+
with_any_origin:
|
93
96
|
label: Origen
|
94
97
|
values:
|
95
|
-
citizen: Ciudadanía
|
96
98
|
official: Oficial
|
99
|
+
participants: Participante
|
97
100
|
user_group: Grupos
|
98
|
-
|
99
|
-
label: Ámbito
|
100
|
-
type_eq:
|
101
|
+
with_any_type:
|
101
102
|
label: Tipo de encuentro
|
102
103
|
values:
|
103
104
|
hybrid: Híbrido
|
@@ -303,17 +304,15 @@ es-PY:
|
|
303
304
|
update: Actualizar
|
304
305
|
form:
|
305
306
|
address_help: 'Dirección: usada por Geocoder para encontrar la ubicación'
|
306
|
-
available_slots_help: Déjalo a 0 si tienes espacio ilimitado disponible
|
307
307
|
disclaimer: 'Descargo de responsabilidad: Mediante el uso de un sistema de inscripción externo, aceptas que los organizadores de %{organization} no son responsables de los datos proporcionados por los usuarios al servicio externo.'
|
308
308
|
location_help: 'Ubicación: mensaje dirigido a las participantes indicando el lugar donde reunirse'
|
309
309
|
location_hints_help: 'Consejos de ubicación: información adicional. Ejemplo: la planta del edificio si se trata de un encuentro presencial, o la contraseña de la sala si se trata de un encuentro online con acceso restringido.'
|
310
310
|
online_meeting_url_help: 'Enlace: permitir a las participantes conectarse directamente a tu encuentro'
|
311
|
-
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
312
311
|
registration_url_help: 'Enlace: permitir a las participantes ir al servicio externo que estás utilizando para las inscripciones'
|
313
312
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
314
313
|
select_a_registration_type: Por favor, seleccione un tipo de inscripción
|
315
314
|
select_an_iframe_access_level: Por favor, seleccione un nivel de acceso iframe
|
316
|
-
show_embedded_iframe_help: Solo unos pocos servicios
|
315
|
+
show_embedded_iframe_help: 'Solo unos pocos servicios permiten ser incrustados en encuentros o eventos en vivo desde los siguientes dominios: %{domains}'
|
317
316
|
index:
|
318
317
|
title: Encuentros
|
319
318
|
new:
|
@@ -356,6 +355,7 @@ es-PY:
|
|
356
355
|
available_slots_help: Déjalo a 0 si tiene inscripciones ilimitadas.
|
357
356
|
invites: Invitaciones
|
358
357
|
recommendation_message: Por razones de privacidad te recomendamos que elimines este formulario de inscripción cuando ya no lo necesites. Por defecto, esto es 3 meses después de que la reunión haya finalizado.
|
358
|
+
registration_email_help: Este texto aparecerá en medio del correo de confirmación de inscripción. Justo después del código de inscripción.
|
359
359
|
registration_form: Formulario de inscripción
|
360
360
|
registrations_count:
|
361
361
|
one: Ha habido %{count} registro.
|
@@ -383,6 +383,8 @@ es-PY:
|
|
383
383
|
value_types:
|
384
384
|
organizer_presenter:
|
385
385
|
not_found: 'El organizador no se encontró en la base de datos (ID: %{id})'
|
386
|
+
questionnaire:
|
387
|
+
update: "%{user_name} ha actualizado el cuestionario del encuentro %{meeting_name}"
|
386
388
|
application_helper:
|
387
389
|
filter_category_values:
|
388
390
|
all: Todas
|
@@ -393,7 +395,19 @@ es-PY:
|
|
393
395
|
calendar_modal:
|
394
396
|
calendar_url: URL del calendario
|
395
397
|
close_window: Cerrar ventana
|
398
|
+
copy_calendar_url: Copiar
|
399
|
+
copy_calendar_url_clarification: Copiar la URL del calendario al portapapeles
|
400
|
+
copy_calendar_url_copied: '¡Copiado!'
|
401
|
+
copy_calendar_url_description: Puedes ver todas las reuniones publicadas en tu aplicación o proveedor de calendario. Copia y pega esta URL en tu calendario usando la opción "Añadir nuevo calendario desde una URL".
|
402
|
+
copy_calendar_url_explanation: Ten en cuenta que estás exportando una selección de encuentros, ya que hay filtros activos. Si deseas exportarlos todos, primero elimina todos los filtros.
|
403
|
+
copy_calendar_url_message: Se ha copiado el enlace al portapapeles correctamente.
|
396
404
|
export_calendar: Exportar calendario
|
405
|
+
close_meeting_reminder_mailer:
|
406
|
+
close_meeting_reminder:
|
407
|
+
body: El encuentro <a href="%{meeting_path}">"%{meeting_title}"</a> está pendiente de cerrarse. Por favor, agrega un informe de la reunión usando el botón "Cerrar encuentro".
|
408
|
+
greetings: Hola,<br/>%{organization_name}<br/><a href="%{organization_url}">%{organization_url}</a>
|
409
|
+
hello: Hola %{username},
|
410
|
+
subject: Ahora puedes cerrar el encuentro con un informe en la plataforma %{organization_name}
|
397
411
|
conference_venues: Lugares de conferencia
|
398
412
|
content_blocks:
|
399
413
|
upcoming_meetings:
|
@@ -468,8 +482,8 @@ es-PY:
|
|
468
482
|
origin: Origen
|
469
483
|
origin_values:
|
470
484
|
all: Todos
|
471
|
-
citizens: Ciudadanos
|
472
485
|
official: Oficial
|
486
|
+
participants: Participantes
|
473
487
|
user_groups: Grupos
|
474
488
|
scope: Ámbito
|
475
489
|
search: Buscar
|
@@ -497,7 +511,7 @@ es-PY:
|
|
497
511
|
select_a_meeting_type: Por favor, selecciona un tipo de encuentro
|
498
512
|
select_a_registration_type: Por favor, selecciona un tipo de inscripción
|
499
513
|
select_an_iframe_access_level: Por favor, selecciona un nivel de acceso iframe
|
500
|
-
show_embedded_iframe_help: Solo unos pocos servicios
|
514
|
+
show_embedded_iframe_help: 'Solo unos pocos servicios permiten ser incrustados en encuentros o eventos en vivo desde los siguientes dominios: %{domains}'
|
501
515
|
index:
|
502
516
|
click_here: Ver todos los encuentros
|
503
517
|
new_meeting: Nuevo encuentro
|
@@ -618,7 +632,7 @@ es-PY:
|
|
618
632
|
invalid: Ha habido un problema al salir de esta encuentro.
|
619
633
|
success: Has salido del encuentro con éxito.
|
620
634
|
type_of_meeting:
|
621
|
-
hybrid:
|
635
|
+
hybrid: Híbrido
|
622
636
|
in_person: Presencial
|
623
637
|
online: En línea
|
624
638
|
types:
|