decidim-meetings 0.30.2 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +7 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +4 -5
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +25 -28
- data/app/cells/decidim/meetings/join_meeting_button/waitlist_button.erb +22 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +28 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -7
- data/app/cells/decidim/meetings/question_responses_cell.rb +28 -28
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +5 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +7 -3
- data/app/commands/decidim/meetings/admin/mark_as_attendee.rb +44 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +15 -6
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +4 -4
- data/app/commands/decidim/meetings/admin/update_registrations.rb +19 -7
- data/app/commands/decidim/meetings/create_meeting.rb +2 -3
- data/app/commands/decidim/meetings/{create_answer.rb → create_response.rb} +11 -11
- data/app/commands/decidim/meetings/join_meeting.rb +4 -6
- data/app/commands/decidim/meetings/join_waitlist.rb +53 -0
- data/app/commands/decidim/meetings/leave_meeting.rb +14 -5
- data/app/commands/decidim/meetings/update_meeting.rb +1 -2
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +1 -1
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +4 -4
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +10 -10
- data/app/controllers/decidim/meetings/admin/registrations_attendees_controller.rb +79 -0
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +1 -22
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +11 -11
- data/app/controllers/decidim/meetings/polls/{answers_controller.rb → responses_controller.rb} +7 -7
- data/app/controllers/decidim/meetings/registrations_controller.rb +39 -12
- data/app/events/decidim/meetings/registration_marked_as_attendee_event.rb +9 -0
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +41 -0
- data/app/events/decidim/meetings/update_meeting_event.rb +25 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +4 -0
- data/app/forms/decidim/meetings/admin/meeting_form.rb +28 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
- data/app/forms/decidim/meetings/base_meeting_form.rb +0 -2
- data/app/forms/decidim/meetings/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/join_meeting_form.rb +0 -1
- data/app/forms/decidim/meetings/meeting_form.rb +3 -2
- data/app/forms/decidim/meetings/response_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/{answer_form.rb → response_form.rb} +7 -7
- data/app/helpers/decidim/meetings/application_helper.rb +0 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +14 -5
- data/app/jobs/decidim/meetings/promote_from_waitlist_job.rb +63 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
- data/app/mailers/decidim/meetings/registration_mailer.rb +13 -0
- data/app/models/decidim/meetings/agenda_item.rb +5 -0
- data/app/models/decidim/meetings/meeting.rb +15 -12
- data/app/models/decidim/meetings/question.rb +12 -12
- data/app/models/decidim/meetings/questionnaire.rb +1 -1
- data/app/models/decidim/meetings/registration.rb +19 -7
- data/app/models/decidim/meetings/{answer.rb → response.rb} +6 -6
- data/app/models/decidim/meetings/response_choice.rb +15 -0
- data/app/models/decidim/meetings/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/src/decidim/meetings/admin/destroy_meeting_alert.js +1 -1
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +1 -8
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_invite_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_polls.js +1 -1
- data/app/packs/src/decidim/meetings/poll.component.js +5 -5
- data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -1
- data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -4
- data/app/permissions/decidim/meetings/admin/agenda_permissions.rb +34 -0
- data/app/permissions/decidim/meetings/admin/meeting_permissions.rb +44 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +5 -66
- data/app/permissions/decidim/meetings/admin/questionnaire_permissions.rb +30 -0
- data/app/permissions/decidim/meetings/meeting_permissions.rb +90 -0
- data/app/permissions/decidim/meetings/permissions.rb +9 -105
- data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/agenda_item_presenter.rb +29 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +11 -15
- data/app/presenters/decidim/meetings/registration_presenter.rb +24 -0
- data/app/queries/decidim/meetings/{questionnaire_user_answers.rb → questionnaire_user_responses.rb} +5 -5
- data/app/serializers/decidim/meetings/registration_serializer.rb +5 -6
- data/app/services/decidim/meetings/diff_renderer.rb +0 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -0
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -2
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +11 -8
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
- data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +19 -0
- data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +7 -5
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +2 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +6 -6
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +13 -13
- data/app/views/decidim/meetings/admin/poll/_response_option.html.erb +35 -0
- data/app/views/decidim/meetings/admin/poll/_response_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +3 -3
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +5 -5
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +19 -39
- data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +126 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_form.html.erb +2 -11
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +11 -10
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_registration_code_modal.html.erb +16 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +5 -5
- data/app/views/decidim/meetings/polls/responses/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/responses/_single_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/{answers → responses}/admin.html.erb +4 -4
- data/app/views/decidim/meetings/polls/{answers → responses}/index.html.erb +4 -4
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +6 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +1 -26
- data/config/locales/bg.yml +2 -32
- data/config/locales/ca-IT.yml +86 -40
- data/config/locales/ca.yml +86 -40
- data/config/locales/cs.yml +71 -43
- data/config/locales/de.yml +87 -41
- data/config/locales/el.yml +1 -25
- data/config/locales/en.yml +89 -43
- data/config/locales/es-MX.yml +87 -41
- data/config/locales/es-PY.yml +87 -41
- data/config/locales/es.yml +87 -41
- data/config/locales/eu.yml +86 -40
- data/config/locales/fi-plain.yml +86 -40
- data/config/locales/fi.yml +85 -39
- data/config/locales/fr-CA.yml +79 -38
- data/config/locales/fr.yml +79 -38
- data/config/locales/ga-IE.yml +1 -7
- data/config/locales/gl.yml +1 -19
- data/config/locales/hu.yml +1 -22
- data/config/locales/id-ID.yml +0 -16
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +1 -29
- data/config/locales/ja.yml +88 -42
- data/config/locales/lb.yml +1 -15
- data/config/locales/lt.yml +1 -28
- data/config/locales/lv.yml +0 -16
- data/config/locales/nl.yml +1 -26
- data/config/locales/no.yml +1 -28
- data/config/locales/pl.yml +2 -32
- data/config/locales/pt-BR.yml +1 -28
- data/config/locales/pt.yml +1 -28
- data/config/locales/ro-RO.yml +56 -29
- data/config/locales/ru.yml +0 -16
- data/config/locales/sk.yml +0 -16
- data/config/locales/sl.yml +0 -4
- data/config/locales/sv.yml +85 -39
- data/config/locales/tr-TR.yml +0 -20
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +0 -19
- data/config/locales/zh-TW.yml +1 -26
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +8 -2
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +8 -2
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20250317103343_rename_answer_to_response_in_decidim_meetings.rb +18 -0
- data/db/migrate/20250403094034_add_reminder_customization_to_decidim_meetings.rb +9 -0
- data/db/migrate/20250408071941_add_status_to_registrations_to_decidim_meetings_registrations.rb +8 -0
- data/lib/decidim/api/agenda_item_type.rb +6 -2
- data/lib/decidim/api/agenda_type.rb +6 -2
- data/lib/decidim/api/linked_resources_interface.rb +1 -1
- data/lib/decidim/api/meeting_type.rb +20 -10
- data/lib/decidim/api/service_type.rb +3 -0
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +29 -8
- data/lib/decidim/meetings/engine.rb +6 -21
- data/lib/decidim/meetings/meeting_serializer.rb +1 -2
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +0 -10
- data/lib/decidim/meetings/seeds.rb +4 -13
- data/lib/decidim/meetings/test/factories.rb +10 -16
- data/lib/decidim/meetings/user_responses_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +7 -9
- metadata +49 -35
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +0 -32
- data/app/forms/decidim/meetings/answer_choice_form.rb +0 -14
- data/app/models/decidim/meetings/answer_choice.rb +0 -15
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +0 -31
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +0 -48
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +0 -35
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +0 -13
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +0 -13
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +0 -39
- data/lib/decidim/meetings/user_answers_serializer.rb +0 -47
- /data/app/views/decidim/meetings/polls/{answers → responses}/create.js.erb +0 -0
data/config/locales/it.yml
CHANGED
@@ -17,7 +17,6 @@ it:
|
|
17
17
|
customize_registration_email: Pagina di registrazione personalizzata
|
18
18
|
decidim_category_id: Categoria
|
19
19
|
decidim_scope_id: Visibilità
|
20
|
-
decidim_user_group_id: Gruppo di utenti
|
21
20
|
description: Descrizione
|
22
21
|
id: ID
|
23
22
|
location: Luogo
|
@@ -66,9 +65,6 @@ it:
|
|
66
65
|
values:
|
67
66
|
'false': Conclusi
|
68
67
|
'true': Prossimi
|
69
|
-
with_any_origin:
|
70
|
-
values:
|
71
|
-
user_group: Gruppi di utenti
|
72
68
|
with_any_type:
|
73
69
|
label: Tipologia di incontro
|
74
70
|
values:
|
@@ -95,14 +91,12 @@ it:
|
|
95
91
|
default_registration_terms: Termini di registrazione predefiniti
|
96
92
|
enable_pads_creation: Abilita la creazione di pad
|
97
93
|
maps_enabled: Mappe abilitate
|
98
|
-
registration_code_enabled: Codice di registrazione abilitato
|
99
94
|
resources_permissions_enabled: Le autorizzazioni delle azioni possono essere impostate per ogni riunione
|
100
95
|
terms_and_conditions_url_for_meeting_creators: Termini e condizioni URL per i creatori di riunione
|
101
96
|
step:
|
102
97
|
announcement: Annuncio
|
103
98
|
comments_blocked: Commenti bloccati
|
104
99
|
creation_enabled_for_participants: Creazione delle riunioni da parte dei partecipanti abilitata
|
105
|
-
creation_enabled_for_user_groups: Creazione delle riunioni da parte dei partecipanti abilitata
|
106
100
|
events:
|
107
101
|
meetings:
|
108
102
|
meeting_closed:
|
@@ -130,10 +124,8 @@ it:
|
|
130
124
|
email_subject: Gli spazi occupati della riunione "%{resource_title}" sono superiori a %{percentage}%
|
131
125
|
notification_title: Gli spazi occupati della riunione <a href="%{resource_path}">%{resource_title}</a> sono oltre %{percentage}%.
|
132
126
|
meeting_updated:
|
133
|
-
email_intro: 'La riunione "%{resource_title}" è stata aggiornata. Puoi leggere la nuova versione dalla sua pagina:'
|
134
127
|
email_outro: Hai ricevuto questa notifica perché stai seguendo la riunione "%{resource_title}". Puoi smettere di seguirlo dal link precedente.
|
135
128
|
email_subject: La riunione "%{resource_title}" è stata aggiornata
|
136
|
-
notification_title: La riunione <a href="%{resource_path}">%{resource_title}</a> è stata aggiornata.
|
137
129
|
registration_code_validated:
|
138
130
|
email_intro: Il tuo codice di registrazione "%{registration_code}" per la riunione "%{resource_title}" è stato convalidato.
|
139
131
|
email_outro: Hai ricevuto questa notifica perché il codice di registrazione per la riunione "%{resource_title}" è stato convalidato.
|
@@ -144,11 +136,6 @@ it:
|
|
144
136
|
email_outro: Hai ricevuto questa notifica perché stai seguendo la riunione "%{resource_title}". Puoi smettere di seguirlo dal link precedente.
|
145
137
|
email_subject: La riunione "%{resource_title}" ha abilitato le registrazioni.
|
146
138
|
notification_title: La riunione <a href="%{resource_path}">%{resource_title}</a> ha abilitato le registrazioni.
|
147
|
-
upcoming_meeting:
|
148
|
-
email_intro: La riunione "%{resource_title}" inizierà tra meno di 48 ore.
|
149
|
-
email_outro: Hai ricevuto questa notifica perché stai seguendo la riunione "%{resource_title}". Puoi smettere di seguirlo dal link precedente.
|
150
|
-
email_subject: La riunione "%{resource_title}" inizierà tra meno di 48 ore.
|
151
|
-
notification_title: La riunione <a href="%{resource_path}">%{resource_title}</a> inizierà tra meno di 48 ore.
|
152
139
|
gamification:
|
153
140
|
badges:
|
154
141
|
attended_meetings:
|
@@ -162,8 +149,6 @@ it:
|
|
162
149
|
meetings:
|
163
150
|
actions:
|
164
151
|
agenda: ordine del giorno
|
165
|
-
attachment_collections: Cartelle
|
166
|
-
attachments: Allegati
|
167
152
|
close: Chiuso
|
168
153
|
edit: Modifica
|
169
154
|
invalid_destroy:
|
@@ -200,7 +185,6 @@ it:
|
|
200
185
|
create: Creare
|
201
186
|
title: Nuova agenda
|
202
187
|
exports:
|
203
|
-
answers: Risposte
|
204
188
|
meeting_comments: Commenti
|
205
189
|
meetings: Incontri
|
206
190
|
registrations: Iscrizioni
|
@@ -265,6 +249,7 @@ it:
|
|
265
249
|
form:
|
266
250
|
available_slots_help: Lasciare a 0 se disponi di slot illimitati.
|
267
251
|
invites: Inviti
|
252
|
+
manage_questions: Domande
|
268
253
|
recommendation_message: Per motivi di privacy, ti consigliamo di eliminare questo modulo di iscrizione quando non ne hai più bisogno. Per impostazione predefinita, questo avverrà 3 mesi dopo la fine della riunione.
|
269
254
|
registration_email_help: Questo testo apparirà nel mezzo dell'email di conferma della registrazione. Subito dopo il codice di registrazione.
|
270
255
|
registration_form: Formulario di registrazione
|
@@ -347,7 +332,6 @@ it:
|
|
347
332
|
all: Tutte
|
348
333
|
official: Ufficiale
|
349
334
|
participants: Utenti
|
350
|
-
user_group: Gruppi
|
351
335
|
search: Cerca
|
352
336
|
type: Tipo
|
353
337
|
type_values:
|
@@ -357,7 +341,6 @@ it:
|
|
357
341
|
form:
|
358
342
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
359
343
|
available_slots_help: Lasciare a 0 se disponi di slot illimitati
|
360
|
-
create_as: Crea riunione come
|
361
344
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
362
345
|
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.'
|
363
346
|
online_meeting_url_help: 'Link: permette ai partecipanti di connettersi direttamente alla tua riunione'
|
@@ -387,7 +370,6 @@ it:
|
|
387
370
|
micro_camera_permissions_warning: Quando fai clic sul pulsante qui sotto, ti verrà chiesto il permesso del microfono e/o della fotocamera, per unirti alla videoconferenza
|
388
371
|
no_slots_available: Nessuna slot disponibile
|
389
372
|
organizations: Organizzazioni partecipanti.
|
390
|
-
registration_code_help_text: Il tuo codice di registrazione
|
391
373
|
registration_state:
|
392
374
|
validated: CONVALIDATA
|
393
375
|
validation_pending: IN ATTESA DELLA CONVALIDA
|
@@ -419,12 +401,8 @@ it:
|
|
419
401
|
title: Titolo
|
420
402
|
polls:
|
421
403
|
questions:
|
422
|
-
index:
|
423
|
-
empty_questions: Durante questa riunione, alcune domande saranno inviate e sarete in grado di rispondere. Verranno visualizzate qui.
|
424
404
|
index_admin:
|
425
405
|
question: Domanda
|
426
|
-
received_answer: risposta ricevuta
|
427
|
-
received_answers: risposte ricevute
|
428
406
|
results: Risultati
|
429
407
|
send: Invia
|
430
408
|
sent: Inviato
|
@@ -443,7 +421,6 @@ it:
|
|
443
421
|
confirmation:
|
444
422
|
confirmed_html: La registrazione per il <a href="%{url}">%{title}</a> di riunione è stata confermata.
|
445
423
|
details: Puoi trovare i dettagli della riunione in allegato.
|
446
|
-
registration_code: Il tuo codice di registrazione è %{code}.
|
447
424
|
registration_type:
|
448
425
|
on_different_platform: Su una piattaforma diversa
|
449
426
|
on_this_platform: Usa questa piattaforma
|
@@ -463,11 +440,6 @@ it:
|
|
463
440
|
types:
|
464
441
|
private_meeting: Incontro privato
|
465
442
|
transparent: Trasparente
|
466
|
-
metrics:
|
467
|
-
meetings:
|
468
|
-
description: Numero di riunioni create
|
469
|
-
object: incontri
|
470
|
-
title: Incontri
|
471
443
|
participatory_spaces:
|
472
444
|
highlighted_meetings:
|
473
445
|
past_meetings: Incontri passati
|
data/config/locales/ja.yml
CHANGED
@@ -2,8 +2,6 @@
|
|
2
2
|
ja:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
-
answer:
|
6
|
-
add_documents: ドキュメントを追加
|
7
5
|
close_meeting:
|
8
6
|
attendees_count: 出席者数
|
9
7
|
attending_organizations: 参加した組織一覧
|
@@ -19,7 +17,6 @@ ja:
|
|
19
17
|
customize_registration_email: 登録メールのカスタマイズ
|
20
18
|
decidim_category_id: カテゴリ
|
21
19
|
decidim_scope_id: スコープ
|
22
|
-
decidim_user_group_id: ユーザーグループ
|
23
20
|
description: 説明
|
24
21
|
end_time: 終了時間
|
25
22
|
id: ID
|
@@ -53,6 +50,8 @@ ja:
|
|
53
50
|
meeting_registration_invite:
|
54
51
|
email: Eメールアドレス
|
55
52
|
name: 名前
|
53
|
+
response:
|
54
|
+
add_documents: ドキュメントを追加
|
56
55
|
validate_registration_code:
|
57
56
|
code: コード
|
58
57
|
errors:
|
@@ -120,7 +119,6 @@ ja:
|
|
120
119
|
values:
|
121
120
|
official: 公式
|
122
121
|
participants: 参加者
|
123
|
-
user_group: ユーザーグループ
|
124
122
|
with_any_type:
|
125
123
|
label: ミーティングの種類
|
126
124
|
values:
|
@@ -146,6 +144,16 @@ ja:
|
|
146
144
|
new:
|
147
145
|
copy: コピー
|
148
146
|
title: ミーティングを複製
|
147
|
+
tooltips:
|
148
|
+
cannot_close_meetings: 参加者によって作成されたため、このミーティングを閉じることはできません
|
149
|
+
cannot_duplicate_meetings: 参加者によって作成されたため、このミーティングは複製できません
|
150
|
+
cannot_edit_meetings: 参加者によって作成されたため、このミーティングは編集できません
|
151
|
+
cannot_manage_agenda_meetings: 参加者によって作成されたため、このミーティングの議題を管理できません
|
152
|
+
cannot_manage_attachments_meetings: 参加者によって作成されたため、このミーティングの添付ファイルは管理できません
|
153
|
+
cannot_manage_poll_meetings: 参加者によって作成されたため、このミーティングの投票は管理できません
|
154
|
+
cannot_manage_registrations_meetings: 参加者によって作成されたため、この会議への登録を管理できません。登録が無効になっているか、外部での登録になっています
|
155
|
+
cannot_mark_attendee: 既にマークされていたため、出席者としてマークできません
|
156
|
+
deleted_meetings_info: 参加者によって作成されたため、このミーティングを削除することはできません。
|
149
157
|
components:
|
150
158
|
meetings:
|
151
159
|
actions:
|
@@ -165,7 +173,7 @@ ja:
|
|
165
173
|
enable_pads_creation: パッドの作成を有効にする
|
166
174
|
maps_enabled: 地図が有効
|
167
175
|
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
168
|
-
registration_code_enabled:
|
176
|
+
registration_code_enabled: 登録コードとQRコードを有効化
|
169
177
|
resources_permissions_enabled: アクションの権限はミーティングごとに設定できます
|
170
178
|
taxonomy_filters: コンポーネントのフィルタを選択
|
171
179
|
taxonomy_filters_add: フィルターを追加
|
@@ -174,7 +182,6 @@ ja:
|
|
174
182
|
announcement: お知らせ
|
175
183
|
comments_blocked: コメントをブロック
|
176
184
|
creation_enabled_for_participants: 参加者によるミーティングの作成が有効です
|
177
|
-
creation_enabled_for_user_groups: ユーザーグループによるミーティングの作成が有効です
|
178
185
|
download_your_data:
|
179
186
|
help:
|
180
187
|
invites:
|
@@ -224,25 +231,38 @@ ja:
|
|
224
231
|
email_subject: '「%{resource_title}」ミーティングに割り当てられたスロットは %{percentage} %を超えています'
|
225
232
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングに割り当てられたスロットは %{percentage}%を超えています。
|
226
233
|
meeting_updated:
|
227
|
-
email_intro: '"%{resource_title}"
|
234
|
+
email_intro: '"%{resource_title}" ミーティングは %{changed_fields}への変更により更新されました.このページから新しいバージョンを読むことができます:'
|
228
235
|
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
229
236
|
email_subject: '"%{resource_title}" のミーティングが更新されました'
|
230
|
-
|
237
|
+
field_names:
|
238
|
+
address: アドレス
|
239
|
+
end_time: 終了時刻
|
240
|
+
location: 場所
|
241
|
+
start_time: 開始時刻
|
242
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングは、 %{changed_fields} への変更により更新されました。
|
243
|
+
meeting_waitlist_added:
|
244
|
+
notification_title: <a href="%{resource_url}">%{resource_title}</a> ミーティングの順番待ちリストに追加されました。
|
231
245
|
registration_code_validated:
|
232
246
|
email_intro: '「%{registration_code}」ミーティングの登録コード「%{resource_title}」が確認されました。'
|
233
247
|
email_outro: '"%{resource_title}" ミーティングの登録コードが検証されたため、この通知を受け取りました。'
|
234
248
|
email_subject: あなたの "%{registration_code}" ミーティングの登録コード "%{resource_title}" が検証されました
|
235
249
|
notification_title: ミーティング <a href="%{resource_path}">%{resource_title} </a> に対するあなたの登録コード "%{registration_code}" が認証されました。
|
250
|
+
registration_marked_as_attendee:
|
251
|
+
email_intro: '「%{resource_title}」ミーティングへの登録が出席者としてマークされました。'
|
252
|
+
email_outro: '「%{resource_title}」ミーティングへの登録が出席者としてマークされたため、この通知を受け取りました。'
|
253
|
+
email_subject: '「%{resource_title}」ミーティングへの登録が出席者としてマークされました'
|
254
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングへの登録が出席者としてマークされました。
|
236
255
|
registrations_enabled:
|
237
256
|
email_intro: '"%{resource_title}" ミーティングは登録を有効にしました.あなた自身をそのページに登録することができます:'
|
238
257
|
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
239
258
|
email_subject: '"%{resource_title}" ミーティングは登録を有効にしました.'
|
240
259
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> のミーティングは登録を有効にしました。
|
241
260
|
upcoming_meeting:
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
261
|
+
default_body: '"{{meeting_title}}"ミーティングは、あと{{before_hours}}時間以内に開始されます。'
|
262
|
+
email_intro: '"%{resource_title}" ミーティングは、あと%{reminders_before_hours}時間以内に開始されます。'
|
263
|
+
email_outro: '"%{resource_title}"ミーティングをフォローしているため、この通知を受け取りました。フォローを解除するには、前のリンクから行ってください。'
|
264
|
+
email_subject: '"%{resource_title}"ミーティングは、%{reminders_before_hours}時間以内に開始されます。'
|
265
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングは、%{reminders_before_hours}時間以内に開始されます。
|
246
266
|
forms:
|
247
267
|
meetings:
|
248
268
|
attendees_count_help_text: 対面、オンライン、ハイブリッドのどの形態でも、ミーティングの参加者の総数を含めることを忘れないでください。
|
@@ -261,8 +281,6 @@ ja:
|
|
261
281
|
meetings:
|
262
282
|
actions:
|
263
283
|
agenda: 予定
|
264
|
-
attachment_collections: フォルダ
|
265
|
-
attachments: 添付ファイル
|
266
284
|
close: 閉じる
|
267
285
|
confirm_delete_meeting: このミーティングを削除してもよろしいですか?
|
268
286
|
deleted_meetings_info: 削除されたミーティングはゴミ箱から復元できます。
|
@@ -271,6 +289,7 @@ ja:
|
|
271
289
|
proposals_count:
|
272
290
|
other: '%{count} 件の提案が関連付けられているため、ミーティングを削除できません:'
|
273
291
|
manage_poll: アンケートの管理
|
292
|
+
mark_as_attendee: 出席者としてマーク
|
274
293
|
new_meeting: 新しいミーティング
|
275
294
|
preview: プレビュー
|
276
295
|
registrations: 登録
|
@@ -308,10 +327,10 @@ ja:
|
|
308
327
|
invalid: アジェンダの更新に問題がありました。
|
309
328
|
success: アジェンダが正常に更新されました。
|
310
329
|
exports:
|
311
|
-
answers: 回答
|
312
330
|
meeting_comments: コメント
|
313
331
|
meetings: ミーティング
|
314
332
|
registrations: 登録
|
333
|
+
responses: 応答
|
315
334
|
invite_join_meeting_mailer:
|
316
335
|
invite:
|
317
336
|
decline: 招待を拒否
|
@@ -380,6 +399,13 @@ ja:
|
|
380
399
|
publish:
|
381
400
|
invalid: このミーティングを公開する際に問題が発生しました。
|
382
401
|
success: ミーティングを公開しました。
|
402
|
+
reminders:
|
403
|
+
reminder_enabled: このミーティングのリマインダーを送信する
|
404
|
+
reminder_message: リマインダーのメール内容
|
405
|
+
reminder_message_help_text: 必要に応じてメッセージをカスタマイズしてください。ミーティング名を表示するには {{meeting_title}} を使用します。
|
406
|
+
send_reminder: 予約されたリマインダーメール
|
407
|
+
send_reminder_help_text: 会議の何時間前にリマインダーを送信するかを指定します。
|
408
|
+
title: リマインダー
|
383
409
|
service:
|
384
410
|
description: 説明
|
385
411
|
down: 下
|
@@ -405,22 +431,21 @@ ja:
|
|
405
431
|
poll:
|
406
432
|
form:
|
407
433
|
announcement_html:
|
408
|
-
-
|
434
|
+
- 質問が回答を受信または公開/閉鎖した場合は、編集できなくなります。
|
409
435
|
- 質問はいつでも追加できます。
|
410
436
|
- 作成されたすべての質問の結果が公開されると、投票は終了します。
|
411
437
|
- 質問を送信し、結果を公開するには、 <a href='%{admin_link}'>投票管理ページ</a> にアクセスしてください。
|
412
438
|
registrations:
|
413
439
|
edit:
|
414
440
|
save: 保存
|
415
|
-
validate: 検証
|
416
|
-
validate_registration_code: 登録コードを検証する
|
417
441
|
form:
|
418
442
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
419
443
|
invites: 招待
|
420
|
-
manage_questions:
|
444
|
+
manage_questions: 質問
|
421
445
|
recommendation_message: プライバシー上の理由から、不要になったときにこの碑文フォームを削除することをお勧めします。 デフォルトでは、ミーティングが終了してから3ヶ月です。
|
422
446
|
registration_email_help: このテキストは登録確認メールの途中に表示されます。場所は登録コードの直後になります。
|
423
447
|
registration_form: 登録フォーム
|
448
|
+
registrations: 登録を表示
|
424
449
|
registrations_count:
|
425
450
|
other: '%{count} 件の登録がありました。'
|
426
451
|
reserved_slots_help: 予約スロットがない場合は0にしておいてください。
|
@@ -429,6 +454,14 @@ ja:
|
|
429
454
|
update:
|
430
455
|
invalid: 登録設定の保存中に問題が発生しました。
|
431
456
|
success: ミーティングの登録設定を保存しました。
|
457
|
+
registrations_attendees:
|
458
|
+
index:
|
459
|
+
title: 登録
|
460
|
+
validate: 検証
|
461
|
+
validate_registration_code: 登録コードを検証する
|
462
|
+
mark_attendee:
|
463
|
+
invalid: 登録は既に出席済みになっています。
|
464
|
+
success: 登録が出席者になりました。
|
432
465
|
validate_registration_code:
|
433
466
|
invalid: この登録コードは無効です。
|
434
467
|
success: 登録コードを検証しました。
|
@@ -541,7 +574,6 @@ ja:
|
|
541
574
|
all: すべて
|
542
575
|
official: 事務局
|
543
576
|
participants: 参加者
|
544
|
-
user_group: グループ
|
545
577
|
search: 検索
|
546
578
|
type: 種別
|
547
579
|
type_values:
|
@@ -552,7 +584,6 @@ ja:
|
|
552
584
|
form:
|
553
585
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
554
586
|
available_slots_help: 無制限の場合は0のままにしてください
|
555
|
-
create_as: 次のユーザとしてミーティングを作成:
|
556
587
|
disclaimer: '免責事項: 外部の登録システムを使用する場合、ユーザーが外部サービスに提供したデータについて%{organization} の主催者が責任を負わないことをあらかじめご了承ください。'
|
557
588
|
iframe_embed_type_html: 'ミーティングまたは配信イベントに埋め込めるサービスは以下のドメインに限定されています: %{domains}'
|
558
589
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
@@ -589,8 +620,11 @@ ja:
|
|
589
620
|
attendees: 出席者数
|
590
621
|
contributions: コントリビューション数
|
591
622
|
join: ミーティングに参加
|
623
|
+
join_waitlist: 順番待ちリストに参加
|
592
624
|
leave: 登録をキャンセルする
|
593
625
|
leave_confirmation: このミーティングの登録をキャンセルしてもよろしいですか?
|
626
|
+
leave_waitlist: 順番待ちリストから抜ける
|
627
|
+
leave_waitlist_confirmation: このミーティングの順番待ちリストから退出しますか?
|
594
628
|
link_available_soon: 間もなくリンクが利用可能です
|
595
629
|
link_closed: ミーティングに参加するリンクは開始数分前に利用可能になります
|
596
630
|
live_event: このミーティングは現在開催中です
|
@@ -598,14 +632,20 @@ ja:
|
|
598
632
|
micro_camera_permissions_warning: 下のボタンをクリックすると、マイクおよび/またはカメラの権限を求められ、ビデオ会議に参加できます
|
599
633
|
no_slots_available: 利用可能なスロットがありません
|
600
634
|
organizations: 組織に参加
|
635
|
+
pending_address: 場所はまもなく発表されます。
|
601
636
|
redirect_notice: このミーティングは別のスペースの一部であるため、あなたは %{current_space_name} に移動されました。<br> ご希望の場合は、 <a href="%{previous_space_url}">%{previous_space_name}</a> に戻ることができます。
|
602
|
-
|
637
|
+
registration_and_qr_code: 登録コードとQR コード
|
638
|
+
registration_code: '登録コード: %{code}'
|
639
|
+
registration_code_help_text: 登録コードとQR コード
|
603
640
|
registration_state:
|
604
641
|
validated: 有効化
|
605
642
|
validation_pending: 保留中
|
606
643
|
remaining_slots:
|
607
644
|
other: "残り%{count} スロット"
|
608
645
|
visit_finished: 過去のミーティングを表示
|
646
|
+
waitlist:
|
647
|
+
description: 空きが出た場合は、自動的に登録を処理し、メールでお知らせします。
|
648
|
+
status: 順番待ちリストにいます
|
609
649
|
withdraw_btn_hint: 気が変わった場合はミーティングを取り消せます.ミーティングは削除されません.取り消されたミーティングのリストに表示されます.
|
610
650
|
withdraw_confirmation_html: このミーティングを取り消してもよろしいですか?<br><br><strong>この操作はキャンセルできません!</strong>
|
611
651
|
withdraw_meeting: 撤回する
|
@@ -633,15 +673,16 @@ ja:
|
|
633
673
|
start_time: 開始日
|
634
674
|
taxonomies: タクソノミー
|
635
675
|
title: タイトル
|
676
|
+
registration:
|
677
|
+
actions: アクション
|
678
|
+
fields:
|
679
|
+
email: メールアドレス
|
680
|
+
name: 名前
|
681
|
+
status: ステータス
|
682
|
+
status:
|
683
|
+
attended: 出席済み
|
684
|
+
not_attended: 不参加
|
636
685
|
polls:
|
637
|
-
answers:
|
638
|
-
index:
|
639
|
-
administrate: 管理
|
640
|
-
title: 投票
|
641
|
-
index_admin:
|
642
|
-
back_to_meeting: ミーティングに戻る
|
643
|
-
title: 投票を管理
|
644
|
-
view_poll: 投票を表示
|
645
686
|
questions:
|
646
687
|
closed_question:
|
647
688
|
announcement: この質問への回答はクローズされました。
|
@@ -652,8 +693,8 @@ ja:
|
|
652
693
|
index_admin:
|
653
694
|
edit: 管理画面で編集
|
654
695
|
question: 質問
|
655
|
-
|
656
|
-
|
696
|
+
received_response: 受信した回答
|
697
|
+
received_responses: 受信した回答
|
657
698
|
results: 結果
|
658
699
|
send: 送信
|
659
700
|
sent: 送信済み
|
@@ -666,8 +707,15 @@ ja:
|
|
666
707
|
question: 質問
|
667
708
|
question_replied: 質問に回答しました
|
668
709
|
reply_question: 質問に返信する
|
710
|
+
responses:
|
711
|
+
index:
|
712
|
+
administrate: 管理
|
713
|
+
title: 投票
|
714
|
+
index_admin:
|
715
|
+
back_to_meeting: ミーティングに戻る
|
716
|
+
title: 投票を管理
|
717
|
+
view_poll: 投票を表示
|
669
718
|
public_participants_list:
|
670
|
-
attending_organizations: 組織
|
671
719
|
attending_participants: 参加する
|
672
720
|
hidden_participants_count:
|
673
721
|
other: 他 %{count} 人
|
@@ -676,7 +724,7 @@ ja:
|
|
676
724
|
confirmation:
|
677
725
|
confirmed_html: ミーティング <a href="%{url}">%{title}</a> の登録が確認されました。
|
678
726
|
details: ミーティングの詳細は添付ファイルにあります。
|
679
|
-
registration_code:
|
727
|
+
registration_code: あなたの登録コードは %{code} です。出席を確認するために、以下のQRコードを管理者に提示してください。
|
680
728
|
registration_type:
|
681
729
|
on_different_platform: 異なるプラットフォーム
|
682
730
|
on_this_platform: このプラットフォーム
|
@@ -691,6 +739,9 @@ ja:
|
|
691
739
|
destroy:
|
692
740
|
invalid: このミーティングから出発する問題があった。
|
693
741
|
success: ミーティングを正常に退会しました。
|
742
|
+
waitlist:
|
743
|
+
invalid: 順番待ちリストに参加中に問題が発生しました。
|
744
|
+
success: ミーティングの順番待ちリストへの登録が完了しました。登録が確定した場合は通知されます。
|
694
745
|
type_of_meeting:
|
695
746
|
hybrid: ハイブリッド
|
696
747
|
in_person: 対面
|
@@ -702,11 +753,6 @@ ja:
|
|
702
753
|
withdraw:
|
703
754
|
error: ミーティングを取り消す際に問題がありました。
|
704
755
|
success: ミーティングは正常に取り下げられました。
|
705
|
-
metrics:
|
706
|
-
meetings:
|
707
|
-
description: 作成されたミーティング数
|
708
|
-
object: ミーティング
|
709
|
-
title: ミーティング
|
710
756
|
open_data:
|
711
757
|
help:
|
712
758
|
meeting_comments:
|
@@ -717,11 +763,10 @@ ja:
|
|
717
763
|
commentable_type: コメント対象の種別 (結果、提案など)
|
718
764
|
comments: ミーティングのコメントデータ
|
719
765
|
created_at: このコメントが作成された日時
|
720
|
-
depth:
|
766
|
+
depth: コメントがコメントツリーのどこに位置しているか(回答、または回答の回答である場合)
|
721
767
|
id: このコメントのID
|
722
768
|
locale: このコメントを残すときに参加者が使っていたロケール(言語)
|
723
769
|
root_commentable_url: このコメントに関連するリソースの URL
|
724
|
-
user_group: コメントを作成したユーザーグループの名前 (もしあれば)
|
725
770
|
meetings:
|
726
771
|
address: ミーティングの場所、対面で行われ物理的な場所がある場合の所在地
|
727
772
|
attachments: このミーティングの添付ファイル数
|
@@ -739,7 +784,6 @@ ja:
|
|
739
784
|
created_at: ミーティングの作成日時
|
740
785
|
customize_registration_email: 登録時にカスタムメールを許可する機能
|
741
786
|
decidim_author_type: ミーティング作成者の投稿者タイプ
|
742
|
-
decidim_user_group_id: ミーティングに関与する人々のユーザーグループID
|
743
787
|
description: ミーティングの説明
|
744
788
|
end_time: このミーティングの終了日時
|
745
789
|
follows_count: ミーティングのフォロー数
|
@@ -789,6 +833,8 @@ ja:
|
|
789
833
|
statistics:
|
790
834
|
attendees_count: ミーティング参加者
|
791
835
|
meetings_count: ミーティング
|
836
|
+
meetings_count_tooltip: オンラインまたは対面で開催されたミーティングの合計数です。
|
837
|
+
participatory_space_meetings_count: ミーティング
|
792
838
|
devise:
|
793
839
|
mailer:
|
794
840
|
join_meeting:
|
data/config/locales/lb.yml
CHANGED
@@ -17,7 +17,6 @@ lb:
|
|
17
17
|
customize_registration_email: Registrierungs-E-Mail anpassen
|
18
18
|
decidim_category_id: Kategorie
|
19
19
|
decidim_scope_id: Ëmfang
|
20
|
-
decidim_user_group_id: Benutzergruppe
|
21
20
|
description: Beschreiwung
|
22
21
|
id: ID
|
23
22
|
location: Standuert
|
@@ -66,9 +65,6 @@ lb:
|
|
66
65
|
values:
|
67
66
|
'false': Vergaangenes
|
68
67
|
'true': Demnächst stattfannend
|
69
|
-
with_any_origin:
|
70
|
-
values:
|
71
|
-
user_group: Benotzergruppen
|
72
68
|
with_any_type:
|
73
69
|
label: Typ vu Versammlung
|
74
70
|
meeting_copies:
|
@@ -92,14 +88,12 @@ lb:
|
|
92
88
|
creation_enabled_for_participants: Teilnehmer können Besprechungen erstellen
|
93
89
|
default_registration_terms: Standard-Registrierungsbedingungen
|
94
90
|
enable_pads_creation: Aktivieren Sie die Pads-Erstellung
|
95
|
-
registration_code_enabled: Registrierungscode aktiviert
|
96
91
|
resources_permissions_enabled: Aktionsberechtigungen können für jedes Meeting festgelegt werden
|
97
92
|
terms_and_conditions_url_for_meeting_creators: Nutzungsbedingungen URL für Meeting-Ersteller
|
98
93
|
step:
|
99
94
|
announcement: Ankündigung
|
100
95
|
comments_blocked: Kommentare blockiert
|
101
96
|
creation_enabled_for_participants: Besprechung-Erstellung durch Teilnehmer aktiviert
|
102
|
-
creation_enabled_for_user_groups: Besprechung-Erstellung durch Benutzergruppen aktiviert
|
103
97
|
events:
|
104
98
|
meetings:
|
105
99
|
meeting_closed:
|
@@ -126,14 +120,10 @@ lb:
|
|
126
120
|
email_subject: Slots der Sitzung "%{resource_title}" über %{percentage}% belegt
|
127
121
|
notification_title: Die Slots der Sitzung <a href="%{resource_path}">%{resource_title}</a> sind zu über %{percentage}% belegt.
|
128
122
|
meeting_updated:
|
129
|
-
email_intro: 'Die Sitzung "%{resource_title}" wurde aktualisiert. Sie können die neue Version auf der Sitzungs-Seite lesen:'
|
130
123
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Sitzung "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
131
124
|
email_subject: Die Sitzung "%{resource_title}" wurde aktualisiert
|
132
|
-
notification_title: Die Sitzung <a href="%{resource_path}">%{resource_title}</a> wurde aktualisiert.
|
133
125
|
registration_code_validated:
|
134
126
|
email_intro: Ihr Registrierungscode "%{registration_code}" für die Sitzung "%{resource_title}" wurde bestätigt.
|
135
|
-
upcoming_meeting:
|
136
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Sitzung "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
137
127
|
meetings:
|
138
128
|
admin:
|
139
129
|
agenda:
|
@@ -149,7 +139,6 @@ lb:
|
|
149
139
|
create: Erstellen
|
150
140
|
title: Neue Agenda
|
151
141
|
exports:
|
152
|
-
answers: Antworten
|
153
142
|
meeting_comments: Kommentare
|
154
143
|
meetings: Treffen
|
155
144
|
registrations: Anmeldungen
|
@@ -211,6 +200,7 @@ lb:
|
|
211
200
|
form:
|
212
201
|
available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben.
|
213
202
|
invites: Aluedungen
|
203
|
+
manage_questions: Fragen
|
214
204
|
recommendation_message: Aus Datenschutzgründen empfehlen wir, dass Sie dieses Einschreibeformular löschen, wenn es nicht länger benötigt wird. Standardmäßig ist das 3 Monate nachdem die Besprechung durchgeführt wurde.
|
215
205
|
registration_email_help: Dieser Text erscheint in der Mitte der Registrierungs-E-Mail, direkt nach dem Registrierungscode.
|
216
206
|
registration_form: Anmeldeformular
|
@@ -281,7 +271,6 @@ lb:
|
|
281
271
|
meeting_minutes: Sitzungsprotokolle
|
282
272
|
no_slots_available: Keine Steckplätze verfügbar
|
283
273
|
organizations: Teilnahme an Organisationen
|
284
|
-
registration_code_help_text: Ihr Registrierungscode
|
285
274
|
registration_state:
|
286
275
|
validated: GÜLTIG
|
287
276
|
validation_pending: Validierung ausstehend
|
@@ -307,9 +296,6 @@ lb:
|
|
307
296
|
official_meeting: Offizielle Besprechung
|
308
297
|
start_time: Ufanksdatum
|
309
298
|
title: Titel
|
310
|
-
metrics:
|
311
|
-
meetings:
|
312
|
-
title: Meetings
|
313
299
|
resource_links:
|
314
300
|
proposals_from_meeting:
|
315
301
|
meeting_proposal: 'Ähnliche Vorschläge:'
|