decidim-meetings 0.29.1 → 0.30.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/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 +6 -4
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +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 +17 -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/close_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +17 -31
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +2 -2
- 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 +23 -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/packs/stylesheets/decidim/meetings/_item.scss +5 -17
- data/app/permissions/decidim/meetings/admin/permissions.rb +1 -1
- data/app/permissions/decidim/meetings/permissions.rb +20 -11
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +14 -6
- 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 +10 -2
- 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/registration_mailer/confirmation.html.erb +1 -1
- 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 +5 -5
- 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 +17 -15
- data/config/locales/bg.yml +5 -26
- data/config/locales/bn-BD.yml +1 -0
- data/config/locales/bs-BA.yml +8 -0
- data/config/locales/ca.yml +137 -25
- data/config/locales/cs.yml +139 -28
- data/config/locales/de.yml +172 -92
- data/config/locales/el.yml +1 -20
- data/config/locales/en.yml +133 -21
- data/config/locales/es-MX.yml +137 -25
- data/config/locales/es-PY.yml +137 -25
- data/config/locales/es.yml +137 -25
- data/config/locales/eu.yml +167 -55
- data/config/locales/fi-plain.yml +138 -26
- data/config/locales/fi.yml +150 -38
- data/config/locales/fr-CA.yml +79 -26
- data/config/locales/fr.yml +79 -26
- data/config/locales/ga-IE.yml +0 -10
- data/config/locales/gl.yml +1 -8
- data/config/locales/hu.yml +1 -17
- data/config/locales/id-ID.yml +1 -5
- data/config/locales/is-IS.yml +0 -4
- data/config/locales/it.yml +1 -12
- data/config/locales/ja.yml +96 -26
- data/config/locales/lb.yml +0 -8
- data/config/locales/lt.yml +1 -24
- data/config/locales/lv.yml +1 -5
- data/config/locales/nl.yml +1 -15
- data/config/locales/no.yml +1 -14
- data/config/locales/pl.yml +5 -22
- data/config/locales/pt-BR.yml +1 -22
- data/config/locales/pt.yml +1 -12
- data/config/locales/ro-RO.yml +32 -16
- data/config/locales/ru.yml +1 -5
- data/config/locales/sk.yml +1 -5
- data/config/locales/sv.yml +74 -26
- data/config/locales/tr-TR.yml +1 -8
- data/config/locales/uk.yml +0 -4
- data/config/locales/zh-CN.yml +1 -8
- data/config/locales/zh-TW.yml +1 -19
- 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 +2 -2
- 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 +44 -40
- data/lib/decidim/api/meetings_type.rb +5 -8
- 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 +2 -0
- data/lib/decidim/meetings/meeting_serializer.rb +86 -38
- 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 +14 -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 +35 -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/fr.yml
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
fr:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
answer:
|
6
|
+
add_documents: Ajouter des documents
|
5
7
|
close_meeting:
|
6
8
|
attendees_count: Nombre de participants
|
7
9
|
attending_organizations: Liste des organisations qui ont participé à cette rencontre
|
@@ -97,8 +99,6 @@ fr:
|
|
97
99
|
'false': Non acceptée
|
98
100
|
'true': Accepté
|
99
101
|
meetings:
|
100
|
-
category_id_eq:
|
101
|
-
label: Catégorie
|
102
102
|
closed_at_present:
|
103
103
|
label: État
|
104
104
|
values:
|
@@ -109,8 +109,6 @@ fr:
|
|
109
109
|
values:
|
110
110
|
'false': Passées
|
111
111
|
'true': À venir
|
112
|
-
scope_id_eq:
|
113
|
-
label: Secteur
|
114
112
|
with_any_origin:
|
115
113
|
label: Origine
|
116
114
|
values:
|
@@ -160,14 +158,29 @@ fr:
|
|
160
158
|
maps_enabled: Cartes activées
|
161
159
|
registration_code_enabled: Code d'enregistrement activé
|
162
160
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
163
|
-
scope_id: Secteur
|
164
|
-
scopes_enabled: Secteurs activés
|
165
161
|
terms_and_conditions_url_for_meeting_creators: URL des conditions générales pour les auteurs de rencontres
|
166
162
|
step:
|
167
163
|
announcement: Annonce
|
168
164
|
comments_blocked: Commentaires bloqués
|
169
165
|
creation_enabled_for_participants: La création de rencontre par les participants est activée
|
170
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
|
171
184
|
events:
|
172
185
|
meetings:
|
173
186
|
meeting_closed:
|
@@ -221,7 +234,7 @@ fr:
|
|
221
234
|
badges:
|
222
235
|
attended_meetings:
|
223
236
|
conditions:
|
224
|
-
|
237
|
+
- Inscrivez-vous aux rencontres auxquelles vous souhaitez participer
|
225
238
|
description: Ce badge est attribué lorsque vous participez à plusieurs rencontres en face à face.
|
226
239
|
description_another: Cet utilisateur a participé à %{score} rencontres.
|
227
240
|
description_own: Vous avez assisté à %{score} rencontres.
|
@@ -235,8 +248,8 @@ fr:
|
|
235
248
|
attachment_collections: Dossiers
|
236
249
|
attachments: Documents liés
|
237
250
|
close: Clore
|
238
|
-
|
239
|
-
|
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.
|
240
253
|
edit: Modifier
|
241
254
|
invalid_destroy:
|
242
255
|
proposals_count:
|
@@ -247,6 +260,7 @@ fr:
|
|
247
260
|
preview: Aperçu
|
248
261
|
registrations: Inscriptions
|
249
262
|
title: Actions
|
263
|
+
view_deleted_meetings: Voir les réunions supprimées
|
250
264
|
admin:
|
251
265
|
agenda:
|
252
266
|
agenda_item:
|
@@ -311,15 +325,11 @@ fr:
|
|
311
325
|
close:
|
312
326
|
invalid: Il y a eu un problème au moment de clore cette rencontre.
|
313
327
|
success: Rencontre close avec succès.
|
328
|
+
component:
|
329
|
+
unlink: Délier
|
314
330
|
create:
|
315
331
|
invalid: Une erreur s'est produite lors de la création de cette rencontre.
|
316
332
|
success: Rencontre créée avec succès. Notez que celle-ci n'est pas encore publiée, vous devez la publier manuellement.
|
317
|
-
destroy:
|
318
|
-
invalid:
|
319
|
-
proposals_count:
|
320
|
-
one: La rencontre ne peut être supprimée car %{count} proposition y est rattachée.
|
321
|
-
other: La rencontre ne peut être supprimée car %{count} propositions y sont rattachées.
|
322
|
-
success: La rencontre a été supprimée avec succès
|
323
333
|
edit:
|
324
334
|
title: Modifier la rencontre
|
325
335
|
update: Mettre à jour
|
@@ -335,7 +345,18 @@ fr:
|
|
335
345
|
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
336
346
|
select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
|
337
347
|
index:
|
348
|
+
linked_meeting_warning_html: Cette réunion doit être modifiée à partir de <br><a href="%{href}">%{name}</a>
|
338
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
|
339
360
|
new:
|
340
361
|
create: Créer
|
341
362
|
title: Créer une rencontre
|
@@ -367,10 +388,10 @@ fr:
|
|
367
388
|
poll:
|
368
389
|
form:
|
369
390
|
announcement_html:
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
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.
|
374
395
|
registrations:
|
375
396
|
edit:
|
376
397
|
save: Sauvegarder
|
@@ -379,6 +400,7 @@ fr:
|
|
379
400
|
form:
|
380
401
|
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité.
|
381
402
|
invites: Invitations
|
403
|
+
manage_questions: Gérer les questions
|
382
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.
|
383
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.
|
384
406
|
registration_form: Formulaire d'inscription
|
@@ -411,8 +433,6 @@ fr:
|
|
411
433
|
questionnaire:
|
412
434
|
update: "%{user_name} a mis à jour le questionnaire pour la réunion %{meeting_name}"
|
413
435
|
application_helper:
|
414
|
-
filter_category_values:
|
415
|
-
all: Tout
|
416
436
|
filter_meeting_space_values:
|
417
437
|
all: Tout
|
418
438
|
calendar:
|
@@ -522,7 +542,6 @@ fr:
|
|
522
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.'
|
523
543
|
online_meeting_url_help: 'Lien : permettre aux participants de se connecter directement à votre rencontre'
|
524
544
|
registration_url_help: 'Lien : permet aux participants de partir sur le service externe que vous utilisez pour les inscriptions'
|
525
|
-
select_a_category: Veuillez sélectionner une catégorie
|
526
545
|
select_a_meeting_type: Veuillez sélectionner un type de rencontre
|
527
546
|
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
528
547
|
select_an_iframe_access_level: Veuillez sélectionner un niveau d'accès iframe
|
@@ -533,9 +552,9 @@ fr:
|
|
533
552
|
see_all_withdrawn: Voir toutes les rencontres annulées
|
534
553
|
text_banner: Vous consultez la liste des rencontres annulées par leurs auteurs. %{go_back_link}.
|
535
554
|
meeting:
|
536
|
-
close_meeting: Clore
|
555
|
+
close_meeting: Clore
|
537
556
|
edit_close_meeting: Modifier le compte-rendu de la rencontre
|
538
|
-
edit_meeting: Modifier
|
557
|
+
edit_meeting: Modifier
|
539
558
|
join_meeting: Participer à la rencontre
|
540
559
|
reply_poll: Répondre au sondage
|
541
560
|
view_poll: Voir le sondage
|
@@ -562,6 +581,7 @@ fr:
|
|
562
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
|
563
582
|
no_slots_available: Il ne reste plus de place
|
564
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>.
|
565
585
|
registration_code_help_text: Votre code d'inscription
|
566
586
|
registration_state:
|
567
587
|
validated: Validé
|
@@ -572,7 +592,7 @@ fr:
|
|
572
592
|
visit_finished: Consulter l’historique des rencontres
|
573
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.
|
574
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>
|
575
|
-
withdraw_meeting:
|
595
|
+
withdraw_meeting: Retirer
|
576
596
|
update:
|
577
597
|
invalid: Une erreur s'est produite lors de la mise à jour de la rencontre.
|
578
598
|
success: La rencontre a été mise à jour avec succès.
|
@@ -664,13 +684,45 @@ fr:
|
|
664
684
|
transparent: Visible par les non-membres
|
665
685
|
withdraw: Retirée
|
666
686
|
withdraw:
|
667
|
-
error: Une erreur s'est produite lors
|
687
|
+
error: Une erreur s'est produite lors du retrait de la rencontre.
|
668
688
|
success: La rencontre a été annulée avec succès.
|
669
689
|
metrics:
|
670
690
|
meetings:
|
671
691
|
description: Nombre de rencontres créées
|
672
692
|
object: rencontres
|
673
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
|
674
726
|
participatory_spaces:
|
675
727
|
highlighted_meetings:
|
676
728
|
past_meetings: Rencontres passées
|
@@ -684,6 +736,7 @@ fr:
|
|
684
736
|
meeting_proposal: 'Propositions créées lors de cette rencontre :'
|
685
737
|
proposal_meeting: 'Rencontres associées :'
|
686
738
|
statistics:
|
739
|
+
attendees_count: Participants à la réunion
|
687
740
|
meetings_count: Rencontres
|
688
741
|
devise:
|
689
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
|
@@ -135,8 +127,6 @@ ga:
|
|
135
127
|
type_values:
|
136
128
|
all: Uile
|
137
129
|
online: Ar líne
|
138
|
-
form:
|
139
|
-
select_a_category: Roghnaigh catagóir le do thoil
|
140
130
|
new:
|
141
131
|
back: Ar Ais
|
142
132
|
create: Cruthaigh
|
data/config/locales/gl.yml
CHANGED
@@ -131,7 +131,7 @@ gl:
|
|
131
131
|
badges:
|
132
132
|
attended_meetings:
|
133
133
|
conditions:
|
134
|
-
|
134
|
+
- Rexístrese nas reunións que desexa asistir
|
135
135
|
description: Este distintivo é concedido cando asistes a varias reunións cara a cara.
|
136
136
|
description_another: Este usuario asistiu a %{score} reunións.
|
137
137
|
description_own: Atendeu %{score} reunións.
|
@@ -143,8 +143,6 @@ gl:
|
|
143
143
|
attachment_collections: Carpetas
|
144
144
|
attachments: Anexos
|
145
145
|
close: Pechar
|
146
|
-
confirm_destroy: Estás seguro de que queres eliminar esta reunión?
|
147
|
-
destroy: Eliminar
|
148
146
|
edit: Editar
|
149
147
|
preview: Vista previa
|
150
148
|
registrations: Rexistros
|
@@ -202,8 +200,6 @@ gl:
|
|
202
200
|
close: Pechar
|
203
201
|
title: Pechar reunión
|
204
202
|
meetings:
|
205
|
-
destroy:
|
206
|
-
success: Reunión eliminada correctamente
|
207
203
|
edit:
|
208
204
|
update: Actualización
|
209
205
|
index:
|
@@ -256,8 +252,6 @@ gl:
|
|
256
252
|
organizer_presenter:
|
257
253
|
not_found: 'O organizador non se atopou na base de datos (ID: %{id})'
|
258
254
|
application_helper:
|
259
|
-
filter_category_values:
|
260
|
-
all: Todas
|
261
255
|
filter_meeting_space_values:
|
262
256
|
all: Todas
|
263
257
|
calendar_modal:
|
@@ -329,7 +323,6 @@ gl:
|
|
329
323
|
other: "%{count} slots restantes"
|
330
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.
|
331
325
|
withdraw_confirmation_html: Estás certo/a de querer anular esta xuntanza?<br><br><strong>Esta acción non pode ser cancelada!</strong>
|
332
|
-
withdraw_meeting: Anular xuntanza
|
333
326
|
models:
|
334
327
|
invite:
|
335
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ókö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ókö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,8 +170,6 @@ hu:
|
|
176
170
|
attachment_collections: Mappák
|
177
171
|
attachments: Mellékletek
|
178
172
|
close: Bezárás
|
179
|
-
confirm_destroy: Biztosan törölni szeretnéd ezt a találkozót?
|
180
|
-
destroy: Törlés
|
181
173
|
edit: Szerkesztés
|
182
174
|
invalid_destroy:
|
183
175
|
proposals_count:
|
@@ -246,12 +238,6 @@ hu:
|
|
246
238
|
create:
|
247
239
|
invalid: Probléma történt a találkozó létrehozása során.
|
248
240
|
success: A találkozó létrehozása sikeres - a nyilvánossá tételhez manuálisan kell publikálnia.
|
249
|
-
destroy:
|
250
|
-
invalid:
|
251
|
-
proposals_count:
|
252
|
-
one: A találkozót nem lehet megsemmisíteni, mert %{count} javaslat van társítva hozzá.
|
253
|
-
other: A találkozót nem lehet megsemmisíteni, mert %{count} javaslat van társítva hozzá.
|
254
|
-
success: Találkozó törlése sikeres
|
255
241
|
edit:
|
256
242
|
title: Találkozó szerkesztése
|
257
243
|
update: Frissítés
|
@@ -321,8 +307,6 @@ hu:
|
|
321
307
|
questionnaire:
|
322
308
|
update: "%{user_name} frissítette a kérdőívet a %{meeting_name} üléshez"
|
323
309
|
application_helper:
|
324
|
-
filter_category_values:
|
325
|
-
all: Összes
|
326
310
|
filter_meeting_space_values:
|
327
311
|
all: Összes
|
328
312
|
calendar_modal:
|
data/config/locales/id-ID.yml
CHANGED
@@ -112,7 +112,7 @@ id:
|
|
112
112
|
badges:
|
113
113
|
attended_meetings:
|
114
114
|
conditions:
|
115
|
-
|
115
|
+
- Daftarkan dalam pertemuan yang ingin Anda hadiri
|
116
116
|
description: Lencana ini diberikan ketika Anda menghadiri beberapa pertemuan tatap muka.
|
117
117
|
description_another: Pengguna ini telah menghadiri %{score} rapat.
|
118
118
|
description_own: Anda telah menghadiri %{score} pertemuan.
|
@@ -124,8 +124,6 @@ id:
|
|
124
124
|
attachment_collections: Folder
|
125
125
|
attachments: Lampiran
|
126
126
|
close: Dekat
|
127
|
-
confirm_destroy: Anda yakin ingin menghapus rapat ini?
|
128
|
-
destroy: Menghapus
|
129
127
|
edit: Edit
|
130
128
|
preview: Preview
|
131
129
|
registrations: Pendaftaran
|
@@ -182,8 +180,6 @@ id:
|
|
182
180
|
close: Dekat
|
183
181
|
title: Tutup rapat
|
184
182
|
meetings:
|
185
|
-
destroy:
|
186
|
-
success: Rapat berhasil dihapus
|
187
183
|
edit:
|
188
184
|
update: Memperbarui
|
189
185
|
index:
|
data/config/locales/is-IS.yml
CHANGED
@@ -77,8 +77,6 @@ is:
|
|
77
77
|
actions:
|
78
78
|
attachments: Viðhengi
|
79
79
|
close: Loka
|
80
|
-
confirm_destroy: Ertu viss um að þú viljir eyða þessum fundi?
|
81
|
-
destroy: Eyða
|
82
80
|
edit: Breyta
|
83
81
|
preview: Preview
|
84
82
|
registrations: Skráningar
|
@@ -94,8 +92,6 @@ is:
|
|
94
92
|
close: Loka
|
95
93
|
title: Loka fundi
|
96
94
|
meetings:
|
97
|
-
destroy:
|
98
|
-
success: Fundur með góðum árangri eytt
|
99
95
|
edit:
|
100
96
|
update: Uppfæra
|
101
97
|
index:
|
data/config/locales/it.yml
CHANGED
@@ -56,8 +56,6 @@ it:
|
|
56
56
|
admin:
|
57
57
|
filters:
|
58
58
|
meetings:
|
59
|
-
category_id_eq:
|
60
|
-
label: Categoria
|
61
59
|
closed_at_present:
|
62
60
|
label: Stato
|
63
61
|
values:
|
@@ -68,8 +66,6 @@ it:
|
|
68
66
|
values:
|
69
67
|
'false': Conclusi
|
70
68
|
'true': Prossimi
|
71
|
-
scope_id_eq:
|
72
|
-
label: Ambito
|
73
69
|
with_any_origin:
|
74
70
|
values:
|
75
71
|
user_group: Gruppi di utenti
|
@@ -101,8 +97,6 @@ it:
|
|
101
97
|
maps_enabled: Mappe abilitate
|
102
98
|
registration_code_enabled: Codice di registrazione abilitato
|
103
99
|
resources_permissions_enabled: Le autorizzazioni delle azioni possono essere impostate per ogni riunione
|
104
|
-
scope_id: Ambito
|
105
|
-
scopes_enabled: Ambiti abilitati
|
106
100
|
terms_and_conditions_url_for_meeting_creators: Termini e condizioni URL per i creatori di riunione
|
107
101
|
step:
|
108
102
|
announcement: Annuncio
|
@@ -159,7 +153,7 @@ it:
|
|
159
153
|
badges:
|
160
154
|
attended_meetings:
|
161
155
|
conditions:
|
162
|
-
|
156
|
+
- Registrati agli incontri a cui vuoi partecipare
|
163
157
|
description: Questo badge è concesso quando si partecipano a numerosi incontri in presenza.
|
164
158
|
description_another: Questo utente ha partecipato a %{score} riunioni.
|
165
159
|
description_own: Hai partecipato a %{score} riunioni.
|
@@ -171,8 +165,6 @@ it:
|
|
171
165
|
attachment_collections: Cartelle
|
172
166
|
attachments: Allegati
|
173
167
|
close: Chiuso
|
174
|
-
confirm_destroy: Sei certo di voler cancellare questo meeting?
|
175
|
-
destroy: Cancella
|
176
168
|
edit: Modifica
|
177
169
|
invalid_destroy:
|
178
170
|
proposals_count:
|
@@ -238,8 +230,6 @@ it:
|
|
238
230
|
meetings:
|
239
231
|
create:
|
240
232
|
success: Riunione creata con successo. Nota che non è ancora pubblicata, devi pubblicarla manualmente.
|
241
|
-
destroy:
|
242
|
-
success: OK, il meeting è stato cancellato.
|
243
233
|
edit:
|
244
234
|
title: Modifica la riunione
|
245
235
|
update: Modifica
|
@@ -376,7 +366,6 @@ it:
|
|
376
366
|
location_hints_help: 'Suggerimenti: informazioni aggiuntive. Esempio: il pavimento dell''edificio se si tratta di una riunione di persona o la password di riunione se si tratta di una riunione online con accesso ristretto.'
|
377
367
|
online_meeting_url_help: 'Link: permette ai partecipanti di connettersi direttamente alla tua riunione'
|
378
368
|
registration_url_help: 'Link: consentire ai partecipanti di accedere al servizio esterno che stai utilizzando per le iscrizioni'
|
379
|
-
select_a_category: Scegli una categoria
|
380
369
|
select_a_meeting_type: Seleziona un tipo di riunione
|
381
370
|
select_a_registration_type: Seleziona un tipo di registrazione
|
382
371
|
index:
|