decidim-meetings 0.23.6 → 0.24.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/assets/config/decidim_meetings_manifest.js +1 -0
- data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +47 -0
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +45 -0
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/elements.erb +16 -0
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/heading.erb +1 -0
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings_cell.rb +27 -0
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +7 -0
- data/app/cells/decidim/meetings/meeting_activity_cell.rb +5 -13
- data/app/cells/decidim/meetings/meeting_cell.rb +2 -4
- data/app/cells/decidim/meetings/meeting_highlighted_list_item/show.erb +21 -0
- data/app/cells/decidim/meetings/meeting_highlighted_list_item_cell.rb +10 -0
- data/app/cells/decidim/meetings/meeting_m/address.erb +5 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +2 -0
- data/app/cells/decidim/meetings/meeting_url/show.erb +15 -0
- data/app/cells/decidim/meetings/meeting_url_cell.rb +17 -0
- data/app/cells/decidim/meetings/reported_content/show.erb +3 -0
- data/app/cells/decidim/meetings/reported_content_cell.rb +13 -0
- data/app/commands/decidim/meetings/admin/create_meeting.rb +5 -0
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +5 -0
- data/app/commands/decidim/meetings/admin/validate_registration_code.rb +2 -0
- data/app/commands/decidim/meetings/close_meeting.rb +66 -0
- data/app/commands/decidim/meetings/create_meeting.rb +7 -1
- data/app/commands/decidim/meetings/leave_meeting.rb +2 -2
- data/app/commands/decidim/meetings/update_meeting.rb +8 -1
- data/app/controllers/decidim/meetings/admin/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -2
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -2
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +43 -0
- data/app/controllers/decidim/meetings/meetings_controller.rb +9 -5
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +4 -4
- data/app/forms/decidim/meetings/admin/meeting_form.rb +62 -4
- data/app/forms/decidim/meetings/close_meeting_form.rb +31 -0
- data/app/forms/decidim/meetings/meeting_form.rb +71 -3
- data/app/helpers/decidim/meetings/application_helper.rb +20 -0
- data/app/helpers/decidim/meetings/map_helper.rb +1 -1
- data/app/models/decidim/meetings/agenda_item.rb +1 -1
- data/app/models/decidim/meetings/meeting.rb +52 -1
- data/app/permissions/decidim/meetings/permissions.rb +12 -2
- data/app/presenters/decidim/meetings/meeting_presenter.rb +33 -0
- data/app/services/decidim/meetings/meeting_search.rb +20 -0
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invites/index.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +31 -1
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +2 -2
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +23 -1
- data/app/views/decidim/meetings/admin/meetings/new.html.erb +2 -2
- data/app/views/decidim/meetings/admin/minutes/edit.html.erb +1 -1
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +20 -18
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -0
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +0 -3
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +7 -0
- data/app/views/decidim/meetings/meeting_closes/edit.html.erb +25 -0
- data/app/views/decidim/meetings/meeting_closes/proposals_picker.html.erb +1 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +6 -0
- data/app/views/decidim/meetings/meetings/_form.html.erb +36 -2
- data/app/views/decidim/meetings/meetings/_online_meeting_link.html.erb +11 -0
- data/app/views/decidim/meetings/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +0 -3
- data/app/views/decidim/meetings/meetings/new.html.erb +1 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +25 -21
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +3 -1
- data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -1
- data/config/locales/ar.yml +0 -7
- data/config/locales/ca.yml +8 -10
- data/config/locales/cs.yml +53 -16
- data/config/locales/de.yml +45 -8
- data/config/locales/el.yml +0 -10
- data/config/locales/en.yml +47 -10
- data/config/locales/es-MX.yml +18 -10
- data/config/locales/es-PY.yml +18 -10
- data/config/locales/es.yml +18 -10
- data/config/locales/eu.yml +0 -7
- data/config/locales/fi-plain.yml +45 -8
- data/config/locales/fi.yml +47 -10
- data/config/locales/fr-CA.yml +47 -10
- data/config/locales/fr.yml +49 -12
- data/config/locales/gl.yml +0 -12
- data/config/locales/hu.yml +0 -10
- data/config/locales/id-ID.yml +0 -7
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/it.yml +0 -9
- data/config/locales/ja.yml +0 -9
- data/config/locales/lv.yml +0 -10
- data/config/locales/nl.yml +43 -9
- data/config/locales/no.yml +11 -10
- data/config/locales/pl.yml +39 -13
- data/config/locales/pt-BR.yml +0 -7
- data/config/locales/pt.yml +0 -9
- data/config/locales/ro-RO.yml +0 -22
- data/config/locales/ru.yml +0 -7
- data/config/locales/sk.yml +0 -10
- data/config/locales/sl.yml +0 -4
- data/config/locales/sv.yml +11 -11
- data/config/locales/tr-TR.yml +44 -9
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -9
- data/db/migrate/20180809134748_add_upcoming_events_as_content_block.rb +1 -1
- data/db/migrate/20201006140511_add_online_meeting_url.rb +7 -0
- data/db/migrate/20201009124057_add_type_of_meeting.rb +7 -0
- data/db/migrate/20201016112641_add_registration_type_and_url_to_meetings.rb +19 -0
- data/lib/decidim/api/agenda_item_type.rb +22 -0
- data/lib/decidim/api/agenda_type.rb +19 -0
- data/lib/decidim/api/linked_resources_interface.rb +7 -6
- data/lib/decidim/api/meeting_type.rb +63 -0
- data/lib/decidim/api/meetings_type.rb +26 -0
- data/lib/decidim/api/minutes_type.rb +20 -0
- data/{app/types/decidim/meetings → lib/decidim/api}/service_type.rb +4 -4
- data/lib/decidim/api/services_interface.rb +3 -3
- data/lib/decidim/meetings/api.rb +6 -0
- data/lib/decidim/meetings/component.rb +53 -23
- data/lib/decidim/meetings/engine.rb +3 -17
- data/lib/decidim/meetings/test/factories.rb +16 -3
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +1 -1
- metadata +43 -40
- data/app/types/decidim/meetings/agenda_item_type.rb +0 -28
- data/app/types/decidim/meetings/agenda_type.rb +0 -25
- data/app/types/decidim/meetings/meeting_type.rb +0 -65
- data/app/types/decidim/meetings/meetings_type.rb +0 -32
- data/app/types/decidim/meetings/minutes_type.rb +0 -26
- data/app/views/decidim/participatory_processes/participatory_process_groups/_highlighted_meetings.html.erb +0 -15
- data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +0 -10
data/config/locales/fr.yml
CHANGED
@@ -21,19 +21,22 @@ fr:
|
|
21
21
|
end_time: Date de fin
|
22
22
|
location: Lieu
|
23
23
|
location_hints: Indicateurs d’emplacement
|
24
|
+
online_meeting_url: URL de la rencontre
|
24
25
|
organizer_gid: Créer en tant que
|
25
26
|
organizer_id: Organisateur
|
26
27
|
private_meeting: Rencontre privée
|
27
28
|
registration_form_enabled: Formulaire d'inscription activé
|
28
29
|
registration_terms: Conditions d'inscription
|
30
|
+
registration_url: URL d'inscription
|
29
31
|
registrations_enabled: Inscriptions ouvertes
|
30
32
|
start_time: Heure de début
|
31
33
|
title: Titre
|
32
34
|
transparent: Visible par les non-membres
|
35
|
+
type_of_meeting: Type
|
33
36
|
minutes:
|
34
|
-
audio_url:
|
37
|
+
audio_url: URL de l'audio
|
35
38
|
description: Description
|
36
|
-
video_url:
|
39
|
+
video_url: URL de la vidéo
|
37
40
|
visible: Est visible
|
38
41
|
errors:
|
39
42
|
models:
|
@@ -87,9 +90,11 @@ fr:
|
|
87
90
|
creation_enabled_for_participants: Les participants peuvent créer des rencontres
|
88
91
|
default_registration_terms: Conditions d'inscription par défaut
|
89
92
|
enable_pads_creation: Activer la création de pads
|
93
|
+
registration_code_enabled: Code d'enregistrement activé
|
90
94
|
resources_permissions_enabled: Les autorisations d'actions peuvent être définies pour chaque réunion
|
91
95
|
scope_id: Secteur
|
92
96
|
scopes_enabled: Secteurs activés
|
97
|
+
terms_and_conditions_url_for_meeting_creators: URL des conditions générales pour les auteurs de rencontres
|
93
98
|
step:
|
94
99
|
announcement: Annonce
|
95
100
|
comments_blocked: Commentaires bloqués
|
@@ -202,6 +207,7 @@ fr:
|
|
202
207
|
invalid: Un problème est survenu lors de la mise à jour de cet ordre du jour
|
203
208
|
success: Ordre du jour mis à jour avec succès
|
204
209
|
exports:
|
210
|
+
meeting_comments: Commentaires
|
205
211
|
meetings: Rencontres
|
206
212
|
registrations: Inscriptions
|
207
213
|
invite_join_meeting_mailer:
|
@@ -249,11 +255,18 @@ fr:
|
|
249
255
|
other: La rencontre ne peut être supprimée car %{count} propositions y sont rattachées
|
250
256
|
success: La rencontre a été supprimée avec succès
|
251
257
|
edit:
|
258
|
+
title: Modifier la rencontre
|
252
259
|
update: Mettre à jour
|
253
260
|
form:
|
254
|
-
address_help: 'L''adresse entrée est utilisée par le géocodage pour trouver l''emplacement et afficher la réunion sur la carte. Format accepté : [rue] [code postal] [ville]'
|
261
|
+
address_help: 'L''adresse entrée est utilisée par le géocodage pour trouver l''emplacement et afficher la réunion sur la carte. Format accepté : [n°] [rue] [code postal] [ville]'
|
262
|
+
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité
|
263
|
+
disclaimer: 'Avertissement : En utilisant un système d''enregistrement externe, sachez que les organisateurs de %{organization} ne sont pas responsables des données fournies par les utilisateurs au service externe.'
|
255
264
|
location_help: 'Le lieu indique le nom de l''endroit qui accueille la réunion (ex : Maison de la citoyenneté)'
|
256
|
-
location_hints_help: '
|
265
|
+
location_hints_help: 'Indices de localisation : informations complémentaires. Exemple: l''étage du bâtiment s''il s''agit d''une réunion en personne, ou le mot de passe de la réunion s''il s''agit d''une réunion en ligne avec accès restreint.'
|
266
|
+
online_meeting_url_help: 'Lien : permet aux participants de se connecter directement à votre réunion'
|
267
|
+
registration_url_help: 'Lien : permet aux participants de partir sur le service externe que vous utilisez pour les inscriptions'
|
268
|
+
select_a_meeting_type: Veuillez sélectionner un type de rencontre
|
269
|
+
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
257
270
|
index:
|
258
271
|
title: Rencontres
|
259
272
|
new:
|
@@ -277,6 +290,7 @@ fr:
|
|
277
290
|
invalid: Un problème est survenu lors de la création de ce compte rendu
|
278
291
|
success: Compte rendu créé avec succès
|
279
292
|
edit:
|
293
|
+
title: Modifier le compte-rendu
|
280
294
|
update: Mettre à jour
|
281
295
|
new:
|
282
296
|
create: Créer
|
@@ -347,7 +361,6 @@ fr:
|
|
347
361
|
space_type: Espace participatif
|
348
362
|
upcoming: À venir
|
349
363
|
last_activity:
|
350
|
-
meeting_updated_at_html: "<span>Débat mis à jour à %{link}</span>"
|
351
364
|
new_meeting_at_html: "<span>Nouvelle réunion à %{link}</span>"
|
352
365
|
mailer:
|
353
366
|
invite_join_meeting_mailer:
|
@@ -358,6 +371,11 @@ fr:
|
|
358
371
|
subject: Votre inscription a bien été enregistrée
|
359
372
|
meeting:
|
360
373
|
not_allowed: Vous n'êtes pas autorisé à voir cette rencontre
|
374
|
+
meeting_closes:
|
375
|
+
edit:
|
376
|
+
back: Retour
|
377
|
+
close: Clore la rencontre
|
378
|
+
title: Clore la rencontre
|
361
379
|
meetings:
|
362
380
|
count:
|
363
381
|
meetings_count:
|
@@ -371,12 +389,15 @@ fr:
|
|
371
389
|
title: Modifier votre rencontre
|
372
390
|
update: Mettre à jour
|
373
391
|
filters:
|
392
|
+
activity: Mon activité
|
393
|
+
all: Tous
|
374
394
|
category: Catégorie
|
375
395
|
date: Date
|
376
396
|
date_values:
|
377
397
|
all: Toutes
|
378
398
|
past: Passées
|
379
399
|
upcoming: À venir
|
400
|
+
my_meetings: Mes rencontres
|
380
401
|
origin: Origine
|
381
402
|
origin_values:
|
382
403
|
all: Toutes
|
@@ -385,17 +406,29 @@ fr:
|
|
385
406
|
user_groups: Groupes
|
386
407
|
scope: Secteur
|
387
408
|
search: Rechercher
|
409
|
+
type: Type
|
410
|
+
type_values:
|
411
|
+
all: Tous
|
412
|
+
hybrid: Hybride
|
413
|
+
in_person: En présentiel
|
414
|
+
online: En ligne
|
388
415
|
filters_small_view:
|
389
416
|
close_modal: Fermer la fenêtre de dialogue
|
390
417
|
filter: Filtrer
|
391
418
|
filter_by: Filtrer par
|
392
419
|
unfold: Voir la suite
|
393
420
|
form:
|
394
|
-
address_help: '
|
421
|
+
address_help: 'Adresse : utilisée par le géocodeur pour trouver l''emplacement'
|
422
|
+
available_slots_help: Laisser à 0 si le nombre de places disponibles est illimité
|
395
423
|
create_as: Créer une rencontre en tant que
|
424
|
+
disclaimer: 'Avertissement : En utilisant un système d''enregistrement externe, sachez que les organisateurs de %{organization} ne sont pas responsables des données fournies par les utilisateurs au service externe.'
|
396
425
|
location_help: 'Emplacement: message adressé aux utilisateurs impliquant le point de rencontre'
|
397
|
-
location_hints_help: '
|
426
|
+
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.'
|
427
|
+
online_meeting_url_help: 'Lien : permettre aux participants de se connecter directement à votre rencontre'
|
428
|
+
registration_url_help: 'Lien : permet aux participants de partir sur le service externe que vous utilisez pour les inscriptions'
|
398
429
|
select_a_category: Veuillez sélectionner une catégorie
|
430
|
+
select_a_meeting_type: Veuillez sélectionner un type de rencontre
|
431
|
+
select_a_registration_type: Veuillez sélectionner un type d'inscription
|
399
432
|
index:
|
400
433
|
new_meeting: Nouvelle rencontre
|
401
434
|
meeting_minutes:
|
@@ -414,6 +447,7 @@ fr:
|
|
414
447
|
show:
|
415
448
|
attendees: Nombre de participants
|
416
449
|
back: Retour à la liste
|
450
|
+
close_meeting: Clore la rencontre
|
417
451
|
contributions: Décompte des contributions
|
418
452
|
date: Date
|
419
453
|
edit_meeting: Modifier la rencontre
|
@@ -460,6 +494,10 @@ fr:
|
|
460
494
|
confirmed_html: Votre inscription pour la rencontre <a href="%{url}">%{title}</a> a été confirmée.
|
461
495
|
details: Vous trouverez les détails de la rencontre dans la pièce jointe.
|
462
496
|
registration_code: Votre code d'inscription est %{code}.
|
497
|
+
registration_type:
|
498
|
+
on_different_platform: Sur une plateforme différente
|
499
|
+
on_this_platform: Sur cette plateforme
|
500
|
+
registration_disabled: Inscription désactivée
|
463
501
|
registrations:
|
464
502
|
create:
|
465
503
|
invalid: Il y a eu un problème lors de votre inscription à cette rencontre.
|
@@ -470,6 +508,10 @@ fr:
|
|
470
508
|
destroy:
|
471
509
|
invalid: Il y a eu un problème lors de l'annulation de votre inscription.
|
472
510
|
success: Vous avez annulé votre inscription avec succès.
|
511
|
+
type_of_meeting:
|
512
|
+
hybrid: Hybride
|
513
|
+
in_person: En présentiel
|
514
|
+
online: En ligne
|
473
515
|
types:
|
474
516
|
private_meeting: Rencontre privée
|
475
517
|
transparent: Visible par les non-membres
|
@@ -480,11 +522,6 @@ fr:
|
|
480
522
|
description: Nombre de rencontres créées
|
481
523
|
object: rencontres
|
482
524
|
title: Rencontres
|
483
|
-
participatory_processes:
|
484
|
-
participatory_process_groups:
|
485
|
-
highlighted_meetings:
|
486
|
-
past_meetings: Rencontres passées
|
487
|
-
upcoming_meetings: Rencontres à venir
|
488
525
|
participatory_spaces:
|
489
526
|
highlighted_meetings:
|
490
527
|
past_meetings: Rencontres passées
|
data/config/locales/gl.yml
CHANGED
@@ -29,9 +29,7 @@ gl:
|
|
29
29
|
title: Título
|
30
30
|
transparent: Transparente
|
31
31
|
minutes:
|
32
|
-
audio_url: URL de audio
|
33
32
|
description: Descrición
|
34
|
-
video_url: URL do vídeo
|
35
33
|
visible: É visible
|
36
34
|
errors:
|
37
35
|
models:
|
@@ -234,8 +232,6 @@ gl:
|
|
234
232
|
success: Reunión eliminada correctamente
|
235
233
|
edit:
|
236
234
|
update: Actualización
|
237
|
-
form:
|
238
|
-
location_hints_help: 'Suxestións de localización: información adicional. Exemplo: o chan do edificio'
|
239
235
|
index:
|
240
236
|
title: Reunións
|
241
237
|
new:
|
@@ -327,7 +323,6 @@ gl:
|
|
327
323
|
space_type: Espazo participativo
|
328
324
|
upcoming: Próximos
|
329
325
|
last_activity:
|
330
|
-
meeting_updated_at_html: "<span>Xuntanza actualizada en %{link}</span>"
|
331
326
|
new_meeting_at_html: "<span>Nova reunión en %{link}</span>"
|
332
327
|
mailer:
|
333
328
|
invite_join_meeting_mailer:
|
@@ -348,8 +343,6 @@ gl:
|
|
348
343
|
filter: Filtro
|
349
344
|
filter_by: Filtrar por
|
350
345
|
unfold: Despregar
|
351
|
-
form:
|
352
|
-
location_hints_help: 'Suxestións de localización: información adicional. Exemplo: o chan do edificio'
|
353
346
|
meeting_minutes:
|
354
347
|
meeting_minutes: Minutos de reunión
|
355
348
|
related_information: Información relacionada
|
@@ -419,11 +412,6 @@ gl:
|
|
419
412
|
description: Número de reunións creadas
|
420
413
|
object: reunións
|
421
414
|
title: Reunións
|
422
|
-
participatory_processes:
|
423
|
-
participatory_process_groups:
|
424
|
-
highlighted_meetings:
|
425
|
-
past_meetings: Reunións pasadas
|
426
|
-
upcoming_meetings: Próximas reunións
|
427
415
|
participatory_spaces:
|
428
416
|
highlighted_meetings:
|
429
417
|
past_meetings: Reunións pasadas
|
data/config/locales/hu.yml
CHANGED
@@ -29,9 +29,7 @@ hu:
|
|
29
29
|
title: Cím
|
30
30
|
transparent: Átlátszó
|
31
31
|
minutes:
|
32
|
-
audio_url: Audio url
|
33
32
|
description: Leírás
|
34
|
-
video_url: Videó URL
|
35
33
|
visible: Látható
|
36
34
|
errors:
|
37
35
|
models:
|
@@ -245,7 +243,6 @@ hu:
|
|
245
243
|
form:
|
246
244
|
address_help: 'Cím: Geocoder használata a helymeghatározáshoz'
|
247
245
|
location_help: 'Helyszín: üzenet az adott felhasználóknak a találkozó helyéről'
|
248
|
-
location_hints_help: 'Helymeghatározási tippek: további információk. Példa: az épület padlója'
|
249
246
|
index:
|
250
247
|
title: Találkozók
|
251
248
|
new:
|
@@ -358,8 +355,6 @@ hu:
|
|
358
355
|
filter: Szűrő
|
359
356
|
filter_by: 'Szűrés ez alapján:'
|
360
357
|
unfold: Kibont
|
361
|
-
form:
|
362
|
-
location_hints_help: 'Helymeghatározási tippek: további információk. Példa: az épület padlója'
|
363
358
|
meeting_minutes:
|
364
359
|
meeting_minutes: Találkozó jegyzőkönyve
|
365
360
|
related_information: Kapcsolódó információ
|
@@ -430,11 +425,6 @@ hu:
|
|
430
425
|
description: A létrehozott találkozók száma
|
431
426
|
object: ülések
|
432
427
|
title: találkozók
|
433
|
-
participatory_processes:
|
434
|
-
participatory_process_groups:
|
435
|
-
highlighted_meetings:
|
436
|
-
past_meetings: Korábbi találkozók
|
437
|
-
upcoming_meetings: Közelgő találkozók
|
438
428
|
participatory_spaces:
|
439
429
|
highlighted_meetings:
|
440
430
|
past_meetings: Korábbi találkozók
|
data/config/locales/id-ID.yml
CHANGED
@@ -29,9 +29,7 @@ id:
|
|
29
29
|
title: Judul
|
30
30
|
transparent: Transparan
|
31
31
|
minutes:
|
32
|
-
audio_url: Url audio
|
33
32
|
description: Deskripsi
|
34
|
-
video_url: Url video
|
35
33
|
visible: Terlihat
|
36
34
|
errors:
|
37
35
|
models:
|
@@ -409,11 +407,6 @@ id:
|
|
409
407
|
description: Jumlah pertemuan yang dibuat
|
410
408
|
object: pertemuan
|
411
409
|
title: Rapat
|
412
|
-
participatory_processes:
|
413
|
-
participatory_process_groups:
|
414
|
-
highlighted_meetings:
|
415
|
-
past_meetings: Pertemuan sebelumnya
|
416
|
-
upcoming_meetings: Pertemuan yang akan datang
|
417
410
|
participatory_spaces:
|
418
411
|
highlighted_meetings:
|
419
412
|
past_meetings: Pertemuan sebelumnya
|
data/config/locales/is-IS.yml
CHANGED
@@ -23,9 +23,7 @@ is-IS:
|
|
23
23
|
title: Titill
|
24
24
|
transparent: Gegnsætt
|
25
25
|
minutes:
|
26
|
-
audio_url: Audio url
|
27
26
|
description: Lýsing
|
28
|
-
video_url: Video url
|
29
27
|
visible: Er sýnilegt
|
30
28
|
decidim:
|
31
29
|
admin:
|
@@ -213,10 +211,6 @@ is-IS:
|
|
213
211
|
types:
|
214
212
|
private_meeting: Einkafundur
|
215
213
|
transparent: Gegnsætt
|
216
|
-
participatory_processes:
|
217
|
-
participatory_process_groups:
|
218
|
-
highlighted_meetings:
|
219
|
-
past_meetings: Fyrri fundi
|
220
214
|
participatory_spaces:
|
221
215
|
highlighted_meetings:
|
222
216
|
past_meetings: Fyrri fundi
|
data/config/locales/it.yml
CHANGED
@@ -31,9 +31,7 @@ it:
|
|
31
31
|
title: Titolo
|
32
32
|
transparent: Trasparente
|
33
33
|
minutes:
|
34
|
-
audio_url: URL audio
|
35
34
|
description: Descrizione
|
36
|
-
video_url: URL del video
|
37
35
|
visible: È visibile
|
38
36
|
errors:
|
39
37
|
models:
|
@@ -251,7 +249,6 @@ it:
|
|
251
249
|
form:
|
252
250
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
253
251
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
254
|
-
location_hints_help: 'Suggerimenti di posizione: informazioni aggiuntive. Esempio: il piano dell''edificio'
|
255
252
|
index:
|
256
253
|
title: Incontri
|
257
254
|
new:
|
@@ -391,7 +388,6 @@ it:
|
|
391
388
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
392
389
|
create_as: Crea riunione come
|
393
390
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
394
|
-
location_hints_help: 'Suggerimenti di posizione: informazioni aggiuntive. Esempio: il piano dell''edificio'
|
395
391
|
select_a_category: Scegli una categoria
|
396
392
|
index:
|
397
393
|
new_meeting: Nuova riunione
|
@@ -477,11 +473,6 @@ it:
|
|
477
473
|
description: Numero di riunioni create
|
478
474
|
object: incontri
|
479
475
|
title: Incontri
|
480
|
-
participatory_processes:
|
481
|
-
participatory_process_groups:
|
482
|
-
highlighted_meetings:
|
483
|
-
past_meetings: Incontri passati
|
484
|
-
upcoming_meetings: Prossimi incontri
|
485
476
|
participatory_spaces:
|
486
477
|
highlighted_meetings:
|
487
478
|
past_meetings: Incontri passati
|
data/config/locales/ja.yml
CHANGED
@@ -31,9 +31,7 @@ ja:
|
|
31
31
|
title: タイトル
|
32
32
|
transparent: 透明度
|
33
33
|
minutes:
|
34
|
-
audio_url: オーディオ URL
|
35
34
|
description: 説明
|
36
|
-
video_url: ビデオ URL
|
37
35
|
visible: 非表示にする
|
38
36
|
errors:
|
39
37
|
models:
|
@@ -248,7 +246,6 @@ ja:
|
|
248
246
|
form:
|
249
247
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
250
248
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
251
|
-
location_hints_help: '位置情報:追加情報。例:建物の床。'
|
252
249
|
index:
|
253
250
|
title: ミーティング
|
254
251
|
new:
|
@@ -386,7 +383,6 @@ ja:
|
|
386
383
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
387
384
|
create_as: 次のユーザとしてミーティングを作成:
|
388
385
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
389
|
-
location_hints_help: '位置情報:追加情報。例:建物の床。'
|
390
386
|
select_a_category: カテゴリを選択してください
|
391
387
|
index:
|
392
388
|
new_meeting: 新しいミーティング
|
@@ -471,11 +467,6 @@ ja:
|
|
471
467
|
description: 作成されたミーティング数
|
472
468
|
object: ミーティング
|
473
469
|
title: ミーティング
|
474
|
-
participatory_processes:
|
475
|
-
participatory_process_groups:
|
476
|
-
highlighted_meetings:
|
477
|
-
past_meetings: 過去のミーティング
|
478
|
-
upcoming_meetings: 今後のミーティング
|
479
470
|
participatory_spaces:
|
480
471
|
highlighted_meetings:
|
481
472
|
past_meetings: 過去のミーティング
|
data/config/locales/lv.yml
CHANGED
@@ -29,9 +29,7 @@ lv:
|
|
29
29
|
title: Nosaukums
|
30
30
|
transparent: Caurskatāms
|
31
31
|
minutes:
|
32
|
-
audio_url: Audio URL
|
33
32
|
description: Apraksts
|
34
|
-
video_url: Video URL
|
35
33
|
visible: Ir redzams
|
36
34
|
errors:
|
37
35
|
models:
|
@@ -240,7 +238,6 @@ lv:
|
|
240
238
|
form:
|
241
239
|
address_help: 'Adresi Geocoder izmanto atrašanās vietas noteikšanai'
|
242
240
|
location_help: 'Atrašanās vieta: ziņojums, kas paredzēts lietotājiem, norādot tikšanās vietu'
|
243
|
-
location_hints_help: 'Norādījumi par atrašanās vietu: papildu informācija. Piemērs: ēkas pirmais stāvs'
|
244
241
|
index:
|
245
242
|
title: Sanāksmes
|
246
243
|
new:
|
@@ -355,8 +352,6 @@ lv:
|
|
355
352
|
filter: Filtrēt
|
356
353
|
filter_by: Filtrēt pēc
|
357
354
|
unfold: Atritināt
|
358
|
-
form:
|
359
|
-
location_hints_help: 'Norādījumi par atrašanās vietu: papildu informācija. Piemērs: ēkas pirmais stāvs'
|
360
355
|
meeting_minutes:
|
361
356
|
meeting_minutes: Sanāksmes protokols
|
362
357
|
related_information: Saistītā informācija
|
@@ -428,11 +423,6 @@ lv:
|
|
428
423
|
description: Izveidoto sanāksmju skaits
|
429
424
|
object: sanāksmes
|
430
425
|
title: Sanāksmes
|
431
|
-
participatory_processes:
|
432
|
-
participatory_process_groups:
|
433
|
-
highlighted_meetings:
|
434
|
-
past_meetings: Iepriekšējās sanāksmes
|
435
|
-
upcoming_meetings: Gaidāmās sanāksmes
|
436
426
|
participatory_spaces:
|
437
427
|
highlighted_meetings:
|
438
428
|
past_meetings: Iepriekšējās sanāksmes
|
data/config/locales/nl.yml
CHANGED
@@ -21,17 +21,20 @@ nl:
|
|
21
21
|
end_time: Eindtijd
|
22
22
|
location: Plaats
|
23
23
|
location_hints: Locatie hints
|
24
|
+
online_meeting_url: De URL van de online vergadering
|
24
25
|
organizer_gid: Aanmaken als
|
25
26
|
organizer_id: Organisator
|
26
27
|
private_meeting: Privé vergadering
|
27
28
|
registration_form_enabled: Inschrijvingsformulier ingeschakeld
|
28
29
|
registration_terms: Registratievoorwaarden
|
30
|
+
registration_url: Registratie URL
|
29
31
|
registrations_enabled: Registraties geactiveerd
|
30
32
|
start_time: Starttijd
|
31
33
|
title: Titel
|
32
34
|
transparent: Transparant
|
35
|
+
type_of_meeting: Type
|
33
36
|
minutes:
|
34
|
-
audio_url: Audio
|
37
|
+
audio_url: Audio URL
|
35
38
|
description: Beschrijving
|
36
39
|
video_url: Video URL
|
37
40
|
visible: Is zichtbaar
|
@@ -90,6 +93,7 @@ nl:
|
|
90
93
|
resources_permissions_enabled: Actiemachtigingen kunnen voor elke vergadering worden ingesteld
|
91
94
|
scope_id: Scope
|
92
95
|
scopes_enabled: Scopes ingeschakeld
|
96
|
+
terms_and_conditions_url_for_meeting_creators: Algemene voorwaarden URL voor de makers van de vergadering
|
93
97
|
step:
|
94
98
|
announcement: Aankondiging
|
95
99
|
comments_blocked: Reacties geblokkeerd
|
@@ -198,6 +202,7 @@ nl:
|
|
198
202
|
invalid: Er is een probleem opgetreden bij het bijwerken van deze agenda
|
199
203
|
success: Agenda succesvol bijgewerkt
|
200
204
|
exports:
|
205
|
+
meeting_comments: Reacties
|
201
206
|
meetings: vergaderingen
|
202
207
|
registrations: registraties
|
203
208
|
invite_join_meeting_mailer:
|
@@ -244,8 +249,14 @@ nl:
|
|
244
249
|
update: Bijwerken
|
245
250
|
form:
|
246
251
|
address_help: 'Adres: gebruikt door Geocoder om de locatie te vinden'
|
252
|
+
available_slots_help: Laat op 0 staan als je onbeperkt aantal tijdsblokken beschikbaar hebt
|
253
|
+
disclaimer: 'Disclaimer: Door gebruik te maken van een extern registratiesysteem, ben je op de hoogte dat de organisatoren van %{organization} niet verantwoordelijk zijn voor de gegevens die door gebruikers aan de externe dienst worden verstrekt.'
|
247
254
|
location_help: 'Locatie: bericht gericht aan de gebruikers die de locatie op een vergadering plaatsen'
|
248
|
-
location_hints_help: 'Locatie
|
255
|
+
location_hints_help: 'Locatie hints: aanvullende informatie. Bijvoorbeeld: de verdieping van het gebouw als het een fysieke vergadering is, of het vergaderwachtwoord als het een online vergadering is met beperkte toegang.'
|
256
|
+
online_meeting_url_help: 'Link: laat deelnemers direct verbinding maken met je vergadering'
|
257
|
+
registration_url_help: 'Link: verleen deelnemers toegang tot de externe dienst die je gebruikt voor registraties'
|
258
|
+
select_a_meeting_type: Selecteer een vergaderingstype
|
259
|
+
select_a_registration_type: Selecteer een registratietype
|
249
260
|
index:
|
250
261
|
title: Events
|
251
262
|
new:
|
@@ -339,7 +350,6 @@ nl:
|
|
339
350
|
space_type: Participatieve ruimte
|
340
351
|
upcoming: Aankomende
|
341
352
|
last_activity:
|
342
|
-
meeting_updated_at_html: "<span>Vergadering bijgewerkt op %{link}</span>"
|
343
353
|
new_meeting_at_html: "<span>Nieuwe vergadering op %{link}</span>"
|
344
354
|
mailer:
|
345
355
|
invite_join_meeting_mailer:
|
@@ -350,6 +360,11 @@ nl:
|
|
350
360
|
subject: Registratie van uw vergadering is bevestigd
|
351
361
|
meeting:
|
352
362
|
not_allowed: U mag deze vergadering niet bekijken
|
363
|
+
meeting_closes:
|
364
|
+
edit:
|
365
|
+
back: Terug
|
366
|
+
close: Vergadering sluiten
|
367
|
+
title: Vergadering sluiten
|
353
368
|
meetings:
|
354
369
|
count:
|
355
370
|
meetings_count:
|
@@ -363,12 +378,15 @@ nl:
|
|
363
378
|
title: Bewerk je vergadering
|
364
379
|
update: Vernieuwen
|
365
380
|
filters:
|
381
|
+
activity: Mijn activiteit
|
382
|
+
all: Alle
|
366
383
|
category: Categorie
|
367
384
|
date: Datum
|
368
385
|
date_values:
|
369
386
|
all: Allemaal
|
370
387
|
past: Verleden
|
371
388
|
upcoming: Aankomende
|
389
|
+
my_meetings: Mijn vergaderingen
|
372
390
|
origin: Oorsprong
|
373
391
|
origin_values:
|
374
392
|
all: Allemaal
|
@@ -377,6 +395,12 @@ nl:
|
|
377
395
|
user_groups: Groepen
|
378
396
|
scope: Bereik
|
379
397
|
search: Zoeken
|
398
|
+
type: Type
|
399
|
+
type_values:
|
400
|
+
all: Alle
|
401
|
+
hybrid: Beide
|
402
|
+
in_person: Fysiek
|
403
|
+
online: Online
|
380
404
|
filters_small_view:
|
381
405
|
close_modal: Sluit modaal
|
382
406
|
filter: Filter
|
@@ -384,10 +408,16 @@ nl:
|
|
384
408
|
unfold: Ontvouwen
|
385
409
|
form:
|
386
410
|
address_help: 'Adres: gebruikt door Geocoder om de locatie te vinden'
|
411
|
+
available_slots_help: Laat op 0 staan als je onbeperkt aantal tijdsblokken beschikbaar hebt
|
387
412
|
create_as: Maak vergadering als
|
413
|
+
disclaimer: 'Disclaimer: Door gebruik te maken van een extern registratiesysteem, ben je op de hoogte dat de organisatoren van %{organization} niet verantwoordelijk zijn voor de gegevens die door gebruikers aan de externe dienst worden verstrekt.'
|
388
414
|
location_help: 'Locatie: bericht gericht naar de gebruikers die de plek om elkaar te ontmoeten impliceren'
|
389
|
-
location_hints_help: 'Locatie
|
415
|
+
location_hints_help: 'Locatie hints: aanvullende informatie. Bijvoorbeeld: de verdieping van het gebouw als het een fysieke vergadering is, of het vergaderwachtwoord als het een online vergadering is met beperkte toegang.'
|
416
|
+
online_meeting_url_help: 'Link: laat deelnemers direct verbinding maken met je vergadering'
|
417
|
+
registration_url_help: 'Link: verleen deelnemers toegang tot de externe dienst die je gebruikt voor registraties'
|
390
418
|
select_a_category: Selecteer een categorie
|
419
|
+
select_a_meeting_type: Selecteer een vergaderingstype
|
420
|
+
select_a_registration_type: Selecteer een registratietype
|
391
421
|
index:
|
392
422
|
new_meeting: Nieuwe vergadering
|
393
423
|
meeting_minutes:
|
@@ -406,6 +436,7 @@ nl:
|
|
406
436
|
show:
|
407
437
|
attendees: Aantal deelnemers
|
408
438
|
back: Terug naar het overzicht
|
439
|
+
close_meeting: Vergadering sluiten
|
409
440
|
contributions: Aantal bijdragen
|
410
441
|
date: 'Datum:'
|
411
442
|
edit_meeting: Bewerk vergadering
|
@@ -452,6 +483,10 @@ nl:
|
|
452
483
|
confirmed_html: Uw registratie voor de vergadering <a href="%{url}">%{title}</a> is bevestigd.
|
453
484
|
details: In de bijlage vindt u de details van de vergadering.
|
454
485
|
registration_code: Uw registratiecode is %{code}.
|
486
|
+
registration_type:
|
487
|
+
on_different_platform: Op een ander platform
|
488
|
+
on_this_platform: Op dit platform
|
489
|
+
registration_disabled: Registratie uitgeschakeld
|
455
490
|
registrations:
|
456
491
|
create:
|
457
492
|
invalid: Er is een probleem opgetreden bij het deelnemen van deze vergadering.
|
@@ -462,6 +497,10 @@ nl:
|
|
462
497
|
destroy:
|
463
498
|
invalid: Er is een probleem opgetreden bij het verlaten van deze vergadering.
|
464
499
|
success: U heeft de vergadering succesvol verlaten.
|
500
|
+
type_of_meeting:
|
501
|
+
hybrid: Beide
|
502
|
+
in_person: Fysiek
|
503
|
+
online: Online
|
465
504
|
types:
|
466
505
|
private_meeting: Privé vergadering
|
467
506
|
transparent: Transparant
|
@@ -472,11 +511,6 @@ nl:
|
|
472
511
|
description: Aantal gemaakte vergaderingen
|
473
512
|
object: vergaderingen
|
474
513
|
title: vergaderingen
|
475
|
-
participatory_processes:
|
476
|
-
participatory_process_groups:
|
477
|
-
highlighted_meetings:
|
478
|
-
past_meetings: Vorige events
|
479
|
-
upcoming_meetings: Aankomende vergaderingen
|
480
514
|
participatory_spaces:
|
481
515
|
highlighted_meetings:
|
482
516
|
past_meetings: Vorige events
|
data/config/locales/no.yml
CHANGED
@@ -21,19 +21,22 @@
|
|
21
21
|
end_time: Sluttid
|
22
22
|
location: Plassering
|
23
23
|
location_hints: Plasseringstips
|
24
|
+
online_meeting_url: Link til nettmøte
|
24
25
|
organizer_gid: Opprett som
|
25
26
|
organizer_id: Planlegger
|
26
27
|
private_meeting: Privat møte
|
27
28
|
registration_form_enabled: Registreringsskjemaet aktivert
|
28
29
|
registration_terms: Registrerings vilkår
|
30
|
+
registration_url: Link til registrering
|
29
31
|
registrations_enabled: Registreringer aktivert
|
30
32
|
start_time: Start-Tid
|
31
33
|
title: Tittel
|
32
34
|
transparent: Privat
|
35
|
+
type_of_meeting: Type møte
|
33
36
|
minutes:
|
34
|
-
audio_url: Audio
|
37
|
+
audio_url: Audio URL
|
35
38
|
description: Beskrivelse
|
36
|
-
video_url: Video
|
39
|
+
video_url: Video URL
|
37
40
|
visible: Er synlig
|
38
41
|
errors:
|
39
42
|
models:
|
@@ -90,6 +93,7 @@
|
|
90
93
|
resources_permissions_enabled: Handlings tillatelser kan settes for hvert møte
|
91
94
|
scope_id: Tema
|
92
95
|
scopes_enabled: Temaer aktivert
|
96
|
+
terms_and_conditions_url_for_meeting_creators: Link til vilkår og betingelser for arrangører
|
93
97
|
step:
|
94
98
|
announcement: Kunngjøring
|
95
99
|
comments_blocked: Kommentarer blokkert
|
@@ -249,7 +253,6 @@
|
|
249
253
|
form:
|
250
254
|
address_help: 'Adresse: brukes av Geocoder for å finne lokasjonen'
|
251
255
|
location_help: 'Plassering: melding rettet til brukerne som antyder stedet å møte på'
|
252
|
-
location_hints_help: 'Plasseringstips: tilleggsinfo. Eksempel: gulvet i bygningen'
|
253
256
|
index:
|
254
257
|
title: Møter
|
255
258
|
new:
|
@@ -352,6 +355,11 @@
|
|
352
355
|
subject: Registrering av møtet ditt er bekreftet
|
353
356
|
meeting:
|
354
357
|
not_allowed: Du er ikke tillatt å se dette møtet
|
358
|
+
meeting_closes:
|
359
|
+
edit:
|
360
|
+
back: Tilbake
|
361
|
+
close: Avslutt møte
|
362
|
+
title: Avslutt møte
|
355
363
|
meetings:
|
356
364
|
count:
|
357
365
|
meetings_count:
|
@@ -377,8 +385,6 @@
|
|
377
385
|
filter: Filter
|
378
386
|
filter_by: Filtrer etter
|
379
387
|
unfold: Åpne
|
380
|
-
form:
|
381
|
-
location_hints_help: 'Plasseringstips: tilleggsinfo. Eksempel: gulvet i bygningen'
|
382
388
|
meeting_minutes:
|
383
389
|
meeting_minutes: Møte referater
|
384
390
|
related_information: Relatert Informasjon
|
@@ -452,11 +458,6 @@
|
|
452
458
|
description: Antall møter opprettet
|
453
459
|
object: møter
|
454
460
|
title: Møter
|
455
|
-
participatory_processes:
|
456
|
-
participatory_process_groups:
|
457
|
-
highlighted_meetings:
|
458
|
-
past_meetings: Tidligere møter
|
459
|
-
upcoming_meetings: Kommende møter
|
460
461
|
participatory_spaces:
|
461
462
|
highlighted_meetings:
|
462
463
|
past_meetings: Tidligere møter
|