decidim-meetings 0.29.2 → 0.30.0.rc2
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 +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/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 +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/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_aside.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/config/locales/ar.yml +17 -17
- data/config/locales/bg.yml +5 -25
- data/config/locales/ca.yml +137 -25
- data/config/locales/cs.yml +138 -28
- data/config/locales/de.yml +138 -26
- data/config/locales/el.yml +1 -22
- 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 +138 -26
- data/config/locales/fi-plain.yml +138 -26
- data/config/locales/fi.yml +138 -26
- data/config/locales/fr-CA.yml +79 -26
- data/config/locales/fr.yml +79 -26
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +1 -12
- data/config/locales/hu.yml +1 -19
- data/config/locales/id-ID.yml +1 -13
- data/config/locales/is-IS.yml +0 -12
- data/config/locales/it.yml +1 -17
- data/config/locales/ja.yml +95 -25
- data/config/locales/lb.yml +0 -11
- data/config/locales/lt.yml +1 -23
- data/config/locales/lv.yml +1 -13
- data/config/locales/nl.yml +1 -17
- data/config/locales/no.yml +1 -16
- data/config/locales/pl.yml +5 -21
- data/config/locales/pt-BR.yml +1 -21
- data/config/locales/pt.yml +1 -17
- data/config/locales/ro-RO.yml +30 -17
- data/config/locales/ru.yml +1 -13
- data/config/locales/sk.yml +1 -13
- data/config/locales/sv.yml +74 -26
- data/config/locales/tr-TR.yml +1 -19
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +1 -18
- data/config/locales/zh-TW.yml +1 -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/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 -21
- 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: Périmètre d'application
|
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: Périmètre d'application
|
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: Toutes
|
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
|
@@ -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:
|
@@ -308,8 +300,6 @@ gl:
|
|
308
300
|
see_all: Ver todas as xuntanzas
|
309
301
|
see_all_withdrawn: Ver todas as xuntanzas anuladas
|
310
302
|
text_banner: Estás a ver todas as xuntanzas anuladas polos seus autores. %{go_back_link}.
|
311
|
-
meeting:
|
312
|
-
close_meeting: Pechar reunión
|
313
303
|
meetings:
|
314
304
|
upcoming_meetings_warning: Actualmente, non hai reunións programadas, pero aquí podes atopar todas as reunións anteriores.
|
315
305
|
registration_confirm:
|
@@ -333,7 +323,6 @@ gl:
|
|
333
323
|
other: "%{count} slots restantes"
|
334
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.
|
335
325
|
withdraw_confirmation_html: Estás certo/a de querer anular esta xuntanza?<br><br><strong>Esta acción non pode ser cancelada!</strong>
|
336
|
-
withdraw_meeting: Anular xuntanza
|
337
326
|
models:
|
338
327
|
invite:
|
339
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
|
@@ -320,8 +307,6 @@ hu:
|
|
320
307
|
questionnaire:
|
321
308
|
update: "%{user_name} frissítette a kérdőívet a %{meeting_name} üléshez"
|
322
309
|
application_helper:
|
323
|
-
filter_category_values:
|
324
|
-
all: Összes
|
325
310
|
filter_meeting_space_values:
|
326
311
|
all: Összes
|
327
312
|
calendar_modal:
|
@@ -408,9 +393,6 @@ hu:
|
|
408
393
|
address_help: 'Cím: Geocoder használata a helymeghatározáshoz'
|
409
394
|
available_slots_help: Hagyd "0" értéken, ha a jelentkezők száma korlátlan
|
410
395
|
create_as: Ülés létrehozása mint
|
411
|
-
meeting:
|
412
|
-
close_meeting: Ttalálkozó lezárása
|
413
|
-
edit_meeting: Találkozó szerkesztése
|
414
396
|
meetings:
|
415
397
|
upcoming_meetings_warning: Jelenleg nincs ütemezett találkozó, de itt megtalálhatod az összes korábbi találkozó listáját.
|
416
398
|
new:
|
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:
|
@@ -260,8 +250,6 @@ id:
|
|
260
250
|
category: Kategori
|
261
251
|
date: Tanggal
|
262
252
|
search: Pencarian
|
263
|
-
meeting:
|
264
|
-
close_meeting: Tutup rapat
|
265
253
|
meetings:
|
266
254
|
upcoming_meetings_warning: Saat ini, tidak ada pertemuan yang dijadwalkan, tetapi di sini Anda dapat menemukan semua pertemuan sebelumnya yang terdaftar.
|
267
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:
|
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: Visibilità
|
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: Visibilità
|
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,7 +165,6 @@ it:
|
|
171
165
|
attachment_collections: Cartelle
|
172
166
|
attachments: Allegati
|
173
167
|
close: Chiuso
|
174
|
-
destroy: Cancella
|
175
168
|
edit: Modifica
|
176
169
|
invalid_destroy:
|
177
170
|
proposals_count:
|
@@ -237,8 +230,6 @@ it:
|
|
237
230
|
meetings:
|
238
231
|
create:
|
239
232
|
success: Riunione creata con successo. Nota che non è ancora pubblicata, devi pubblicarla manualmente.
|
240
|
-
destroy:
|
241
|
-
success: OK, il meeting è stato cancellato.
|
242
233
|
edit:
|
243
234
|
title: Modifica la riunione
|
244
235
|
update: Modifica
|
@@ -304,9 +295,6 @@ it:
|
|
304
295
|
value_types:
|
305
296
|
organizer_presenter:
|
306
297
|
not_found: 'L''organizzatore non è stato trovato nel database (ID: %{id})'
|
307
|
-
application_helper:
|
308
|
-
filter_category_values:
|
309
|
-
all: Tutte
|
310
298
|
calendar_modal:
|
311
299
|
calendar_url: URL del calendario
|
312
300
|
export_calendar: Esporta il calendario
|
@@ -378,14 +366,10 @@ it:
|
|
378
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.'
|
379
367
|
online_meeting_url_help: 'Link: permette ai partecipanti di connettersi direttamente alla tua riunione'
|
380
368
|
registration_url_help: 'Link: consentire ai partecipanti di accedere al servizio esterno che stai utilizzando per le iscrizioni'
|
381
|
-
select_a_category: Scegli una categoria
|
382
369
|
select_a_meeting_type: Seleziona un tipo di riunione
|
383
370
|
select_a_registration_type: Seleziona un tipo di registrazione
|
384
371
|
index:
|
385
372
|
new_meeting: Nuova riunione
|
386
|
-
meeting:
|
387
|
-
close_meeting: Chiusura meeting
|
388
|
-
edit_meeting: Modifica la riunione
|
389
373
|
meetings:
|
390
374
|
upcoming_meetings_warning: Attualmente non vi sono meeting in programma, ma qui puoi trovare elencati tutti i meeting effettuati in passato.
|
391
375
|
new:
|