decidim-meetings 0.24.3 → 0.25.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/join_meeting_button/registration_confirm.erb +6 -0
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +8 -6
- data/app/cells/decidim/meetings/meeting_m_cell.rb +4 -0
- data/app/cells/decidim/meetings/meeting_url/show.erb +7 -2
- data/app/cells/decidim/meetings/meeting_url_cell.rb +14 -2
- data/app/cells/decidim/meetings/meetings_map/show.erb +1 -1
- data/app/cells/decidim/meetings/online_meeting_cell.rb +30 -0
- data/app/cells/decidim/meetings/online_meeting_link/show.erb +44 -0
- data/app/cells/decidim/meetings/online_meeting_link_cell.rb +34 -0
- data/app/cells/decidim/meetings/public_participants_list/show.erb +16 -0
- data/app/cells/decidim/meetings/public_participants_list_cell.rb +31 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -0
- data/app/cells/decidim/meetings/question_responses_cell.rb +72 -0
- data/app/commands/decidim/meetings/admin/close_meeting.rb +3 -0
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +0 -9
- data/app/commands/decidim/meetings/admin/create_meeting.rb +4 -20
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +2 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +72 -0
- data/app/commands/decidim/meetings/admin/unpublish_meeting.rb +45 -0
- data/app/commands/decidim/meetings/admin/update_meeting.rb +6 -3
- data/app/commands/decidim/meetings/admin/update_question_status.rb +57 -0
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +93 -0
- data/app/commands/decidim/meetings/close_meeting.rb +2 -0
- data/app/commands/decidim/meetings/create_answer.rb +52 -0
- data/app/commands/decidim/meetings/create_meeting.rb +3 -1
- data/app/commands/decidim/meetings/join_meeting.rb +2 -1
- data/app/commands/decidim/meetings/update_meeting.rb +2 -1
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +55 -0
- data/app/controllers/concerns/decidim/meetings/polls_resources.rb +29 -0
- data/app/controllers/decidim/meetings/admin/application_controller.rb +6 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +0 -2
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +46 -1
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +107 -0
- data/app/controllers/decidim/meetings/calendars_controller.rb +8 -0
- data/app/controllers/decidim/meetings/live_events_controller.rb +29 -0
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/polls/answers_controller.rb +37 -0
- data/app/controllers/decidim/meetings/polls/questions_controller.rb +45 -0
- data/app/events/decidim/meetings/create_meeting_event.rb +16 -0
- data/app/forms/decidim/meetings/admin/answer_option_form.rb +24 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +3 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +12 -1
- data/app/forms/decidim/meetings/admin/question_form.rb +44 -0
- data/app/forms/decidim/meetings/admin/questionnaire_form.rb +19 -0
- data/app/forms/decidim/meetings/answer_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/answer_form.rb +65 -0
- data/app/forms/decidim/meetings/close_meeting_form.rb +4 -0
- data/app/forms/decidim/meetings/join_meeting_form.rb +1 -0
- data/app/forms/decidim/meetings/meeting_form.rb +9 -0
- data/app/helpers/decidim/meetings/admin/filterable_helper.rb +13 -0
- data/app/helpers/decidim/meetings/application_helper.rb +3 -2
- data/app/helpers/decidim/meetings/meetings_helper.rb +21 -0
- data/app/models/decidim/meetings/answer.rb +48 -0
- data/app/models/decidim/meetings/answer_choice.rb +15 -0
- data/app/models/decidim/meetings/answer_option.rb +24 -0
- data/app/models/decidim/meetings/meeting.rb +88 -42
- data/app/models/decidim/meetings/poll.rb +19 -0
- data/app/models/decidim/meetings/question.rb +54 -0
- data/app/models/decidim/meetings/questionnaire.rb +23 -0
- data/app/models/decidim/meetings/registration.rb +2 -0
- data/app/packs/entrypoints/decidim_meetings.js +6 -0
- data/app/packs/entrypoints/decidim_meetings_admin.js +5 -0
- data/app/{assets/images/decidim/gamification/badges/attended_meetings.svg → packs/images/decidim/gamification/badges/decidim_gamification_badges_attended_meetings.svg} +0 -0
- data/app/{assets/images/decidim/meetings/icon.svg → packs/images/decidim/meetings/decidim_meetings.svg} +0 -0
- data/app/packs/src/decidim/meetings/admin/agendas.js +159 -0
- data/app/{assets/javascripts/decidim/meetings/admin/destroy_meeting_alert.js.es6 → packs/src/decidim/meetings/admin/destroy_meeting_alert.js} +0 -0
- data/app/{assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 → packs/src/decidim/meetings/admin/meetings_form.js} +7 -4
- data/app/{assets/javascripts/decidim/meetings/admin/registrations_form.js.es6 → packs/src/decidim/meetings/admin/registrations_form.js} +0 -0
- data/app/{assets/javascripts/decidim/meetings/admin/registrations_invite_form.es6 → packs/src/decidim/meetings/admin/registrations_invite_form.js} +3 -3
- data/app/packs/src/decidim/meetings/meetings_form.js +54 -0
- data/app/packs/src/decidim/meetings/meetings_polls.js +41 -0
- data/app/packs/src/decidim/meetings/poll.component.js +166 -0
- data/app/packs/stylesheets/decidim/meetings/_header.scss +52 -0
- data/app/packs/stylesheets/decidim/meetings/_main.scss +178 -0
- data/app/packs/stylesheets/decidim/meetings/_meetings.scss +2 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +16 -8
- data/app/permissions/decidim/meetings/permissions.rb +42 -17
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +5 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +22 -1
- data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +1 -1
- data/app/queries/decidim/meetings/questionnaire_user_answers.rb +29 -0
- data/app/serializers/decidim/meetings/data_portability_invite_serializer.rb +2 -1
- data/app/serializers/decidim/meetings/data_portability_registration_serializer.rb +2 -1
- data/app/serializers/decidim/meetings/registration_serializer.rb +3 -12
- data/app/services/decidim/meetings/calendar/component_calendar.rb +2 -2
- data/app/services/decidim/meetings/calendar/meeting_calendar.rb +33 -0
- data/app/services/decidim/meetings/calendar_renderer.rb +2 -0
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +86 -0
- data/app/services/decidim/meetings/meeting_search.rb +2 -2
- data/app/views/decidim/meetings/admin/agenda/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +16 -1
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +16 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +39 -11
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +34 -0
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +63 -0
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +96 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +9 -0
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +1 -1
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +4 -4
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +2 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +50 -0
- data/app/views/decidim/meetings/live_events/show.html.erb +12 -0
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +8 -1
- data/app/views/decidim/meetings/meeting_closes/edit.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_calendar_modal.html.erb +26 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/_form.html.erb +6 -1
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +7 -18
- data/app/views/decidim/meetings/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/index.html.erb +4 -4
- data/app/views/decidim/meetings/meetings/new.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +12 -13
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +19 -0
- data/app/views/decidim/meetings/polls/answers/create.js.erb +5 -0
- data/app/views/decidim/meetings/polls/questions/_closed_question.html.erb +7 -0
- data/app/views/decidim/meetings/polls/questions/_index.html.erb +5 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +43 -0
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +29 -0
- data/app/views/decidim/meetings/polls/questions/_question.html.erb +7 -0
- data/app/views/decidim/meetings/polls/questions/index.js.erb +5 -0
- data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +5 -0
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +5 -2
- data/app/views/devise/mailer/join_meeting.html.erb +6 -6
- data/config/assets.rb +11 -0
- data/config/locales/ar.yml +3 -24
- data/config/locales/ca.yml +36 -27
- data/config/locales/cs.yml +72 -26
- data/config/locales/de.yml +22 -27
- data/config/locales/el.yml +3 -24
- data/config/locales/en.yml +112 -26
- data/config/locales/es-MX.yml +13 -27
- data/config/locales/es-PY.yml +13 -27
- data/config/locales/es.yml +13 -27
- data/config/locales/eu.yml +3 -24
- data/config/locales/fi-plain.yml +70 -26
- data/config/locales/fi.yml +70 -26
- data/config/locales/fr-CA.yml +19 -26
- data/config/locales/fr-LU.yml +534 -0
- data/config/locales/fr.yml +19 -26
- data/config/locales/gl.yml +46 -24
- data/config/locales/hu.yml +5 -24
- data/config/locales/id-ID.yml +3 -24
- data/config/locales/is-IS.yml +2 -22
- data/config/locales/it.yml +117 -23
- data/config/locales/ja.yml +148 -58
- data/config/locales/lb-LU.yml +1 -0
- data/config/locales/lv.yml +3 -24
- data/config/locales/nl.yml +70 -25
- data/config/locales/no.yml +5 -26
- data/config/locales/pl.yml +22 -33
- data/config/locales/pt-BR.yml +178 -23
- data/config/locales/pt.yml +3 -24
- data/config/locales/ro-RO.yml +38 -27
- data/config/locales/ru.yml +3 -24
- data/config/locales/sk.yml +3 -24
- data/config/locales/sv.yml +36 -27
- data/config/locales/tr-TR.yml +5 -27
- data/config/locales/uk.yml +3 -24
- data/config/locales/zh-CN.yml +3 -24
- data/db/migrate/20210217124802_add_registration_custom_content_to_meetings.rb +8 -0
- data/db/migrate/20210413050756_add_published_at_to_meetings.rb +7 -0
- data/db/migrate/20210413050917_update_published_at_to_existing_meetings.rb +20 -0
- data/db/migrate/20210430123416_add_public_participation_to_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20210506180226_merge_meetings_minutes_into_meetings_table.rb +48 -0
- data/db/migrate/20210512055802_create_decidim_meetings_polls.rb +10 -0
- data/db/migrate/20210512100333_drop_decidim_meetings_minutes_table.rb +77 -0
- data/db/migrate/20210518133236_merge_minutes_with_closing_report_in_meetings_table.rb +57 -0
- data/db/migrate/20210520084247_create_decidim_meetings_questionnaires.rb +11 -0
- data/db/migrate/20210520084253_create_decidim_meetings_questions.rb +15 -0
- data/db/migrate/20210520084321_create_decidim_meetings_answers.rb +13 -0
- data/db/migrate/20210520084330_create_decidim_meetings_answer_options.rb +10 -0
- data/db/migrate/20210520084337_create_decidim_meetings_answer_choices.rb +13 -0
- data/db/migrate/20210520134834_add_status_to_meetings_questions.rb +7 -0
- data/db/migrate/20210602040614_add_setting_embed_iframe_to_meetings.rb +7 -0
- data/lib/decidim/api/linked_resources_interface.rb +8 -1
- data/lib/decidim/api/meeting_type.rb +19 -4
- data/lib/decidim/api/meetings_type.rb +2 -2
- data/lib/decidim/meetings.rb +10 -0
- data/lib/decidim/meetings/admin_engine.rb +5 -1
- data/lib/decidim/meetings/api.rb +0 -1
- data/lib/decidim/meetings/component.rb +41 -6
- data/lib/decidim/meetings/data_portability_user_answers_serializer.rb +33 -0
- data/lib/decidim/meetings/engine.rb +10 -11
- data/lib/decidim/meetings/meeting_serializer.rb +1 -0
- data/lib/decidim/meetings/polls.rb +10 -0
- data/lib/decidim/meetings/test/factories.rb +85 -9
- data/lib/decidim/meetings/user_answers_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +104 -114
- data/app/assets/config/decidim_meetings_manifest.js +0 -9
- data/app/assets/javascripts/decidim/meetings/admin/agendas.js.es6 +0 -158
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +0 -54
- data/app/commands/decidim/meetings/admin/create_minutes.rb +0 -55
- data/app/commands/decidim/meetings/admin/update_minutes.rb +0 -63
- data/app/controllers/decidim/meetings/admin/minutes_controller.rb +0 -69
- data/app/forms/decidim/meetings/admin/minutes_form.rb +0 -20
- data/app/models/decidim/meetings/minutes.rb +0 -22
- data/app/presenters/decidim/meetings/admin_log/minutes_presenter.rb +0 -42
- data/app/views/decidim/meetings/admin/minutes/_form.html.erb +0 -23
- data/app/views/decidim/meetings/admin/minutes/edit.html.erb +0 -7
- data/app/views/decidim/meetings/admin/minutes/new.html.erb +0 -7
- data/app/views/decidim/meetings/meetings/_online_meeting_link.html.erb +0 -11
- data/config/locales/ja-JP.yml +0 -494
- data/lib/decidim/api/minutes_type.rb +0 -20
data/config/locales/fr.yml
CHANGED
@@ -8,12 +8,16 @@ fr:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Nombre de participants
|
10
10
|
attending_organizations: Liste des organisations qui ont participé à cette rencontre
|
11
|
+
audio_url: URL de l'audio
|
11
12
|
closing_report: Compte rendu
|
13
|
+
closing_visible: Est visible
|
12
14
|
contributions_count: Nombre de contributions
|
13
15
|
proposal_ids: Propositions élaborées lors de la rencontre
|
16
|
+
video_url: URL de la vidéo
|
14
17
|
meeting:
|
15
18
|
address: Adresse
|
16
19
|
available_slots: Places disponibles pour cette rencontre
|
20
|
+
customize_registration_email: Personnaliser l'email d'inscription
|
17
21
|
decidim_category_id: Catégorie
|
18
22
|
decidim_scope_id: Périmètre d'application
|
19
23
|
decidim_user_group_id: Groupe d'utilisateurs
|
@@ -25,6 +29,7 @@ fr:
|
|
25
29
|
organizer_gid: Créer en tant que
|
26
30
|
organizer_id: Organisateur
|
27
31
|
private_meeting: Rencontre privée
|
32
|
+
registration_email_custom_content: Contenu personnalisé de l'e-mail d'inscription
|
28
33
|
registration_form_enabled: Formulaire d'inscription activé
|
29
34
|
registration_terms: Conditions d'inscription
|
30
35
|
registration_url: URL d'inscription
|
@@ -33,11 +38,6 @@ fr:
|
|
33
38
|
title: Titre
|
34
39
|
transparent: Visible par les non-membres
|
35
40
|
type_of_meeting: Type
|
36
|
-
minutes:
|
37
|
-
audio_url: URL de l'audio
|
38
|
-
description: Description
|
39
|
-
video_url: URL de la vidéo
|
40
|
-
visible: Est visible
|
41
41
|
errors:
|
42
42
|
models:
|
43
43
|
meeting_agenda:
|
@@ -90,6 +90,7 @@ fr:
|
|
90
90
|
creation_enabled_for_participants: Les participants peuvent créer des rencontres
|
91
91
|
default_registration_terms: Conditions d'inscription par défaut
|
92
92
|
enable_pads_creation: Activer la création de pads
|
93
|
+
maps_enabled: Cartes activées
|
93
94
|
registration_code_enabled: Code d'enregistrement activé
|
94
95
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
95
96
|
scope_id: Secteur
|
@@ -114,6 +115,7 @@ fr:
|
|
114
115
|
email_subject: La rencontre "%{resource_title}" est terminée
|
115
116
|
notification_title: La rencontre <a href="%{resource_path}">%{resource_title}</a> est terminée.
|
116
117
|
meeting_created:
|
118
|
+
button_text: S'inscrire à la réunion
|
117
119
|
email_intro: La rencontre "%{resource_title}" a été ajoutée à "%{participatory_space_title}" que vous suivez.
|
118
120
|
email_outro: Vous avez reçu cette notification parce que vous suivez "%{participatory_space_title}". Vous pouvez arrêter le suivi à partir du lien précédent.
|
119
121
|
email_subject: Nouvelle rencontre ajoutée à %{participatory_space_title}
|
@@ -170,7 +172,6 @@ fr:
|
|
170
172
|
proposals_count:
|
171
173
|
one: 'La rencontre ne peut être supprimée car %{count} proposition y est rattachée:'
|
172
174
|
other: 'La rencontre ne peut être supprimée car %{count} propositions y sont rattachées:'
|
173
|
-
minutes: Compte rendu
|
174
175
|
new: Nouvelle réunion
|
175
176
|
preview: Aperçu
|
176
177
|
registrations: Inscriptions
|
@@ -247,7 +248,6 @@ fr:
|
|
247
248
|
success: Rencontre close avec succès
|
248
249
|
create:
|
249
250
|
invalid: Il y a eu un problème lors de la création de cette rencontre
|
250
|
-
success: Rencontre créée avec succès
|
251
251
|
destroy:
|
252
252
|
invalid:
|
253
253
|
proposals_count:
|
@@ -264,6 +264,7 @@ fr:
|
|
264
264
|
location_help: 'Le lieu indique le nom de l''endroit qui accueille la réunion (ex : Maison de la citoyenneté)'
|
265
265
|
location_hints_help: 'Indices de localisation : informations complémentaires. Exemple: l''étage du bâtiment s''il s''agit d''une réunion en personne, ou le mot de passe de la réunion s''il s''agit d''une réunion en ligne avec accès restreint.'
|
266
266
|
online_meeting_url_help: 'Lien : permet aux participants de se connecter directement à votre réunion'
|
267
|
+
registration_email_help: Ce texte apparaîtra au milieu de l'e-mail de confirmation d'inscription, juste après le code d'inscription.
|
267
268
|
registration_url_help: 'Lien : permet aux participants de partir sur le service externe que vous utilisez pour les inscriptions'
|
268
269
|
select_a_meeting_type: Veuillez sélectionner un type de rencontre
|
269
270
|
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
@@ -285,19 +286,6 @@ fr:
|
|
285
286
|
update:
|
286
287
|
invalid: Il y a eu un problème lors de la mise à jour de cette rencontre
|
287
288
|
success: Rencontre mise à jour avec succès
|
288
|
-
minutes:
|
289
|
-
create:
|
290
|
-
invalid: Un problème est survenu lors de la création de ce compte rendu
|
291
|
-
success: Compte rendu créé avec succès
|
292
|
-
edit:
|
293
|
-
title: Modifier le compte-rendu
|
294
|
-
update: Mettre à jour
|
295
|
-
new:
|
296
|
-
create: Créer
|
297
|
-
title: Créer un compte rendu
|
298
|
-
update:
|
299
|
-
invalid: Un problème est survenu lors de la mise à jour de ce compte rendu
|
300
|
-
success: Compte rendu mis à jour avec succès
|
301
289
|
models:
|
302
290
|
meeting:
|
303
291
|
name: Rencontre
|
@@ -337,9 +325,6 @@ fr:
|
|
337
325
|
value_types:
|
338
326
|
organizer_presenter:
|
339
327
|
not_found: 'L''organisateur n''a pas été trouvé dans la base de données (ID: %{id})'
|
340
|
-
minutes:
|
341
|
-
create: "%{user_name} a créé le compte rendu de la rencontre %{resource_name} sur l'espace %{space_name}"
|
342
|
-
update: "%{user_name} a mis à jour le compte rendu de la rencontre %{resource_name} sur l'espace %{space_name}"
|
343
328
|
calendar_modal:
|
344
329
|
calendar_url: URL du calendrier
|
345
330
|
close_window: Fermer la fenêtre
|
@@ -433,7 +418,6 @@ fr:
|
|
433
418
|
index:
|
434
419
|
new_meeting: Nouvelle rencontre
|
435
420
|
meeting_minutes:
|
436
|
-
meeting_minutes: Comptes rendus des rencontres
|
437
421
|
related_information: Informations liées
|
438
422
|
meetings:
|
439
423
|
no_meetings_warning: Aucune rencontre ne correspond à vos critères de recherche ou aucune rencontre n'est prévue.
|
@@ -442,6 +426,8 @@ fr:
|
|
442
426
|
back: Précédent
|
443
427
|
create: Créer
|
444
428
|
title: Créez votre rencontre
|
429
|
+
online_meeting_link:
|
430
|
+
link_available_soon: Lien bientôt disponible
|
445
431
|
registration_confirm:
|
446
432
|
cancel: Annuler
|
447
433
|
confirm: Confirmer
|
@@ -452,9 +438,11 @@ fr:
|
|
452
438
|
contributions: Décompte des contributions
|
453
439
|
date: Date
|
454
440
|
edit_meeting: Modifier la rencontre
|
455
|
-
going:
|
441
|
+
going: Vous vous êtes inscrit à cette rencontre
|
456
442
|
join: Participer à la rencontre
|
457
|
-
|
443
|
+
leave: Annuler votre inscription
|
444
|
+
leave_confirmation: Êtes-vous sûr de vouloir annuler votre inscription à cette rencontre ?
|
445
|
+
meeting_minutes: Comptes rendus des rencontres
|
458
446
|
no_slots_available: Il ne reste plus de place
|
459
447
|
organizations: Organisations participantes
|
460
448
|
registration_code_help_text: Votre code d'inscription
|
@@ -489,6 +477,11 @@ fr:
|
|
489
477
|
official_meeting: Rencontre officielle
|
490
478
|
start_time: Date de début
|
491
479
|
title: Titre
|
480
|
+
public_participants_list:
|
481
|
+
attending_participants: Participants présents
|
482
|
+
hidden_participants_count:
|
483
|
+
one: et %{count} personne de plus
|
484
|
+
other: et %{count} personnes de plus
|
492
485
|
read_more: "(Voir la suite)"
|
493
486
|
registration_mailer:
|
494
487
|
confirmation:
|
data/config/locales/gl.yml
CHANGED
@@ -8,12 +8,14 @@ gl:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Número de asistentes
|
10
10
|
attending_organizations: Listaxe de organizacións que asistiron
|
11
|
-
closing_report:
|
11
|
+
closing_report: Minutos
|
12
|
+
closing_visible: É visible
|
12
13
|
contributions_count: Número de contribucións
|
13
14
|
proposal_ids: Propostas creadas na reunión
|
14
15
|
meeting:
|
15
16
|
address: Enderezo
|
16
17
|
available_slots: Slots dispoñibles para esta reunión
|
18
|
+
customize_registration_email: Personalizar o correo de rexistro
|
17
19
|
decidim_category_id: Categoría
|
18
20
|
decidim_scope_id: Alcance
|
19
21
|
description: Descrición
|
@@ -22,15 +24,13 @@ gl:
|
|
22
24
|
location_hints: Consellos de localización
|
23
25
|
organizer_id: Organizador
|
24
26
|
private_meeting: Encontro privado
|
27
|
+
registration_email_custom_content: Contido personalizado do correo de rexistro
|
25
28
|
registration_form_enabled: Formulario de rexistro habilitado
|
26
29
|
registration_terms: Termos de rexistro
|
27
30
|
registrations_enabled: Rexistros habilitados
|
28
31
|
start_time: Hora de inicio
|
29
32
|
title: Título
|
30
33
|
transparent: Transparente
|
31
|
-
minutes:
|
32
|
-
description: Descrición
|
33
|
-
visible: É visible
|
34
34
|
errors:
|
35
35
|
models:
|
36
36
|
meeting_agenda:
|
@@ -81,6 +81,7 @@ gl:
|
|
81
81
|
comments_enabled: Comentarios habilitados
|
82
82
|
default_registration_terms: Términos de rexistro por defecto
|
83
83
|
enable_pads_creation: Habilita a creación de pastillas
|
84
|
+
maps_enabled: Mapas habilitados
|
84
85
|
resources_permissions_enabled: Os permisos de acción pódense establecer para cada reunión
|
85
86
|
step:
|
86
87
|
announcement: Anuncio
|
@@ -99,6 +100,7 @@ gl:
|
|
99
100
|
email_subject: A reunión "%{resource_title}" pechouse
|
100
101
|
notification_title: A reunión <a href="%{resource_path}">%{resource_title}</a> foi pechada.
|
101
102
|
meeting_created:
|
103
|
+
button_text: Inscribirse na xuntanza
|
102
104
|
email_intro: A reunión "%{resource_title}" Engadiuse a "%{participatory_space_title}" que estás seguindo.
|
103
105
|
email_outro: Recibiches esta notificación porque estás seguindo "%{participatory_space_title}". Podes deixar de seguir desde a ligazón anterior.
|
104
106
|
email_subject: Nova reunión engadida a %{participatory_space_title}
|
@@ -151,7 +153,6 @@ gl:
|
|
151
153
|
confirm_destroy: Estás seguro de que queres eliminar esta reunión?
|
152
154
|
destroy: Eliminar
|
153
155
|
edit: Editar
|
154
|
-
minutes: Minutos
|
155
156
|
new: Nova reunión
|
156
157
|
preview: Vista previa
|
157
158
|
registrations: Rexistros
|
@@ -188,6 +189,7 @@ gl:
|
|
188
189
|
invalid: Produciuse un problema ao actualizar esta axenda
|
189
190
|
success: A axenda actualizouse correctamente
|
190
191
|
exports:
|
192
|
+
answers: Respostas
|
191
193
|
meetings: Reunións
|
192
194
|
registrations: Rexistros
|
193
195
|
invite_join_meeting_mailer:
|
@@ -227,11 +229,12 @@ gl:
|
|
227
229
|
success: Reunión pechada con éxito
|
228
230
|
create:
|
229
231
|
invalid: Produciuse un problema ao crear esta reunión
|
230
|
-
success: Reunión creada correctamente
|
231
232
|
destroy:
|
232
233
|
success: Reunión eliminada correctamente
|
233
234
|
edit:
|
234
235
|
update: Actualización
|
236
|
+
form:
|
237
|
+
registration_email_help: Este texto aparecerá no medio do correo de confirmación do rexistro, xusto despois do código de rexistro.
|
235
238
|
index:
|
236
239
|
title: Reunións
|
237
240
|
new:
|
@@ -250,18 +253,6 @@ gl:
|
|
250
253
|
update:
|
251
254
|
invalid: Produciuse un problema ao actualizar esta reunión
|
252
255
|
success: Reunión actualizada correctamente
|
253
|
-
minutes:
|
254
|
-
create:
|
255
|
-
invalid: Produciuse un problema ao crear estes minutos
|
256
|
-
success: Minutos creados con éxito
|
257
|
-
edit:
|
258
|
-
update: Actualización
|
259
|
-
new:
|
260
|
-
create: Crear
|
261
|
-
title: Crea minutos
|
262
|
-
update:
|
263
|
-
invalid: Produciuse un problema ao actualizar estes minutos
|
264
|
-
success: Minutos actualizados correctamente
|
265
256
|
models:
|
266
257
|
meeting:
|
267
258
|
name: Reunión
|
@@ -299,9 +290,6 @@ gl:
|
|
299
290
|
value_types:
|
300
291
|
organizer_presenter:
|
301
292
|
not_found: 'O organizador non se atopou na base de datos (ID: %{id})'
|
302
|
-
minutes:
|
303
|
-
create: "%{user_name} creou o acta da reunión %{resource_name} no espazo %{space_name}"
|
304
|
-
update: "%{user_name} actualizou os minutos da reunión %{resource_name} no espazo %{space_name}"
|
305
293
|
calendar_modal:
|
306
294
|
calendar_url: URL do calendario
|
307
295
|
close_window: Pechar ventá
|
@@ -325,6 +313,11 @@ gl:
|
|
325
313
|
last_activity:
|
326
314
|
meeting_updated_at_html: "<span>Xuntanza actualizada en %{link}</span>"
|
327
315
|
new_meeting_at_html: "<span>Nova reunión en %{link}</span>"
|
316
|
+
layouts:
|
317
|
+
live_event:
|
318
|
+
administrate: Administrar
|
319
|
+
close: pechar
|
320
|
+
questions: Preguntas
|
328
321
|
mailer:
|
329
322
|
invite_join_meeting_mailer:
|
330
323
|
invite:
|
@@ -335,6 +328,13 @@ gl:
|
|
335
328
|
meeting:
|
336
329
|
not_allowed: Non tes permiso para ver esta reunión
|
337
330
|
meetings:
|
331
|
+
calendar_modal:
|
332
|
+
add_to_calendar: Engadir ao calendario
|
333
|
+
apple: Engadir ao Apple Calendar
|
334
|
+
close_window: Pechar xanela
|
335
|
+
full_details_html: Ver todos os detalles en %{link}
|
336
|
+
google: Engadir ao Google Calendar
|
337
|
+
outlook: Engadir ao calendario do Outlook
|
338
338
|
filters:
|
339
339
|
category: Categoría
|
340
340
|
date: Data
|
@@ -345,20 +345,23 @@ gl:
|
|
345
345
|
filter_by: Filtrar por
|
346
346
|
unfold: Despregar
|
347
347
|
meeting_minutes:
|
348
|
-
meeting_minutes: Minutos de reunión
|
349
348
|
related_information: Información relacionada
|
350
349
|
meetings:
|
351
350
|
no_meetings_warning: Non hai encontros que coincidan cos seus criterios de busca ou non hai ningunha reunión programada.
|
352
351
|
upcoming_meetings_warning: Actualmente, non hai reunións programadas, pero aquí podes atopar todas as reunións anteriores.
|
352
|
+
online_meeting_link:
|
353
|
+
link_available_soon: Ligazón dispoñíbel en breve
|
353
354
|
registration_confirm:
|
354
355
|
cancel: Cancelar
|
355
356
|
confirm: Confirmar
|
356
357
|
show:
|
357
358
|
attendees: Os asistentes contan
|
358
359
|
contributions: Contribucións contar
|
359
|
-
going:
|
360
|
+
going: Inscribícheste nesta xuntaza
|
360
361
|
join: Únete a reunión
|
361
|
-
|
362
|
+
leave: Cancelar a túa inscrición
|
363
|
+
leave_confirmation: Estás certo/a de querer cancelar a túa inscrición nesta xuntanza?
|
364
|
+
meeting_minutes: Minutos de reunión
|
362
365
|
no_slots_available: Non hai slots dispoñibles
|
363
366
|
organizations: Organizacións asistentes
|
364
367
|
registration_code_help_text: O seu código de rexistro
|
@@ -389,6 +392,23 @@ gl:
|
|
389
392
|
map: Mapa
|
390
393
|
start_time: Data de inicio
|
391
394
|
title: Título
|
395
|
+
polls:
|
396
|
+
questions:
|
397
|
+
index_admin:
|
398
|
+
question: Pregunta
|
399
|
+
received_answer: resposta recibida
|
400
|
+
received_answers: respostas recibidas
|
401
|
+
results: Resultados
|
402
|
+
send: Enviar
|
403
|
+
sent: Enviada
|
404
|
+
published_question:
|
405
|
+
question: Pregunta
|
406
|
+
reply_question: Responder pregunta
|
407
|
+
public_participants_list:
|
408
|
+
attending_participants: Participantes presentes
|
409
|
+
hidden_participants_count:
|
410
|
+
one: e %{count} persoa máis
|
411
|
+
other: e %{count} persoas máis
|
392
412
|
read_more: "(Le máis)"
|
393
413
|
registration_mailer:
|
394
414
|
confirmation:
|
@@ -427,6 +447,8 @@ gl:
|
|
427
447
|
proposals_from_meeting:
|
428
448
|
meeting_proposal: 'Propostas relacionadas:'
|
429
449
|
proposal_meeting: 'Reunións relacionadas:'
|
450
|
+
statistics:
|
451
|
+
meetings_count: Xuntanzas
|
430
452
|
devise:
|
431
453
|
mailer:
|
432
454
|
join_meeting:
|
data/config/locales/hu.yml
CHANGED
@@ -8,9 +8,12 @@ hu:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Résztvevők száma
|
10
10
|
attending_organizations: Résztvevő szervezetek listája
|
11
|
-
|
11
|
+
audio_url: Hang URL
|
12
|
+
closing_report: Jegyzőkönyvek
|
13
|
+
closing_visible: Látható
|
12
14
|
contributions_count: Hozzájárulások száma
|
13
15
|
proposal_ids: A találkozón született javaslatok
|
16
|
+
video_url: Videó URL
|
14
17
|
meeting:
|
15
18
|
address: Lakcím
|
16
19
|
available_slots: A találkozóhoz rendelkezésre álló helyek
|
@@ -28,9 +31,6 @@ hu:
|
|
28
31
|
start_time: Kezdő időpont
|
29
32
|
title: Cím
|
30
33
|
transparent: Átlátszó
|
31
|
-
minutes:
|
32
|
-
description: Leírás
|
33
|
-
visible: Látható
|
34
34
|
errors:
|
35
35
|
models:
|
36
36
|
meeting_agenda:
|
@@ -155,7 +155,6 @@ hu:
|
|
155
155
|
proposals_count:
|
156
156
|
one: 'A találkozót nem lehet megsemmisíteni, mert %{count} javaslat van társítva hozzá:'
|
157
157
|
other: 'A találkozót nem lehet megsemmisíteni, mert %{count} javaslat van társítva hozzá:'
|
158
|
-
minutes: Jegyzőkönyvek
|
159
158
|
new: Új találkozó
|
160
159
|
preview: Előnézet
|
161
160
|
registrations: Regisztrációk
|
@@ -231,7 +230,6 @@ hu:
|
|
231
230
|
success: Találkozó lezárása sikeres
|
232
231
|
create:
|
233
232
|
invalid: Probléma történt a találkozó létrehozása során
|
234
|
-
success: Találkozó létrehozása sikeres
|
235
233
|
destroy:
|
236
234
|
invalid:
|
237
235
|
proposals_count:
|
@@ -261,18 +259,6 @@ hu:
|
|
261
259
|
update:
|
262
260
|
invalid: Probléma történt a találkozó frissítése során
|
263
261
|
success: Találkozó frissítése sikeres
|
264
|
-
minutes:
|
265
|
-
create:
|
266
|
-
invalid: Probléma történt a jegyzőkönyv létrehozásakor
|
267
|
-
success: Jegyzőkönyv létrehozása sikeres
|
268
|
-
edit:
|
269
|
-
update: Frissítés
|
270
|
-
new:
|
271
|
-
create: Létrehozás
|
272
|
-
title: Jegyzőkönyv létrehozása
|
273
|
-
update:
|
274
|
-
invalid: Probléma történt a jegyzőkönyv frissítésekor
|
275
|
-
success: Jegyzőkönyv frissítése sikeres
|
276
262
|
models:
|
277
263
|
meeting:
|
278
264
|
name: Találkozó
|
@@ -311,9 +297,6 @@ hu:
|
|
311
297
|
value_types:
|
312
298
|
organizer_presenter:
|
313
299
|
not_found: 'A szervező nem található az adatbázisban (ID: %{id})'
|
314
|
-
minutes:
|
315
|
-
create: "%{user_name} létrehozta a(z) %{resource_name} találkozó jegyzőkönyvét itt: %{space_name}"
|
316
|
-
update: "%{user_name} frissítette a(z) %{resource_name} találkozó jegyzőkönyvét itt: %{space_name}"
|
317
300
|
calendar_modal:
|
318
301
|
calendar_url: Naptár URL
|
319
302
|
close_window: Ablak bezárása
|
@@ -356,7 +339,6 @@ hu:
|
|
356
339
|
filter_by: 'Szűrés ez alapján:'
|
357
340
|
unfold: Kibont
|
358
341
|
meeting_minutes:
|
359
|
-
meeting_minutes: Találkozó jegyzőkönyve
|
360
342
|
related_information: Kapcsolódó információ
|
361
343
|
meetings:
|
362
344
|
no_meetings_warning: Nincs, vagy nincs ütemezve olyan találkozó, amely megfelel a keresési feltételeknek.
|
@@ -368,9 +350,8 @@ hu:
|
|
368
350
|
attendees: Résztvevők száma
|
369
351
|
back: Vissza a listához
|
370
352
|
contributions: Hozzájárulások száma
|
371
|
-
going: Halad
|
372
353
|
join: Csatlakozz a találkozóhoz
|
373
|
-
|
354
|
+
meeting_minutes: Találkozó jegyzőkönyve
|
374
355
|
no_slots_available: Nincs szabad hely
|
375
356
|
organizations: Résztvevő szervezetek
|
376
357
|
registration_code_help_text: A regisztrációs kódod
|
data/config/locales/id-ID.yml
CHANGED
@@ -8,7 +8,8 @@ id:
|
|
8
8
|
close_meeting:
|
9
9
|
attendees_count: Jumlah peserta
|
10
10
|
attending_organizations: Daftar organisasi yang hadir
|
11
|
-
closing_report:
|
11
|
+
closing_report: Menit
|
12
|
+
closing_visible: Terlihat
|
12
13
|
contributions_count: Jumlah kontribusi
|
13
14
|
proposal_ids: Proposal yang dibuat dalam pertemuan
|
14
15
|
meeting:
|
@@ -28,9 +29,6 @@ id:
|
|
28
29
|
start_time: Waktu mulai
|
29
30
|
title: Judul
|
30
31
|
transparent: Transparan
|
31
|
-
minutes:
|
32
|
-
description: Deskripsi
|
33
|
-
visible: Terlihat
|
34
32
|
errors:
|
35
33
|
models:
|
36
34
|
meeting_agenda:
|
@@ -148,7 +146,6 @@ id:
|
|
148
146
|
confirm_destroy: Anda yakin ingin menghapus rapat ini?
|
149
147
|
destroy: Menghapus
|
150
148
|
edit: Edit
|
151
|
-
minutes: Menit
|
152
149
|
new: Pertemuan baru
|
153
150
|
preview: Preview
|
154
151
|
registrations: Pendaftaran
|
@@ -224,7 +221,6 @@ id:
|
|
224
221
|
success: Rapat berhasil ditutup
|
225
222
|
create:
|
226
223
|
invalid: Ada masalah saat membuat rapat ini
|
227
|
-
success: Pertemuan berhasil dibuat
|
228
224
|
destroy:
|
229
225
|
success: Rapat berhasil dihapus
|
230
226
|
edit:
|
@@ -247,18 +243,6 @@ id:
|
|
247
243
|
update:
|
248
244
|
invalid: Terjadi masalah saat memperbarui rapat ini
|
249
245
|
success: Rapat berhasil diperbarui
|
250
|
-
minutes:
|
251
|
-
create:
|
252
|
-
invalid: Terjadi masalah saat membuat menit ini
|
253
|
-
success: Menit berhasil dibuat
|
254
|
-
edit:
|
255
|
-
update: Memperbarui
|
256
|
-
new:
|
257
|
-
create: Membuat
|
258
|
-
title: Buat menit
|
259
|
-
update:
|
260
|
-
invalid: Terjadi masalah saat memperbarui menit ini
|
261
|
-
success: Notulen berhasil diperbarui
|
262
246
|
models:
|
263
247
|
meeting:
|
264
248
|
name: Pertemuan
|
@@ -295,9 +279,6 @@ id:
|
|
295
279
|
value_types:
|
296
280
|
organizer_presenter:
|
297
281
|
not_found: 'Organiser tidak ditemukan di database (ID: %{id})'
|
298
|
-
minutes:
|
299
|
-
create: "%{user_name} membuat menit dari pertemuan %{resource_name} pada %{space_name} ruang"
|
300
|
-
update: "%{user_name} memperbarui notulen rapat %{resource_name} pada %{space_name} ruang"
|
301
282
|
calendar_modal:
|
302
283
|
calendar_url: URL Kalender
|
303
284
|
close_window: Tutup jendela
|
@@ -340,7 +321,6 @@ id:
|
|
340
321
|
filter_by: Filter berdasarkan
|
341
322
|
unfold: Membuka
|
342
323
|
meeting_minutes:
|
343
|
-
meeting_minutes: Risalah Pertemuan
|
344
324
|
related_information: Informasi Terkait
|
345
325
|
meetings:
|
346
326
|
no_meetings_warning: Tidak ada pertemuan yang sesuai dengan kriteria pencarian Anda atau tidak ada jadwal pertemuan.
|
@@ -351,9 +331,8 @@ id:
|
|
351
331
|
show:
|
352
332
|
attendees: Jumlah peserta
|
353
333
|
contributions: Kontribusi dihitung
|
354
|
-
going: Pergi
|
355
334
|
join: Bergabunglah dengan rapat
|
356
|
-
|
335
|
+
meeting_minutes: Risalah Pertemuan
|
357
336
|
no_slots_available: Tidak ada slot yang tersedia
|
358
337
|
organizations: Menghadiri organisasi
|
359
338
|
registration_code_help_text: Kode registrasi Anda
|