decidim-meetings 0.29.3 → 0.30.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +3 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -1
- data/app/cells/decidim/meetings/dates_and_map/show.erb +1 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +5 -2
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +3 -3
- data/app/cells/decidim/meetings/meeting_l_cell.rb +12 -0
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +8 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +8 -2
- data/app/commands/decidim/meetings/create_meeting.rb +2 -2
- data/app/commands/decidim/meetings/update_meeting.rb +2 -3
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +9 -5
- data/app/controllers/concerns/decidim/meetings/component_filterable.rb +1 -2
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +14 -22
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +8 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -4
- data/app/controllers/decidim/meetings/meetings_controller.rb +40 -6
- data/app/forms/decidim/meetings/admin/meeting_form.rb +16 -30
- data/app/forms/decidim/meetings/base_meeting_form.rb +6 -0
- data/app/forms/decidim/meetings/meeting_form.rb +2 -30
- data/app/helpers/decidim/meetings/admin/application_helper.rb +11 -1
- data/app/helpers/decidim/meetings/application_helper.rb +35 -1
- data/app/helpers/decidim/meetings/directory/application_helper.rb +9 -48
- data/app/helpers/decidim/meetings/meetings_helper.rb +5 -0
- data/app/models/decidim/meetings/invite.rb +10 -0
- data/app/models/decidim/meetings/meeting.rb +28 -1
- data/app/models/decidim/meetings/meeting_link.rb +25 -0
- data/app/packs/entrypoints/decidim_meetings_admin.js +1 -0
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +77 -0
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +8 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +1 -1
- data/app/permissions/decidim/meetings/permissions.rb +13 -9
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +13 -1
- data/app/queries/decidim/meetings/filtered_meetings.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +6 -6
- data/app/serializers/decidim/meetings/base_download_your_data_serializer.rb +32 -0
- data/app/serializers/decidim/meetings/download_your_data_invite_serializer.rb +6 -26
- data/app/serializers/decidim/meetings/download_your_data_meeting_serializer.rb +15 -0
- data/app/serializers/decidim/meetings/download_your_data_registration_serializer.rb +6 -24
- data/app/views/decidim/meetings/admin/meetings/_component.html.erb +15 -0
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +7 -9
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +53 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +42 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +70 -0
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +26 -0
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +16 -142
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +23 -0
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +44 -0
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +1 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -2
- data/app/views/decidim/meetings/live_events/show.html.erb +5 -5
- data/app/views/decidim/meetings/meetings/_form.html.erb +4 -8
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +51 -26
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +34 -0
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +20 -59
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +2 -5
- data/app/views/decidim/meetings/meetings/_schema_org_event_meeting.html.erb +3 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +1 -2
- data/app/views/decidim/meetings/meetings/new.html.erb +0 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +5 -5
- data/app/views/decidim/meetings/polls/answers/index.html.erb +5 -5
- data/app/views/decidim/meetings/shared/_filters.html.erb +1 -13
- data/app/views/decidim/meetings/shared/_index.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_index.js.erb +3 -2
- data/app/views/decidim/meetings/shared/_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/config/locales/ar.yml +23 -17
- data/config/locales/bg.yml +16 -25
- data/config/locales/ca.yml +140 -30
- data/config/locales/cs.yml +145 -28
- data/config/locales/de.yml +152 -74
- data/config/locales/el.yml +7 -22
- data/config/locales/en.yml +132 -22
- data/config/locales/es-MX.yml +144 -34
- data/config/locales/es-PY.yml +145 -35
- data/config/locales/es.yml +145 -35
- data/config/locales/eu.yml +159 -49
- data/config/locales/fi-plain.yml +142 -27
- data/config/locales/fi.yml +142 -27
- data/config/locales/fr-CA.yml +79 -27
- data/config/locales/fr.yml +79 -27
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +6 -12
- data/config/locales/hu.yml +8 -20
- data/config/locales/id-ID.yml +6 -13
- data/config/locales/is-IS.yml +0 -15
- data/config/locales/it.yml +7 -19
- data/config/locales/ja.yml +94 -26
- data/config/locales/lb.yml +6 -14
- data/config/locales/lt.yml +7 -23
- data/config/locales/lv.yml +6 -13
- data/config/locales/nl.yml +8 -18
- data/config/locales/no.yml +6 -16
- data/config/locales/pl.yml +16 -21
- data/config/locales/pt-BR.yml +7 -21
- data/config/locales/pt.yml +7 -17
- data/config/locales/ro-RO.yml +32 -19
- data/config/locales/ru.yml +6 -13
- data/config/locales/sk.yml +7 -14
- data/config/locales/sv.yml +82 -28
- data/config/locales/tr-TR.yml +7 -19
- data/config/locales/uk.yml +5 -15
- data/config/locales/zh-CN.yml +7 -18
- data/config/locales/zh-TW.yml +7 -21
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +1 -1
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20240712104245_create_decidim_meetings_meeting_link.rb +12 -0
- data/db/migrate/20240828103603_add_deleted_at_to_decidim_meetings_meetings.rb +8 -0
- data/decidim-meetings.gemspec +1 -1
- data/lib/decidim/api/agenda_item_type.rb +6 -7
- data/lib/decidim/api/agenda_type.rb +3 -4
- data/lib/decidim/api/meeting_type.rb +33 -41
- data/lib/decidim/api/meetings_type.rb +4 -5
- data/lib/decidim/api/service_type.rb +1 -1
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +14 -4
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +13 -7
- data/lib/decidim/meetings/engine.rb +1 -6
- data/lib/decidim/meetings/meeting_serializer.rb +70 -59
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +151 -0
- data/lib/decidim/meetings/seeds.rb +2 -4
- data/lib/decidim/meetings/test/factories.rb +8 -0
- data/lib/decidim/meetings/test/translated_event.rb +3 -3
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +1 -0
- metadata +32 -22
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -16
- data/app/cells/decidim/meetings/meetings_map_cell.rb +0 -32
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +0 -21
- data/app/helpers/decidim/meetings/map_helper.rb +0 -21
- data/app/views/decidim/meetings/meetings/_actions.html.erb +0 -6
- data/config/locales/ca-IT.yml +0 -693
data/config/locales/fr.yml
CHANGED
@@ -99,8 +99,6 @@ fr:
|
|
99
99
|
'false': Non acceptée
|
100
100
|
'true': Accepté
|
101
101
|
meetings:
|
102
|
-
category_id_eq:
|
103
|
-
label: Catégorie
|
104
102
|
closed_at_present:
|
105
103
|
label: État
|
106
104
|
values:
|
@@ -111,8 +109,6 @@ fr:
|
|
111
109
|
values:
|
112
110
|
'false': Passées
|
113
111
|
'true': À venir
|
114
|
-
scope_id_eq:
|
115
|
-
label: Périmètre d'application
|
116
112
|
with_any_origin:
|
117
113
|
label: Origine
|
118
114
|
values:
|
@@ -162,14 +158,29 @@ fr:
|
|
162
158
|
maps_enabled: Cartes activées
|
163
159
|
registration_code_enabled: Code d'enregistrement activé
|
164
160
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
165
|
-
scope_id: Périmètre d'application
|
166
|
-
scopes_enabled: Secteurs activés
|
167
161
|
terms_and_conditions_url_for_meeting_creators: URL des conditions générales pour les auteurs de rencontres
|
168
162
|
step:
|
169
163
|
announcement: Annonce
|
170
164
|
comments_blocked: Commentaires bloqués
|
171
165
|
creation_enabled_for_participants: La création de rencontre par les participants est activée
|
172
166
|
creation_enabled_for_user_groups: La création de rencontres par des groupes d'utilisateurs est activée
|
167
|
+
download_your_data:
|
168
|
+
help:
|
169
|
+
invites:
|
170
|
+
accepted_at: La date et l'heure auxquelles cette invitation a été acceptée
|
171
|
+
created_at: La date et l'heure auxquelles cette invitation a été créée
|
172
|
+
id: L'identifiant unique pour cette invitation
|
173
|
+
rejected_at: La date et l'heure auxquelles cette invitation a été rejetée
|
174
|
+
sent_at: La date et l'heure auxquelles cette invitation a été envoyée
|
175
|
+
updated_at: La date et l'heure auxquelles cette invitation a été mise à jour
|
176
|
+
registrations:
|
177
|
+
created_at: La date et l'heure auxquelles cette inscription a été créée
|
178
|
+
public_participation: Si cette participation était affichée publiquement
|
179
|
+
updated_at: La date et l'heure auxquelles cette inscription a été mise à jour
|
180
|
+
validated_at: La date et l'heure auxquelles cette inscription a été validée
|
181
|
+
show:
|
182
|
+
meeting_comments: Export des commentaires de réunion
|
183
|
+
meetings: Export des réunions
|
173
184
|
events:
|
174
185
|
meetings:
|
175
186
|
meeting_closed:
|
@@ -223,7 +234,7 @@ fr:
|
|
223
234
|
badges:
|
224
235
|
attended_meetings:
|
225
236
|
conditions:
|
226
|
-
|
237
|
+
- Inscrivez-vous aux rencontres auxquelles vous souhaitez participer
|
227
238
|
description: Ce badge est attribué lorsque vous participez à plusieurs rencontres en face à face.
|
228
239
|
description_another: Cet utilisateur a participé à %{score} rencontres.
|
229
240
|
description_own: Vous avez assisté à %{score} rencontres.
|
@@ -237,8 +248,8 @@ fr:
|
|
237
248
|
attachment_collections: Dossiers
|
238
249
|
attachments: Documents liés
|
239
250
|
close: Clore
|
240
|
-
|
241
|
-
|
251
|
+
confirm_delete_meeting: Êtes-vous sûr(e) de vouloir supprimer cette réunion ?
|
252
|
+
deleted_meetings_info: Les réunions supprimées peuvent être restaurées depuis la corbeille.
|
242
253
|
edit: Modifier
|
243
254
|
invalid_destroy:
|
244
255
|
proposals_count:
|
@@ -249,6 +260,7 @@ fr:
|
|
249
260
|
preview: Aperçu
|
250
261
|
registrations: Inscriptions
|
251
262
|
title: Actions
|
263
|
+
view_deleted_meetings: Voir les réunions supprimées
|
252
264
|
admin:
|
253
265
|
agenda:
|
254
266
|
agenda_item:
|
@@ -313,15 +325,11 @@ fr:
|
|
313
325
|
close:
|
314
326
|
invalid: Il y a eu un problème au moment de clore cette rencontre.
|
315
327
|
success: Rencontre close avec succès.
|
328
|
+
component:
|
329
|
+
unlink: Délier
|
316
330
|
create:
|
317
331
|
invalid: Une erreur s'est produite lors de la création de cette rencontre.
|
318
332
|
success: Rencontre créée avec succès. Notez que celle-ci n'est pas encore publiée, vous devez la publier manuellement.
|
319
|
-
destroy:
|
320
|
-
invalid:
|
321
|
-
proposals_count:
|
322
|
-
one: La rencontre ne peut être supprimée car %{count} proposition y est rattachée.
|
323
|
-
other: La rencontre ne peut être supprimée car %{count} propositions y sont rattachées.
|
324
|
-
success: La rencontre a été supprimée avec succès
|
325
333
|
edit:
|
326
334
|
title: Modifier la rencontre
|
327
335
|
update: Mettre à jour
|
@@ -337,7 +345,18 @@ fr:
|
|
337
345
|
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
338
346
|
select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
|
339
347
|
index:
|
348
|
+
linked_meeting_warning_html: Cette réunion doit être modifiée à partir de <br><a href="%{href}">%{name}</a>
|
340
349
|
title: Rencontres
|
350
|
+
linked_spaces:
|
351
|
+
assign: Assigner
|
352
|
+
link_a_space: Lier un espace
|
353
|
+
select: Sélectionner un espace
|
354
|
+
table:
|
355
|
+
actions: Actions
|
356
|
+
component: Espaces liés
|
357
|
+
title: Espaces liés
|
358
|
+
manage_trash:
|
359
|
+
title: Réunions supprimées
|
341
360
|
new:
|
342
361
|
create: Créer
|
343
362
|
title: Créer une rencontre
|
@@ -369,10 +388,10 @@ fr:
|
|
369
388
|
poll:
|
370
389
|
form:
|
371
390
|
announcement_html:
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
391
|
+
- Lorsqu'une question reçoit des réponses ou est publiée/fermée, elle ne peut plus être modifiée.
|
392
|
+
- Vous pouvez ajouter une question à tout moment.
|
393
|
+
- Le sondage sera fermé lorsque les résultats de toutes les questions créées auront été publiés.
|
394
|
+
- Visitez la <a href='%{admin_link}'>page d'administration du sondage</a> pour envoyer des questions et publier des résultats.
|
376
395
|
registrations:
|
377
396
|
edit:
|
378
397
|
save: Sauvegarder
|
@@ -381,6 +400,7 @@ fr:
|
|
381
400
|
form:
|
382
401
|
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité.
|
383
402
|
invites: Invitations
|
403
|
+
manage_questions: Gérer les questions
|
384
404
|
recommendation_message: Pour des raisons de confidentialité, nous vous recommandons de supprimer ce formulaire d'inscription lorsque vous n'en avez plus besoin. Par défaut, il le sera 3 mois après la fin de la réunion.
|
385
405
|
registration_email_help: Ce texte apparaîtra au centre de l'e-mail de confirmation d'inscription, juste après le code d'inscription.
|
386
406
|
registration_form: Formulaire d'inscription
|
@@ -395,6 +415,7 @@ fr:
|
|
395
415
|
success: Les paramètres d'inscription ont été enregistrés avec succès.
|
396
416
|
validate_registration_code:
|
397
417
|
invalid: Ce code d'inscription est invalide.
|
418
|
+
success: Le code d'inscription a été validé avec succès.
|
398
419
|
admin_log:
|
399
420
|
invite:
|
400
421
|
create: "%{user_name} a invité %{attendee_name} à rejoindre la réunion %{resource_name} sur l'espace %{space_name}"
|
@@ -412,8 +433,6 @@ fr:
|
|
412
433
|
questionnaire:
|
413
434
|
update: "%{user_name} a mis à jour le questionnaire pour la réunion %{meeting_name}"
|
414
435
|
application_helper:
|
415
|
-
filter_category_values:
|
416
|
-
all: Toutes
|
417
436
|
filter_meeting_space_values:
|
418
437
|
all: Tout
|
419
438
|
calendar:
|
@@ -523,7 +542,6 @@ fr:
|
|
523
542
|
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.'
|
524
543
|
online_meeting_url_help: 'Lien : permettre aux participants de se connecter directement à votre rencontre'
|
525
544
|
registration_url_help: 'Lien : permet aux participants de partir sur le service externe que vous utilisez pour les inscriptions'
|
526
|
-
select_a_category: Veuillez sélectionner une catégorie
|
527
545
|
select_a_meeting_type: Veuillez sélectionner un type de rencontre
|
528
546
|
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
529
547
|
select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
|
@@ -534,9 +552,9 @@ fr:
|
|
534
552
|
see_all_withdrawn: Voir toutes les rencontres annulées
|
535
553
|
text_banner: Vous consultez la liste des rencontres annulées par leurs auteurs. %{go_back_link}.
|
536
554
|
meeting:
|
537
|
-
close_meeting: Clore
|
555
|
+
close_meeting: Clore
|
538
556
|
edit_close_meeting: Modifier le compte-rendu de la rencontre
|
539
|
-
edit_meeting: Modifier
|
557
|
+
edit_meeting: Modifier
|
540
558
|
join_meeting: Participer à la rencontre
|
541
559
|
reply_poll: Répondre au sondage
|
542
560
|
view_poll: Voir le sondage
|
@@ -546,7 +564,7 @@ fr:
|
|
546
564
|
new:
|
547
565
|
back: Précédent
|
548
566
|
create: Créer
|
549
|
-
title:
|
567
|
+
title: Créez votre rencontre
|
550
568
|
registration_confirm:
|
551
569
|
cancel: Annuler
|
552
570
|
confirm: Confirmer
|
@@ -563,6 +581,7 @@ fr:
|
|
563
581
|
micro_camera_permissions_warning: Lorsque vous cliquez sur le bouton ci-dessous, on vous demandera des autorisations de microphone et/ou de caméra, et vous rejoindrez la vidéoconférence
|
564
582
|
no_slots_available: Il ne reste plus de place
|
565
583
|
organizations: Organisations participantes
|
584
|
+
redirect_notice: Cette réunion fait partie d'un autre espace, vous avez donc été redirigé(e) vers %{current_space_name}. <br>Si vous préférez, vous pouvez revenir à <a href="%{previous_space_url}">%{previous_space_name}</a>.
|
566
585
|
registration_code_help_text: Votre code d'inscription
|
567
586
|
registration_state:
|
568
587
|
validated: Validé
|
@@ -573,7 +592,7 @@ fr:
|
|
573
592
|
visit_finished: Consulter l’historique des rencontres
|
574
593
|
withdraw_btn_hint: Vous pouvez annuler votre rencontre si vous changez d'avis. La rencontre n'est pas supprimée, elle apparaîtra dans la liste des rencontres retirées.
|
575
594
|
withdraw_confirmation_html: Êtes-vous sûr de vouloir annuler cette rencontre ?<br><br><strong>Cette action ne peut pas être annulée !</strong>
|
576
|
-
withdraw_meeting:
|
595
|
+
withdraw_meeting: Retirer
|
577
596
|
update:
|
578
597
|
invalid: Une erreur s'est produite lors de la mise à jour de la rencontre.
|
579
598
|
success: La rencontre a été mise à jour avec succès.
|
@@ -665,13 +684,45 @@ fr:
|
|
665
684
|
transparent: Visible par les non-membres
|
666
685
|
withdraw: Retirée
|
667
686
|
withdraw:
|
668
|
-
error: Une erreur s'est produite lors
|
687
|
+
error: Une erreur s'est produite lors du retrait de la rencontre.
|
669
688
|
success: La rencontre a été annulée avec succès.
|
670
689
|
metrics:
|
671
690
|
meetings:
|
672
691
|
description: Nombre de rencontres créées
|
673
692
|
object: rencontres
|
674
693
|
title: Rencontres
|
694
|
+
open_data:
|
695
|
+
help:
|
696
|
+
meeting_comments:
|
697
|
+
comments: Les données des commentaires de la réunion
|
698
|
+
meetings:
|
699
|
+
attending_organizations: Les organisations participant à la réunion
|
700
|
+
audio_url: Enregistrement audio de la réunion
|
701
|
+
author: Les données pour l'auteur de cette réunion
|
702
|
+
available_slots: Le nombre de places disponibles dans une réunion
|
703
|
+
closed_at: La date à laquelle la réunion s'est terminée
|
704
|
+
closing_report: Rapport de la réunion clôturée
|
705
|
+
closing_visible: La clôture de la réunion est visible
|
706
|
+
comments: Les données des commentaires de la réunion
|
707
|
+
created_at: La date de création de la réunion
|
708
|
+
decidim_author_type: Type d'auteur de la réunion
|
709
|
+
follows_count: Le nombre de personnes qui suivent cette réunion
|
710
|
+
iframe_embed_type: Le type d'iframe inclus dans la réunion
|
711
|
+
latitude: La latitude de la réunion
|
712
|
+
location_hints: Un indice de l'endroit où se déroule la réunion
|
713
|
+
longitude: La longitude de la réunion
|
714
|
+
online_meeting_url: L'URL de la réunion en ligne
|
715
|
+
private_meeting: Pour indiquer si la réunion est privée ou non
|
716
|
+
registration_form_enabled: Si le formulaire d'inscription a été activé ou non
|
717
|
+
registration_terms: Les conditions convenues avant la participation à la réunion
|
718
|
+
registration_type: Le type d'inscription à la réunion
|
719
|
+
registration_url: URL de l'inscription à la réunion
|
720
|
+
registrations_enabled: Si les inscriptions ont été autorisées
|
721
|
+
reserved_slots: Le nombre de places réservées pour la réunion
|
722
|
+
type_of_meeting: Le type de réunion
|
723
|
+
updated_at: L'heure à laquelle la réunion a été mise à jour
|
724
|
+
video_url: Enregistrement vidéo de la réunion
|
725
|
+
withdrawn: Si cette réunion a été annulée
|
675
726
|
participatory_spaces:
|
676
727
|
highlighted_meetings:
|
677
728
|
past_meetings: Rencontres passées
|
@@ -685,6 +736,7 @@ fr:
|
|
685
736
|
meeting_proposal: 'Propositions créées lors de cette rencontre :'
|
686
737
|
proposal_meeting: 'Rencontres associées :'
|
687
738
|
statistics:
|
739
|
+
attendees_count: Participants à la réunion
|
688
740
|
meetings_count: Rencontres
|
689
741
|
devise:
|
690
742
|
mailer:
|
data/config/locales/ga-IE.yml
CHANGED
@@ -20,8 +20,6 @@ ga:
|
|
20
20
|
admin:
|
21
21
|
filters:
|
22
22
|
meetings:
|
23
|
-
category_id_eq:
|
24
|
-
label: Catagóir
|
25
23
|
closed_at_present:
|
26
24
|
label: Staid
|
27
25
|
values:
|
@@ -32,8 +30,6 @@ ga:
|
|
32
30
|
values:
|
33
31
|
'false': Roimhe
|
34
32
|
'true': Le teacht
|
35
|
-
scope_id_eq:
|
36
|
-
label: Scóip
|
37
33
|
meeting_copies:
|
38
34
|
new:
|
39
35
|
copy: Cóipeáil
|
@@ -43,16 +39,12 @@ ga:
|
|
43
39
|
comment: Tabhair Trácht
|
44
40
|
join: Téigh leis
|
45
41
|
name: Cruinnithe
|
46
|
-
settings:
|
47
|
-
global:
|
48
|
-
scope_id: Scóip
|
49
42
|
meetings:
|
50
43
|
actions:
|
51
44
|
agenda: Clár
|
52
45
|
attachment_collections: Fillteáin
|
53
46
|
attachments: Ceangaltáin
|
54
47
|
close: Dún
|
55
|
-
destroy: Scrios
|
56
48
|
edit: Eagar
|
57
49
|
preview: Réamhamharc
|
58
50
|
title: Gníomhartha
|
@@ -104,9 +96,6 @@ ga:
|
|
104
96
|
save: Sábháil
|
105
97
|
form:
|
106
98
|
invites: Cuirí
|
107
|
-
application_helper:
|
108
|
-
filter_category_values:
|
109
|
-
all: Uile
|
110
99
|
directory:
|
111
100
|
meetings:
|
112
101
|
index:
|
@@ -138,8 +127,6 @@ ga:
|
|
138
127
|
type_values:
|
139
128
|
all: Uile
|
140
129
|
online: Ar líne
|
141
|
-
form:
|
142
|
-
select_a_category: Roghnaigh catagóir le do thoil
|
143
130
|
new:
|
144
131
|
back: Ar Ais
|
145
132
|
create: Cruthaigh
|
data/config/locales/gl.yml
CHANGED
@@ -50,10 +50,6 @@ gl:
|
|
50
50
|
admin:
|
51
51
|
filters:
|
52
52
|
meetings:
|
53
|
-
category_id_eq:
|
54
|
-
label: Categoría
|
55
|
-
scope_id_eq:
|
56
|
-
label: Alcance
|
57
53
|
with_any_origin:
|
58
54
|
label: Orixe
|
59
55
|
values:
|
@@ -82,7 +78,6 @@ gl:
|
|
82
78
|
enable_pads_creation: Habilita a creación de pastillas
|
83
79
|
maps_enabled: Mapas habilitados
|
84
80
|
resources_permissions_enabled: Os permisos de acción pódense establecer para cada reunión
|
85
|
-
scope_id: Alcance
|
86
81
|
step:
|
87
82
|
announcement: Anuncio
|
88
83
|
comments_blocked: Comentarios bloqueados
|
@@ -136,7 +131,7 @@ gl:
|
|
136
131
|
badges:
|
137
132
|
attended_meetings:
|
138
133
|
conditions:
|
139
|
-
|
134
|
+
- Rexístrese nas reunións que desexa asistir
|
140
135
|
description: Este distintivo é concedido cando asistes a varias reunións cara a cara.
|
141
136
|
description_another: Este usuario asistiu a %{score} reunións.
|
142
137
|
description_own: Atendeu %{score} reunións.
|
@@ -148,7 +143,6 @@ gl:
|
|
148
143
|
attachment_collections: Carpetas
|
149
144
|
attachments: Anexos
|
150
145
|
close: Pechar
|
151
|
-
destroy: Eliminar
|
152
146
|
edit: Editar
|
153
147
|
preview: Vista previa
|
154
148
|
registrations: Rexistros
|
@@ -206,8 +200,6 @@ gl:
|
|
206
200
|
close: Pechar
|
207
201
|
title: Pechar reunión
|
208
202
|
meetings:
|
209
|
-
destroy:
|
210
|
-
success: Reunión eliminada correctamente
|
211
203
|
edit:
|
212
204
|
update: Actualización
|
213
205
|
index:
|
@@ -228,6 +220,8 @@ gl:
|
|
228
220
|
registrations:
|
229
221
|
edit:
|
230
222
|
save: Gardar
|
223
|
+
validate: Validar
|
224
|
+
validate_registration_code: Validar o código de rexistro
|
231
225
|
form:
|
232
226
|
available_slots_help: Déixao a 0 se ten slots ilimitados dispoñibles.
|
233
227
|
invites: Invitacións
|
@@ -240,6 +234,9 @@ gl:
|
|
240
234
|
update:
|
241
235
|
invalid: Produciuse un problema ao gardar a configuración de rexistro.
|
242
236
|
success: A configuración das inscricións da xuntanza gardouse correctamente.
|
237
|
+
validate_registration_code:
|
238
|
+
invalid: Este código de rexistro non é válido.
|
239
|
+
success: Código de rexistro validado con éxito.
|
243
240
|
admin_log:
|
244
241
|
invite:
|
245
242
|
create: "%{user_name} invitados %{attendee_name} para unirse a %{resource_name} reunión no %{space_name} espazo"
|
@@ -303,8 +300,6 @@ gl:
|
|
303
300
|
see_all: Ver todas as xuntanzas
|
304
301
|
see_all_withdrawn: Ver todas as xuntanzas anuladas
|
305
302
|
text_banner: Estás a ver todas as xuntanzas anuladas polos seus autores. %{go_back_link}.
|
306
|
-
meeting:
|
307
|
-
close_meeting: Pechar reunión
|
308
303
|
meetings:
|
309
304
|
upcoming_meetings_warning: Actualmente, non hai reunións programadas, pero aquí podes atopar todas as reunións anteriores.
|
310
305
|
registration_confirm:
|
@@ -328,7 +323,6 @@ gl:
|
|
328
323
|
other: "%{count} slots restantes"
|
329
324
|
withdraw_btn_hint: Podes anular a túa xuntanza se mudas de parecer. A xuntanza non está anulada, aparecerá na listaxe de xuntanzas anuladas.
|
330
325
|
withdraw_confirmation_html: Estás certo/a de querer anular esta xuntanza?<br><br><strong>Esta acción non pode ser cancelada!</strong>
|
331
|
-
withdraw_meeting: Anular xuntanza
|
332
326
|
models:
|
333
327
|
invite:
|
334
328
|
fields:
|
data/config/locales/hu.yml
CHANGED
@@ -56,8 +56,6 @@ hu:
|
|
56
56
|
admin:
|
57
57
|
filters:
|
58
58
|
meetings:
|
59
|
-
category_id_eq:
|
60
|
-
label: Kategória
|
61
59
|
closed_at_present:
|
62
60
|
label: Állapot
|
63
61
|
values:
|
@@ -68,8 +66,6 @@ hu:
|
|
68
66
|
values:
|
69
67
|
'false': Előzmények
|
70
68
|
'true': Közelgő
|
71
|
-
scope_id_eq:
|
72
|
-
label: Hatáskör
|
73
69
|
with_any_origin:
|
74
70
|
label: Kiindulópont
|
75
71
|
values:
|
@@ -106,8 +102,6 @@ hu:
|
|
106
102
|
maps_enabled: Térképek engedélyezve
|
107
103
|
registration_code_enabled: Regisztrációs kód engedélyezve
|
108
104
|
resources_permissions_enabled: Minden találkozóra saját műveleti engedélyt állíthat be
|
109
|
-
scope_id: Hatáskör
|
110
|
-
scopes_enabled: A hatókör engedélyezett
|
111
105
|
terms_and_conditions_url_for_meeting_creators: A találkozó szervezői számára a felhasználás feltételek URL-je
|
112
106
|
step:
|
113
107
|
announcement: Közlemény
|
@@ -164,7 +158,7 @@ hu:
|
|
164
158
|
badges:
|
165
159
|
attended_meetings:
|
166
160
|
conditions:
|
167
|
-
|
161
|
+
- Regisztráljon a találkozóra, amelyen részt szeretne venni
|
168
162
|
description: Ezt a jelvényt akkor kapja meg, ha több személyes találkozót szervez.
|
169
163
|
description_another: Ez a felhasználó %{score} találkozón vett részt.
|
170
164
|
description_own: '%{score} találkozóra vett részt.'
|
@@ -176,7 +170,6 @@ hu:
|
|
176
170
|
attachment_collections: Mappák
|
177
171
|
attachments: Mellékletek
|
178
172
|
close: Bezárás
|
179
|
-
destroy: Törlés
|
180
173
|
edit: Szerkesztés
|
181
174
|
invalid_destroy:
|
182
175
|
proposals_count:
|
@@ -245,12 +238,6 @@ hu:
|
|
245
238
|
create:
|
246
239
|
invalid: Probléma történt a találkozó létrehozása során.
|
247
240
|
success: A találkozó létrehozása sikeres - a nyilvánossá tételhez manuálisan kell publikálnia.
|
248
|
-
destroy:
|
249
|
-
invalid:
|
250
|
-
proposals_count:
|
251
|
-
one: A találkozót nem lehet megsemmisíteni, mert %{count} javaslat van társítva hozzá.
|
252
|
-
other: A találkozót nem lehet megsemmisíteni, mert %{count} javaslat van társítva hozzá.
|
253
|
-
success: Találkozó törlése sikeres
|
254
241
|
edit:
|
255
242
|
title: Találkozó szerkesztése
|
256
243
|
update: Frissítés
|
@@ -284,6 +271,8 @@ hu:
|
|
284
271
|
registrations:
|
285
272
|
edit:
|
286
273
|
save: Mentés
|
274
|
+
validate: Érvényesítés
|
275
|
+
validate_registration_code: Érvényesítsd a regisztrációs kódot
|
287
276
|
form:
|
288
277
|
available_slots_help: Hagyd "0" értéken, ha a jelentkezők száma korlátlan.
|
289
278
|
invites: Meghívók
|
@@ -298,6 +287,9 @@ hu:
|
|
298
287
|
update:
|
299
288
|
invalid: Probléma történt a regisztrációs beállítások mentésekor.
|
300
289
|
success: Találkozó nyilvántartási beállításainak mentése sikeres.
|
290
|
+
validate_registration_code:
|
291
|
+
invalid: Érvénytelen a regisztrációs kód.
|
292
|
+
success: Regisztrációs kód érvényesítése sikeres.
|
301
293
|
admin_log:
|
302
294
|
invite:
|
303
295
|
create: "%{user_name} meghívta őt: %{attendee_name}, hogy csatlakozzon ehhez: %{resource_name}, itt: %{space_name}"
|
@@ -315,8 +307,6 @@ hu:
|
|
315
307
|
questionnaire:
|
316
308
|
update: "%{user_name} frissítette a kérdőívet a %{meeting_name} üléshez"
|
317
309
|
application_helper:
|
318
|
-
filter_category_values:
|
319
|
-
all: Összes
|
320
310
|
filter_meeting_space_values:
|
321
311
|
all: Összes
|
322
312
|
calendar_modal:
|
@@ -403,13 +393,11 @@ hu:
|
|
403
393
|
address_help: 'Cím: Geocoder használata a helymeghatározáshoz'
|
404
394
|
available_slots_help: Hagyd "0" értéken, ha a jelentkezők száma korlátlan
|
405
395
|
create_as: Ülés létrehozása mint
|
406
|
-
meeting:
|
407
|
-
close_meeting: Ttalálkozó lezárása
|
408
|
-
edit_meeting: Találkozó szerkesztése
|
409
396
|
meetings:
|
410
397
|
upcoming_meetings_warning: Jelenleg nincs ütemezett találkozó, de itt megtalálhatod az összes korábbi találkozó listáját.
|
411
398
|
new:
|
412
399
|
create: Létrehoz
|
400
|
+
title: Találkozó létrehozása
|
413
401
|
registration_confirm:
|
414
402
|
cancel: Mégse
|
415
403
|
confirm: Megerősítés
|
@@ -484,7 +472,7 @@ hu:
|
|
484
472
|
meetings:
|
485
473
|
description: A létrehozott találkozók száma
|
486
474
|
object: ülések
|
487
|
-
title:
|
475
|
+
title: találkozók
|
488
476
|
participatory_spaces:
|
489
477
|
highlighted_meetings:
|
490
478
|
past_meetings: Korábbi találkozók
|
data/config/locales/id-ID.yml
CHANGED
@@ -41,12 +41,6 @@ id:
|
|
41
41
|
other: Pendaftaran
|
42
42
|
decidim:
|
43
43
|
admin:
|
44
|
-
filters:
|
45
|
-
meetings:
|
46
|
-
category_id_eq:
|
47
|
-
label: Kategori
|
48
|
-
scope_id_eq:
|
49
|
-
label: Cakupan
|
50
44
|
meeting_copies:
|
51
45
|
create:
|
52
46
|
error: Terjadi kesalahan saat menduplikasi rapat ini.
|
@@ -66,7 +60,6 @@ id:
|
|
66
60
|
default_registration_terms: Ketentuan pendaftaran default
|
67
61
|
enable_pads_creation: Aktifkan pembuatan bantalan
|
68
62
|
resources_permissions_enabled: Izin tindakan dapat diatur untuk setiap pertemuan
|
69
|
-
scope_id: Cakupan
|
70
63
|
step:
|
71
64
|
announcement: Pengumuman
|
72
65
|
comments_blocked: Komentar diblokir
|
@@ -119,7 +112,7 @@ id:
|
|
119
112
|
badges:
|
120
113
|
attended_meetings:
|
121
114
|
conditions:
|
122
|
-
|
115
|
+
- Daftarkan dalam pertemuan yang ingin Anda hadiri
|
123
116
|
description: Lencana ini diberikan ketika Anda menghadiri beberapa pertemuan tatap muka.
|
124
117
|
description_another: Pengguna ini telah menghadiri %{score} rapat.
|
125
118
|
description_own: Anda telah menghadiri %{score} pertemuan.
|
@@ -131,7 +124,6 @@ id:
|
|
131
124
|
attachment_collections: Folder
|
132
125
|
attachments: Lampiran
|
133
126
|
close: Dekat
|
134
|
-
destroy: Menghapus
|
135
127
|
edit: Edit
|
136
128
|
preview: Preview
|
137
129
|
registrations: Pendaftaran
|
@@ -188,8 +180,6 @@ id:
|
|
188
180
|
close: Dekat
|
189
181
|
title: Tutup rapat
|
190
182
|
meetings:
|
191
|
-
destroy:
|
192
|
-
success: Rapat berhasil dihapus
|
193
183
|
edit:
|
194
184
|
update: Memperbarui
|
195
185
|
index:
|
@@ -210,6 +200,8 @@ id:
|
|
210
200
|
registrations:
|
211
201
|
edit:
|
212
202
|
save: Menyimpan
|
203
|
+
validate: Mengesahkan
|
204
|
+
validate_registration_code: Validasikan kode registrasi
|
213
205
|
form:
|
214
206
|
available_slots_help: Biarkan hingga 0 jika Anda memiliki slot tidak terbatas.
|
215
207
|
invites: Undangan
|
@@ -220,6 +212,9 @@ id:
|
|
220
212
|
update:
|
221
213
|
invalid: Terjadi masalah saat menyimpan pengaturan pendaftaran.
|
222
214
|
success: Pengaturan pendaftaran rapat berhasil disimpan.
|
215
|
+
validate_registration_code:
|
216
|
+
invalid: Kode registrasi ini tidak valid.
|
217
|
+
success: Kode registrasi berhasil divalidasi.
|
223
218
|
admin_log:
|
224
219
|
invite:
|
225
220
|
create: "%{user_name} diundang %{attendee_name} untuk bergabung dengan %{resource_name} pertemuan di %{space_name} ruang"
|
@@ -255,8 +250,6 @@ id:
|
|
255
250
|
category: Kategori
|
256
251
|
date: Tanggal
|
257
252
|
search: Pencarian
|
258
|
-
meeting:
|
259
|
-
close_meeting: Tutup rapat
|
260
253
|
meetings:
|
261
254
|
upcoming_meetings_warning: Saat ini, tidak ada pertemuan yang dijadwalkan, tetapi di sini Anda dapat menemukan semua pertemuan sebelumnya yang terdaftar.
|
262
255
|
registration_confirm:
|
data/config/locales/is-IS.yml
CHANGED
@@ -24,12 +24,6 @@ is:
|
|
24
24
|
transparent: Gegnsætt
|
25
25
|
decidim:
|
26
26
|
admin:
|
27
|
-
filters:
|
28
|
-
meetings:
|
29
|
-
category_id_eq:
|
30
|
-
label: Flokkur
|
31
|
-
scope_id_eq:
|
32
|
-
label: Umfang
|
33
27
|
meeting_copies:
|
34
28
|
new:
|
35
29
|
copy: Afrita
|
@@ -44,7 +38,6 @@ is:
|
|
44
38
|
announcement: Tilkynning
|
45
39
|
comments_enabled: Athugasemdir virkt
|
46
40
|
default_registration_terms: Sjálfgefin skráningarskilmálar
|
47
|
-
scope_id: Umfang
|
48
41
|
step:
|
49
42
|
announcement: Tilkynning
|
50
43
|
comments_blocked: Athugasemdir læst
|
@@ -84,7 +77,6 @@ is:
|
|
84
77
|
actions:
|
85
78
|
attachments: Viðhengi
|
86
79
|
close: Loka
|
87
|
-
destroy: Eyða
|
88
80
|
edit: Breyta
|
89
81
|
preview: Preview
|
90
82
|
registrations: Skráningar
|
@@ -100,8 +92,6 @@ is:
|
|
100
92
|
close: Loka
|
101
93
|
title: Loka fundi
|
102
94
|
meetings:
|
103
|
-
destroy:
|
104
|
-
success: Fundur með góðum árangri eytt
|
105
95
|
edit:
|
106
96
|
update: Uppfæra
|
107
97
|
index:
|
@@ -149,8 +139,6 @@ is:
|
|
149
139
|
category: Flokkur
|
150
140
|
date: Dagsetning
|
151
141
|
search: Leita
|
152
|
-
meeting:
|
153
|
-
close_meeting: Loka fundi
|
154
142
|
meetings:
|
155
143
|
upcoming_meetings_warning: Eins og er, eru engar áætlanir fundar, en hér er hægt að finna allar fyrri fundi skráð.
|
156
144
|
registration_confirm:
|
@@ -181,9 +169,6 @@ is:
|
|
181
169
|
types:
|
182
170
|
private_meeting: Einkafundur
|
183
171
|
transparent: Gegnsætt
|
184
|
-
metrics:
|
185
|
-
meetings:
|
186
|
-
title: Fundir
|
187
172
|
participatory_spaces:
|
188
173
|
highlighted_meetings:
|
189
174
|
past_meetings: Fyrri fundi
|