decidim-meetings 0.20.1 → 0.23.1
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 +2 -0
- data/app/assets/images/decidim/gamification/badges/attended_meetings.svg +1 -106
- data/app/assets/images/decidim/meetings/icon.svg +1 -5
- data/app/assets/javascripts/decidim/meetings/admin/destroy_meeting_alert.js.es6 +16 -0
- data/app/assets/javascripts/decidim/meetings/admin/meetings_form.js.es6 +3 -0
- data/app/assets/javascripts/decidim/meetings/meetings_form.js.es6 +9 -0
- data/app/cells/decidim/meetings/content_blocks/upcoming_events_cell.rb +2 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +7 -7
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +2 -2
- data/app/cells/decidim/meetings/meeting_cell.rb +1 -0
- data/app/cells/decidim/meetings/meeting_list_item/show.erb +3 -3
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +1 -1
- data/app/cells/decidim/meetings/meeting_m/date.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/footer.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +1 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +9 -1
- data/app/cells/decidim/meetings/meeting_s/show.erb +6 -6
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -2
- data/app/cells/decidim/meetings/meetings_map_cell.rb +3 -1
- data/app/commands/decidim/meetings/admin/close_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +38 -28
- data/app/commands/decidim/meetings/admin/create_meeting.rb +36 -24
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +6 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_meeting.rb +9 -3
- data/app/commands/decidim/meetings/create_meeting.rb +78 -0
- data/app/commands/decidim/meetings/join_meeting.rb +11 -0
- data/app/commands/decidim/meetings/update_meeting.rb +94 -0
- data/app/controllers/decidim/meetings/admin/application_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -0
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +21 -7
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +4 -0
- data/app/controllers/decidim/meetings/calendars_controller.rb +1 -0
- data/app/controllers/decidim/meetings/meetings_controller.rb +75 -12
- data/app/controllers/decidim/meetings/registrations_controller.rb +1 -1
- data/app/controllers/decidim/meetings/versions_controller.rb +14 -0
- data/app/controllers/decidim/meetings/{meeting_widgets_controller.rb → widgets_controller.rb} +2 -2
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +7 -1
- data/app/forms/decidim/meetings/admin/meeting_copy_form.rb +2 -8
- data/app/forms/decidim/meetings/admin/meeting_form.rb +24 -23
- data/app/forms/decidim/meetings/meeting_form.rb +78 -0
- data/app/helpers/decidim/meetings/admin/application_helper.rb +1 -6
- data/app/helpers/decidim/meetings/application_helper.rb +26 -0
- data/app/helpers/decidim/meetings/map_helper.rb +2 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +13 -1
- data/app/models/decidim/meetings/agenda.rb +3 -0
- data/app/models/decidim/meetings/agenda_item.rb +3 -0
- data/app/models/decidim/meetings/meeting.rb +36 -15
- data/app/models/decidim/meetings/minutes.rb +3 -0
- data/app/models/decidim/meetings/service.rb +13 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +2 -0
- data/app/permissions/decidim/meetings/permissions.rb +20 -0
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +5 -1
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -2
- data/app/presenters/decidim/meetings/meeting_presenter.rb +21 -6
- data/app/presenters/decidim/meetings/official_author_presenter.rb +14 -0
- data/app/queries/decidim/meetings/filtered_meetings.rb +37 -0
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +2 -8
- data/app/services/decidim/meetings/calendar/meeting_to_event.rb +3 -3
- data/app/services/decidim/meetings/diff_renderer.rb +21 -0
- data/app/services/decidim/meetings/meeting_search.rb +3 -25
- data/app/types/decidim/meetings/agenda_item_type.rb +28 -0
- data/app/types/decidim/meetings/agenda_type.rb +25 -0
- data/app/types/decidim/meetings/meeting_type.rb +35 -8
- data/app/types/decidim/meetings/meetings_type.rb +1 -1
- data/app/types/decidim/meetings/minutes_type.rb +26 -0
- data/app/types/decidim/meetings/service_type.rb +13 -0
- data/app/views/decidim/meetings/_calendar_modal.html.erb +4 -4
- data/app/views/decidim/meetings/admin/invites/index.html.erb +2 -2
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -6
- data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +1 -0
- data/app/views/decidim/meetings/admin/meeting_copies/_form.html.erb +2 -9
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +5 -12
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +22 -3
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +4 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +5 -3
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +11 -4
- data/app/views/decidim/meetings/meetings/_count.html.erb +1 -0
- data/app/views/decidim/meetings/meetings/_filters.html.erb +13 -7
- data/app/views/decidim/meetings/meetings/_form.html.erb +51 -0
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +8 -8
- data/app/views/decidim/meetings/meetings/edit.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +16 -1
- data/app/views/decidim/meetings/meetings/index.js.erb +13 -4
- data/app/views/decidim/meetings/meetings/new.html.erb +25 -0
- data/app/views/decidim/meetings/meetings/show.html.erb +30 -8
- data/app/views/decidim/meetings/versions/index.html.erb +8 -0
- data/app/views/decidim/meetings/versions/show.html.erb +10 -0
- data/app/views/decidim/participatory_processes/participatory_process_groups/_meeting.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +1 -3
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +0 -8
- data/config/locales/bg-BG.yml +21 -0
- data/config/locales/bg.yml +21 -0
- data/config/locales/ca.yml +61 -8
- data/config/locales/cs.yml +68 -9
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +64 -7
- data/config/locales/el.yml +449 -0
- data/config/locales/en.yml +62 -9
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +60 -7
- data/config/locales/es-PY.yml +60 -7
- data/config/locales/es.yml +62 -9
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +0 -8
- data/config/locales/fi-plain.yml +60 -7
- data/config/locales/fi.yml +88 -35
- data/config/locales/fr-CA.yml +504 -0
- data/config/locales/fr.yml +60 -7
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +0 -8
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +11 -7
- data/config/locales/id-ID.yml +0 -8
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/is.yml +228 -0
- data/config/locales/it.yml +58 -7
- data/config/locales/ja-JP.yml +494 -0
- data/config/locales/ja.yml +496 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +452 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +53 -8
- data/config/locales/no.yml +24 -9
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +210 -147
- data/config/locales/pt-BR.yml +1 -9
- data/config/locales/pt.yml +232 -177
- data/config/locales/ro-RO.yml +500 -0
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk-SK.yml +463 -0
- data/config/locales/sk.yml +458 -0
- data/config/locales/sl.yml +29 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +13 -0
- data/config/locales/sv.yml +67 -13
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +0 -8
- data/config/locales/uk.yml +0 -8
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +496 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20200320105922_index_foreign_keys_in_decidim_meetings_registrations.rb +7 -0
- data/db/migrate/20200526110940_add_author_to_meetings.rb +30 -0
- data/db/migrate/20200702123209_create_meeting_services_table.rb +13 -0
- data/db/migrate/20200702123210_move_meeting_services_to_own_model.rb +31 -0
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +9 -0
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +29 -0
- data/lib/decidim/api/linked_resources_interface.rb +17 -0
- data/lib/decidim/api/services_interface.rb +13 -0
- data/lib/decidim/meetings.rb +1 -0
- data/lib/decidim/meetings/admin_engine.rb +5 -1
- data/lib/decidim/meetings/api.rb +8 -0
- data/lib/decidim/meetings/component.rb +69 -14
- data/lib/decidim/meetings/engine.rb +3 -6
- data/lib/decidim/meetings/meeting_serializer.rb +1 -1
- data/lib/decidim/meetings/seeds/city.jpeg +0 -0
- data/lib/decidim/meetings/test/factories.rb +45 -8
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/tasks/decidim_meetings.rake +16 -0
- metadata +91 -21
- data/app/presenters/decidim/meetings/admin_log/value_types/organizer_presenter.rb +0 -70
- data/app/views/decidim/meetings/meeting_widgets/show.html.erb +0 -9
data/config/locales/it.yml
CHANGED
@@ -16,10 +16,12 @@ it:
|
|
16
16
|
available_slots: Posti disponibili per questo incontro
|
17
17
|
decidim_category_id: Categoria
|
18
18
|
decidim_scope_id: Visibilità
|
19
|
+
decidim_user_group_id: Gruppo di utenti
|
19
20
|
description: Descrizione
|
20
21
|
end_time: Orario fine
|
21
22
|
location: Luogo
|
22
23
|
location_hints: Informazione sul luogo
|
24
|
+
organizer_gid: Crea come
|
23
25
|
organizer_id: Organizzatore
|
24
26
|
private_meeting: Incontro privato
|
25
27
|
registration_form_enabled: Modulo di registrazione abilitato
|
@@ -81,12 +83,16 @@ it:
|
|
81
83
|
global:
|
82
84
|
announcement: Annuncio
|
83
85
|
comments_enabled: Commenti abilitati
|
86
|
+
comments_max_length: Lunghezza massima dei commenti (Lasciare 0 per il valore predefinito)
|
87
|
+
creation_enabled_for_participants: I partecipanti possono creare riunioni
|
84
88
|
default_registration_terms: Termini di registrazione predefiniti
|
85
89
|
enable_pads_creation: Abilita la creazione di pad
|
86
90
|
resources_permissions_enabled: Le autorizzazioni delle azioni possono essere impostate per ogni riunione
|
87
91
|
step:
|
88
92
|
announcement: Annuncio
|
89
93
|
comments_blocked: Commenti bloccati
|
94
|
+
creation_enabled_for_participants: Creazione delle riunioni da parte dei partecipanti abilitata
|
95
|
+
creation_enabled_for_user_groups: Creazione delle riunioni da parte dei partecipanti abilitata
|
90
96
|
events:
|
91
97
|
meetings:
|
92
98
|
meeting_closed:
|
@@ -153,6 +159,10 @@ it:
|
|
153
159
|
confirm_destroy: Sei certo di voler cancellare questo meeting?
|
154
160
|
destroy: Cancella
|
155
161
|
edit: Modifica
|
162
|
+
invalid_destroy:
|
163
|
+
proposals_count:
|
164
|
+
one: 'La riunione non può essere annullata perché ha %{count} proposta ad essa associata:'
|
165
|
+
other: 'La riunione non può essere annullata perché ha %{count} proposte associate:'
|
156
166
|
minutes: Minuti
|
157
167
|
new: Nuovo incontro
|
158
168
|
preview: Anteprima
|
@@ -223,9 +233,6 @@ it:
|
|
223
233
|
edit:
|
224
234
|
close: Chiudi
|
225
235
|
title: Chiusura meeting
|
226
|
-
meeting_copies:
|
227
|
-
form:
|
228
|
-
select_organizer: Seleziona l'organizzatore
|
229
236
|
meetings:
|
230
237
|
close:
|
231
238
|
invalid: C'è stato un problema durante la chiusura di questo meeting.
|
@@ -234,6 +241,10 @@ it:
|
|
234
241
|
invalid: C'è stato un problema durante la creazione di questo meeting.
|
235
242
|
success: OK, il meeting è stato creato con successo.
|
236
243
|
destroy:
|
244
|
+
invalid:
|
245
|
+
proposals_count:
|
246
|
+
one: La riunione non può essere annullata perché ha %{count} proposta ad essa associata
|
247
|
+
other: La riunione non può essere annullata perché ha %{count} proposte associate
|
237
248
|
success: OK, il meeting è stato cancellato.
|
238
249
|
edit:
|
239
250
|
update: Modifica
|
@@ -241,7 +252,6 @@ it:
|
|
241
252
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
242
253
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
243
254
|
location_hints_help: 'Suggerimenti di posizione: informazioni aggiuntive. Esempio: il piano dell''edificio'
|
244
|
-
select_organizer: Seleziona l'organizzatore
|
245
255
|
index:
|
246
256
|
title: Incontri
|
247
257
|
new:
|
@@ -283,6 +293,7 @@ it:
|
|
283
293
|
form:
|
284
294
|
available_slots_help: Lasciare a 0 se disponi di slot illimitati.
|
285
295
|
invites: Inviti
|
296
|
+
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.
|
286
297
|
registration_form: Formulario di registrazione
|
287
298
|
registrations_count:
|
288
299
|
one: C'è stata %{count} registrazione.
|
@@ -345,30 +356,64 @@ it:
|
|
345
356
|
meeting:
|
346
357
|
not_allowed: Non sei autorizzato a visualizzare questo incontro
|
347
358
|
meetings:
|
359
|
+
count:
|
360
|
+
meetings_count:
|
361
|
+
one: "%{count} riunione"
|
362
|
+
other: "%{count} riunioni"
|
363
|
+
create:
|
364
|
+
invalid: Si è verificato un errore durante la creazione di questa riunione.
|
365
|
+
success: Hai creato la riunione con successo.
|
366
|
+
edit:
|
367
|
+
back: Indietro
|
368
|
+
title: Modifica riunione
|
369
|
+
update: Aggiorna
|
348
370
|
filters:
|
349
371
|
category: Categoria
|
350
|
-
category_prompt: Scegli una categoria
|
351
372
|
date: Data
|
352
|
-
|
373
|
+
date_values:
|
374
|
+
all: Tutte
|
375
|
+
past: Passata
|
376
|
+
upcoming: Imminente
|
377
|
+
origin: Origine
|
378
|
+
origin_values:
|
379
|
+
all: Tutte
|
380
|
+
citizens: Cittadini
|
381
|
+
official: Ufficiale
|
382
|
+
user_groups: Gruppi
|
383
|
+
scope: Ambito
|
353
384
|
search: Cerca
|
354
|
-
upcoming: Prossimi
|
355
385
|
filters_small_view:
|
356
386
|
close_modal: Chiudi modalità
|
357
387
|
filter: Filtra
|
358
388
|
filter_by: Filtra per
|
359
389
|
unfold: Espandi
|
390
|
+
form:
|
391
|
+
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
392
|
+
create_as: Crea riunione come
|
393
|
+
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
|
+
select_a_category: Scegli una categoria
|
396
|
+
index:
|
397
|
+
new_meeting: Nuova riunione
|
360
398
|
meeting_minutes:
|
361
399
|
meeting_minutes: Riunione dei verbali
|
362
400
|
related_information: Informazioni correlate
|
363
401
|
meetings:
|
364
402
|
no_meetings_warning: Nessun meeting corrisponde ai tuoi criteri di ricerca oppure non vi è nessun meeting in programma.
|
365
403
|
upcoming_meetings_warning: Attualmente non vi sono meeting in programma, ma qui puoi trovare elencati tutti i meeting effettuati in passato.
|
404
|
+
new:
|
405
|
+
back: Indietro
|
406
|
+
create: Crea
|
407
|
+
title: Crea una riunione
|
366
408
|
registration_confirm:
|
367
409
|
cancel: Annulla
|
368
410
|
confirm: Conferma
|
369
411
|
show:
|
370
412
|
attendees: Conteggio dei partecipanti
|
413
|
+
back: Torna alla lista
|
371
414
|
contributions: Conteggio dei contributi
|
415
|
+
date: Data
|
416
|
+
edit_meeting: Modifica la riunione
|
372
417
|
going: Parteciperò
|
373
418
|
join: Partecipa alla riunione
|
374
419
|
meeting_report: Rapporto della riunione
|
@@ -382,6 +427,9 @@ it:
|
|
382
427
|
one: "%{count} slot rimanenti"
|
383
428
|
other: "%{count} slot rimanenti"
|
384
429
|
view: Visualizza
|
430
|
+
update:
|
431
|
+
invalid: Si è verificato un errore durante l'aggiornamento della riunione.
|
432
|
+
success: Hai aggiornato la riunione con successo.
|
385
433
|
meetings_map:
|
386
434
|
view_meeting: Guarda la riunione
|
387
435
|
models:
|
@@ -400,6 +448,7 @@ it:
|
|
400
448
|
closed: Chiuso
|
401
449
|
end_time: Data di fine
|
402
450
|
map: Mappa
|
451
|
+
official_meeting: Riunione ufficiale
|
403
452
|
start_time: Data di inizio
|
404
453
|
title: Titolo
|
405
454
|
read_more: "(leggi di più)"
|
@@ -421,6 +470,8 @@ it:
|
|
421
470
|
types:
|
422
471
|
private_meeting: Incontro privato
|
423
472
|
transparent: Trasparente
|
473
|
+
versions:
|
474
|
+
back_to_resource: Torna alla riunione
|
424
475
|
metrics:
|
425
476
|
meetings:
|
426
477
|
description: Numero di riunioni create
|
@@ -0,0 +1,494 @@
|
|
1
|
+
ja:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
agenda:
|
5
|
+
description: 説明
|
6
|
+
duration: 期間
|
7
|
+
title: タイトル
|
8
|
+
close_meeting:
|
9
|
+
attendees_count: 出席者数
|
10
|
+
attending_organizations: 参加した組織一覧
|
11
|
+
closing_report: レポート
|
12
|
+
contributions_count: 貢献数
|
13
|
+
proposal_ids: 会議で作成された提案
|
14
|
+
meeting:
|
15
|
+
address: 住所
|
16
|
+
available_slots: この会議で利用可能なスロット
|
17
|
+
decidim_category_id: カテゴリ
|
18
|
+
decidim_scope_id: スコープ
|
19
|
+
decidim_user_group_id: ユーザーグループ
|
20
|
+
description: 説明
|
21
|
+
end_time: 終了時刻
|
22
|
+
location: 場所
|
23
|
+
location_hints: 位置情報のヒント
|
24
|
+
organizer_gid: '次として作成:'
|
25
|
+
organizer_id: オーガナイザー
|
26
|
+
private_meeting: プライベートミーティング
|
27
|
+
registration_form_enabled: 登録フォームは有効です
|
28
|
+
registration_terms: 登録条件
|
29
|
+
registrations_enabled: 登録が有効です
|
30
|
+
start_time: 開始時刻
|
31
|
+
title: タイトル
|
32
|
+
transparent: 透明度
|
33
|
+
minutes:
|
34
|
+
audio_url: オーディオ URL
|
35
|
+
description: 説明
|
36
|
+
video_url: ビデオ URL
|
37
|
+
visible: 非表示にする
|
38
|
+
errors:
|
39
|
+
models:
|
40
|
+
meeting_agenda:
|
41
|
+
attributes:
|
42
|
+
base:
|
43
|
+
too_many_minutes: 項目の期間はミーティング期間を %{count} 分超えています
|
44
|
+
too_many_minutes_child: アイテムの子の期間は議題項目「%{parent_title}」の親期間を %{count} 分超えています
|
45
|
+
meeting_registration_invite:
|
46
|
+
attributes:
|
47
|
+
email:
|
48
|
+
already_invited: このメールアカウントは既に招待されています
|
49
|
+
models:
|
50
|
+
decidim/meetings/close_meeting_event: ミーティングは終了しました
|
51
|
+
decidim/meetings/create_meeting_event: 会議
|
52
|
+
decidim/meetings/meeting_registrations_enabled_event: 登録が有効です
|
53
|
+
decidim/meetings/meeting_registrations_over_percentage_event: 上限を超える登録
|
54
|
+
decidim/meetings/upcoming_meeting_event: 今後のミーティング
|
55
|
+
decidim/meetings/update_meeting_event: ミーティングが更新されました
|
56
|
+
activerecord:
|
57
|
+
models:
|
58
|
+
decidim/meetings/meeting:
|
59
|
+
other: ミーティング
|
60
|
+
decidim/meetings/minutes:
|
61
|
+
other: 分
|
62
|
+
decidim/meetings/registration:
|
63
|
+
other: 登録
|
64
|
+
decidim:
|
65
|
+
admin:
|
66
|
+
meeting_copies:
|
67
|
+
create:
|
68
|
+
error: この会議を複製する際に問題が発生しました。
|
69
|
+
success: 会議を複製しました。
|
70
|
+
new:
|
71
|
+
copy: コピー
|
72
|
+
select: 複製したいデータを選択してください
|
73
|
+
title: ミーティングを複製
|
74
|
+
components:
|
75
|
+
meetings:
|
76
|
+
actions:
|
77
|
+
join: 参加する
|
78
|
+
name: ミーティング
|
79
|
+
settings:
|
80
|
+
global:
|
81
|
+
announcement: お知らせ
|
82
|
+
comments_enabled: コメントは有効です
|
83
|
+
comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
|
84
|
+
creation_enabled_for_participants: 出席者はミーティングを作成できます
|
85
|
+
default_registration_terms: デフォルトの登録条件
|
86
|
+
enable_pads_creation: パッドの作成を有効にする
|
87
|
+
resources_permissions_enabled: アクションの権限はミーティングごとに設定できます
|
88
|
+
step:
|
89
|
+
announcement: お知らせ
|
90
|
+
comments_blocked: コメントがブロックされました
|
91
|
+
creation_enabled_for_participants: 参加者によるミーティングの作成が有効です
|
92
|
+
creation_enabled_for_user_groups: ユーザーグループによるミーティングの作成が有効です
|
93
|
+
events:
|
94
|
+
meetings:
|
95
|
+
meeting_closed:
|
96
|
+
affected_user:
|
97
|
+
email_intro: 'あなたのミーティング "%{resource_title}" は終了しました.そのページから結論を読むことができます:'
|
98
|
+
email_outro: '"%{resource_title}"の会議を組織化したため、この通知を受け取りました。'
|
99
|
+
email_subject: '「%{resource_title}」のミーティングは終了しました'
|
100
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> の会合は終了しました。
|
101
|
+
follower:
|
102
|
+
email_intro: '"%{resource_title}" ミーティングは終了しました.そのページから結論を読むことができます:'
|
103
|
+
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
104
|
+
email_subject: '「%{resource_title}」のミーティングは終了しました'
|
105
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> の会合は終了しました。
|
106
|
+
meeting_created:
|
107
|
+
email_intro: フォローしているミーティング "%{resource_title}" が "%{participatory_space_title}" に追加されました.
|
108
|
+
email_outro: '「%{participatory_space_title}」をフォローしているため、この通知を受け取りました。前のリンクからこの通知をアンフォローすることができます。'
|
109
|
+
email_subject: '%{participatory_space_title} に新しいミーティングが追加されました'
|
110
|
+
notification_title: ミーティング <a href="%{resource_path}">%{resource_title}</a> が %{participatory_space_title} に追加されました.
|
111
|
+
meeting_registration_confirmed:
|
112
|
+
notification_title: ミーティング <a href="%{resource_url}">%{resource_title}</a> の登録が確認されました.登録コードは %{registration_code}です.
|
113
|
+
meeting_registrations_over_percentage:
|
114
|
+
email_intro: '"%{resource_title}" 会議に割り当てられたスロットは %{percentage} %以上です。'
|
115
|
+
email_outro: あなたはミーティングの参加スペースの管理者であるため、この通知を受け取りました.
|
116
|
+
email_subject: '「%{resource_title}」会議の割り当てられたスロットは %{percentage} %を超えています'
|
117
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> 会議に割り当てられたスロットは %{percentage}%を超えています。
|
118
|
+
meeting_updated:
|
119
|
+
email_intro: '"%{resource_title}" ミーティングが更新されました.新しいバージョンはそのページから読むことができます:'
|
120
|
+
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
121
|
+
email_subject: '"%{resource_title}" のミーティングが更新されました'
|
122
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> のミーティングを更新しました。
|
123
|
+
registration_code_validated:
|
124
|
+
email_intro: '「%{registration_code}」会議の登録コード「%{resource_title}」が確認されました。'
|
125
|
+
email_outro: '"%{resource_title}" 会議の登録コードが検証されたため、この通知を受け取りました。'
|
126
|
+
email_subject: あなたの "%{registration_code}" 会議の登録コード "%{resource_title}" が検証されました
|
127
|
+
notification_title: ミーティング <a href="%{resource_path}">%{resource_title} </a> に対するあなたの登録コード "%{registration_code}" が認証されました。
|
128
|
+
registrations_enabled:
|
129
|
+
email_intro: '"%{resource_title}" ミーティングは登録を有効にしました.あなた自身をそのページに登録することができます:'
|
130
|
+
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
131
|
+
email_subject: '"%{resource_title}" ミーティングは登録を有効にしました.'
|
132
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> のミーティングは登録を有効にしました。
|
133
|
+
upcoming_meeting:
|
134
|
+
email_intro: '"%{resource_title}" のミーティングは48時間以内に開始されます.'
|
135
|
+
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
136
|
+
email_subject: '"%{resource_title}" のミーティングは48時間以内に開始されます.'
|
137
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> のミーティングは48時間以内に開始されます.
|
138
|
+
gamification:
|
139
|
+
badges:
|
140
|
+
attended_meetings:
|
141
|
+
conditions:
|
142
|
+
- 参加したいミーティングに登録する
|
143
|
+
description: このバッジは、顔を合わせていくつかのミーティングに出席するときに付与されます。
|
144
|
+
description_another: この参加者は %{score} 件のミーティングに出席しました.
|
145
|
+
description_own: '%{score} 件のミーティングに出席しました.'
|
146
|
+
name: 出席したミーティング
|
147
|
+
next_level_in: さらに %{score} 件のミーティングに参加して、次のレベルに到達しましょう!
|
148
|
+
unearned_another: この参加者はまだミーティングに出席していません.
|
149
|
+
unearned_own: まだ会議に出席していません。
|
150
|
+
meetings:
|
151
|
+
actions:
|
152
|
+
agenda: 予定
|
153
|
+
attachment_collections: フォルダ
|
154
|
+
attachments: 添付ファイル
|
155
|
+
close: 閉じる
|
156
|
+
confirm_destroy: このミーティングを削除してもよろしいですか?
|
157
|
+
destroy: 削除
|
158
|
+
edit: 編集
|
159
|
+
invalid_destroy:
|
160
|
+
proposals_count:
|
161
|
+
other: '%{count} 件の提案が関連付けられているため、会議を破壊できません:'
|
162
|
+
minutes: 分
|
163
|
+
new: 新しいミーティング
|
164
|
+
preview: プレビュー
|
165
|
+
registrations: 登録
|
166
|
+
title: アクション
|
167
|
+
admin:
|
168
|
+
agenda:
|
169
|
+
agenda_item:
|
170
|
+
add_agenda_item_child: 議題サブ項目を追加
|
171
|
+
agenda_item: 予定表の項目
|
172
|
+
agenda_item_children: アジェンダサブアイテム
|
173
|
+
down: 下
|
174
|
+
remove: 削除
|
175
|
+
up: 上へ
|
176
|
+
agenda_item_child:
|
177
|
+
agenda_item_child: アジェンダサブアイテム
|
178
|
+
down: 下
|
179
|
+
remove: 削除
|
180
|
+
up: 上へ
|
181
|
+
create:
|
182
|
+
invalid: この議題の作成中に問題が発生しました
|
183
|
+
success: アジェンダを作成しました
|
184
|
+
edit:
|
185
|
+
title: 議題を編集
|
186
|
+
update: 更新
|
187
|
+
form:
|
188
|
+
add_agenda_item: 議題項目を追加
|
189
|
+
agenda_items: 予定表の項目
|
190
|
+
end_date: 終了日
|
191
|
+
start_date: 開始日
|
192
|
+
new:
|
193
|
+
create: 作成
|
194
|
+
title: 新しい議題の作成
|
195
|
+
update:
|
196
|
+
invalid: この議題の更新中に問題が発生しました
|
197
|
+
success: アジェンダを正常に更新しました
|
198
|
+
exports:
|
199
|
+
meetings: ミーティング
|
200
|
+
registrations: 登録
|
201
|
+
invite_join_meeting_mailer:
|
202
|
+
invite:
|
203
|
+
decline: 招待を拒否
|
204
|
+
invited_you_to_join_a_meeting: "%{invited_by} が %{application}にミーティングへの参加を招待しました.以下のリンクから拒否または承認することができます."
|
205
|
+
join: ミーティングに参加する '%{meeting_title}'
|
206
|
+
invites:
|
207
|
+
create:
|
208
|
+
error: 参加者をミーティングに招待する際に問題が発生しました.
|
209
|
+
success: 参加者が会議に参加するように招待されました。
|
210
|
+
form:
|
211
|
+
attendee_type: 参加者の種類
|
212
|
+
existing_user: 既存の参加者
|
213
|
+
invite: 招待
|
214
|
+
invite_explanation: 参加者は、会議や団体にも招待されます。
|
215
|
+
non_user: 非既存の参加者
|
216
|
+
select_user: 参加者を選択
|
217
|
+
index:
|
218
|
+
filter:
|
219
|
+
accepted: 承認済み
|
220
|
+
all: すべて
|
221
|
+
rejected: 拒否
|
222
|
+
sent: 送信済み
|
223
|
+
filter_by: フィルター
|
224
|
+
invite_attendee: 参加者を招待
|
225
|
+
invites: 招待
|
226
|
+
registrations_disabled: 登録が無効になっているため、参加者を招待することはできません。
|
227
|
+
search: 検索
|
228
|
+
meeting_closes:
|
229
|
+
edit:
|
230
|
+
close: 閉じる
|
231
|
+
title: ミーティングを閉じる
|
232
|
+
meetings:
|
233
|
+
close:
|
234
|
+
invalid: この会議を終了する際に問題が発生しました
|
235
|
+
success: ミーティングが正常に閉じられました
|
236
|
+
create:
|
237
|
+
invalid: このミーティングを作成する際に問題が発生しました
|
238
|
+
success: ミーティングを作成しました
|
239
|
+
destroy:
|
240
|
+
invalid:
|
241
|
+
proposals_count:
|
242
|
+
other: '%{count} 件の提案が関連付けられているため、会議を破壊できません'
|
243
|
+
success: ミーティングを削除しました
|
244
|
+
edit:
|
245
|
+
update: 更新
|
246
|
+
form:
|
247
|
+
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
248
|
+
location_help: '場所: ユーザーにメッセージが表示されます。'
|
249
|
+
location_hints_help: '位置情報:追加情報。例:建物の床。'
|
250
|
+
index:
|
251
|
+
title: ミーティング
|
252
|
+
new:
|
253
|
+
create: 作成
|
254
|
+
title: ミーティングを作成
|
255
|
+
service:
|
256
|
+
description: 説明
|
257
|
+
down: 下
|
258
|
+
remove: 削除
|
259
|
+
service: サービス
|
260
|
+
title: タイトル
|
261
|
+
up: 上へ
|
262
|
+
services:
|
263
|
+
add_service: サービスを追加
|
264
|
+
services: サービス
|
265
|
+
update:
|
266
|
+
invalid: この会議の更新中に問題が発生しました
|
267
|
+
success: ミーティングを更新しました
|
268
|
+
minutes:
|
269
|
+
create:
|
270
|
+
invalid: この分を作成する際に問題が発生しました
|
271
|
+
success: 正常に作成された分
|
272
|
+
edit:
|
273
|
+
update: 更新
|
274
|
+
new:
|
275
|
+
create: 作成
|
276
|
+
title: 分を作成
|
277
|
+
update:
|
278
|
+
invalid: この議事録の更新中に問題が発生しました
|
279
|
+
success: 分が正常に更新されました
|
280
|
+
models:
|
281
|
+
meeting:
|
282
|
+
name: 会議
|
283
|
+
registrations:
|
284
|
+
edit:
|
285
|
+
save: 保存
|
286
|
+
validate: Validate
|
287
|
+
validate_registration_code: 登録コードを検証する
|
288
|
+
form:
|
289
|
+
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
290
|
+
invites: 招待
|
291
|
+
recommendation_message: プライバシー上の理由から、不要になったときにこの碑文フォームを削除することをお勧めします。 デフォルトでは、ミーティングが終了してから3ヶ月です。
|
292
|
+
registration_form: 登録フォーム
|
293
|
+
registrations_count:
|
294
|
+
other: '%{count} 件の登録がありました。'
|
295
|
+
reserved_slots_help: 予約スロットがない場合は0にしてください
|
296
|
+
reserved_slots_less_than: '%{count} 以下にしてください'
|
297
|
+
title: 登録
|
298
|
+
update:
|
299
|
+
invalid: 登録設定の保存中に問題が発生しました。
|
300
|
+
success: ミーティングの登録設定を保存しました。
|
301
|
+
validate_registration_code:
|
302
|
+
invalid: この登録コードは無効です。
|
303
|
+
success: 登録コードを検証しました。
|
304
|
+
admin_log:
|
305
|
+
invite:
|
306
|
+
create: "%{user_name} が %{attendee_name} を %{resource_name} スペースの %{space_name} ミーティングに招待しました"
|
307
|
+
deleted: "%{user_name} は %{attendee_name} スペースで %{resource_name} ミーティングに参加して、 %{space_name} の招待を解除しました"
|
308
|
+
update: "%{user_name} が %{attendee_name} を %{resource_name} スペースの %{space_name} ミーティングに招待しました"
|
309
|
+
meeting:
|
310
|
+
close: "%{user_name} が %{resource_name} スペースの %{space_name} ミーティングを閉鎖しました"
|
311
|
+
create: "%{user_name} が %{resource_name} スペースで %{space_name} ミーティングを作成しました"
|
312
|
+
delete: "%{user_name} が %{resource_name} スペースの %{space_name} ミーティングを削除しました"
|
313
|
+
export_registrations: "%{user_name} は %{resource_name} スペースに %{space_name} 会議の登録をエクスポートしました"
|
314
|
+
update: "%{user_name} が %{resource_name} スペースの %{space_name} ミーティングを更新しました"
|
315
|
+
value_types:
|
316
|
+
organizer_presenter:
|
317
|
+
not_found: '主催者がデータベース上に見つかりませんでした (ID: %{id})'
|
318
|
+
minutes:
|
319
|
+
create: "%{user_name} が %{resource_name} スペースにミーティング %{space_name} の議事録を作成しました"
|
320
|
+
update: "%{user_name} が %{resource_name} スペースでミーティング %{space_name} の議事録を更新しました"
|
321
|
+
calendar_modal:
|
322
|
+
calendar_url: カレンダー URL
|
323
|
+
close_window: ウィンドウを閉じる
|
324
|
+
export_calendar: カレンダーをエクスポート
|
325
|
+
conference_venues: 会議場
|
326
|
+
content_blocks:
|
327
|
+
upcoming_events:
|
328
|
+
name: 今後の予定
|
329
|
+
upcoming_events: 今後のミーティング
|
330
|
+
view_all_events: すべて表示
|
331
|
+
directory:
|
332
|
+
meetings:
|
333
|
+
index:
|
334
|
+
all: すべて
|
335
|
+
date: 日付
|
336
|
+
meetings: ミーティング
|
337
|
+
past: 過去
|
338
|
+
search: 検索
|
339
|
+
space_type: 参加者のスペース
|
340
|
+
upcoming: 近日公開
|
341
|
+
last_activity:
|
342
|
+
new_meeting_at_html: "<span> %{link}に新しいミーティング</span>"
|
343
|
+
mailer:
|
344
|
+
invite_join_meeting_mailer:
|
345
|
+
invite:
|
346
|
+
subject: ミーティングへの招待
|
347
|
+
registration_mailer:
|
348
|
+
confirmation:
|
349
|
+
subject: ミーティングの登録が確認されました
|
350
|
+
meeting:
|
351
|
+
not_allowed: このミーティングを表示する権限がありません
|
352
|
+
meetings:
|
353
|
+
count:
|
354
|
+
meetings_count:
|
355
|
+
other: "%{count} 個のミーティング"
|
356
|
+
create:
|
357
|
+
invalid: このミーティングの作成に問題がありました.
|
358
|
+
success: ミーティングを作成しました.
|
359
|
+
edit:
|
360
|
+
back: 戻る
|
361
|
+
title: ミーティングを編集
|
362
|
+
update: 更新
|
363
|
+
filters:
|
364
|
+
category: カテゴリ
|
365
|
+
date: 日付
|
366
|
+
date_values:
|
367
|
+
all: すべて
|
368
|
+
past: 過去
|
369
|
+
upcoming: 近日公開
|
370
|
+
origin: 原点:
|
371
|
+
origin_values:
|
372
|
+
all: すべて
|
373
|
+
citizens: Citizens
|
374
|
+
official: オフィシャル
|
375
|
+
user_groups: グループ
|
376
|
+
scope: スコープ
|
377
|
+
search: 検索
|
378
|
+
filters_small_view:
|
379
|
+
close_modal: モーダルを閉じる
|
380
|
+
filter: フィルター
|
381
|
+
filter_by: フィルター
|
382
|
+
unfold: 展開する
|
383
|
+
form:
|
384
|
+
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
385
|
+
create_as: 次のユーザとしてミーティングを作成:
|
386
|
+
location_help: '場所: ユーザーにメッセージが表示されます。'
|
387
|
+
location_hints_help: '位置情報:追加情報。例:建物の床。'
|
388
|
+
select_a_category: カテゴリを選択してください
|
389
|
+
index:
|
390
|
+
new_meeting: 新しいミーティング
|
391
|
+
meeting_minutes:
|
392
|
+
meeting_minutes: ミーティング時間
|
393
|
+
related_information: 関連情報
|
394
|
+
meetings:
|
395
|
+
no_meetings_warning: 検索条件に一致するミーティングがないか,スケジュールされたミーティングがありません.
|
396
|
+
upcoming_meetings_warning: 現在、スケジュールされたミーティングはありませんが、ここではリストされた過去のミーティングをすべて見つけることができます。
|
397
|
+
new:
|
398
|
+
back: 戻る
|
399
|
+
create: 作成
|
400
|
+
title: ミーティングを作成
|
401
|
+
registration_confirm:
|
402
|
+
cancel: キャンセル
|
403
|
+
confirm: 確認する
|
404
|
+
show:
|
405
|
+
attendees: 出席者数
|
406
|
+
back: リストに戻る
|
407
|
+
contributions: コントリビューション数
|
408
|
+
date: 日付
|
409
|
+
edit_meeting: ミーティングを編集
|
410
|
+
going: 次へ
|
411
|
+
join: 会議に参加
|
412
|
+
meeting_report: ミーティングレポート
|
413
|
+
no_slots_available: 利用可能なスロットがありません
|
414
|
+
organizations: 組織に参加
|
415
|
+
registration_code_help_text: 登録コード
|
416
|
+
registration_state:
|
417
|
+
validated: 有効化
|
418
|
+
validation_pending: 保留中
|
419
|
+
remaining_slots:
|
420
|
+
other: "残り%{count} スロット"
|
421
|
+
view: 表示
|
422
|
+
update:
|
423
|
+
invalid: 会議の更新に問題がありました。
|
424
|
+
success: ミーティングを更新しました.
|
425
|
+
meetings_map:
|
426
|
+
view_meeting: ミーティングを表示
|
427
|
+
models:
|
428
|
+
invite:
|
429
|
+
fields:
|
430
|
+
email: Eメールアドレス
|
431
|
+
name: 名前
|
432
|
+
sent_at: 送信日時
|
433
|
+
status: ステータス
|
434
|
+
status:
|
435
|
+
accepted: 承認済み (%{at})
|
436
|
+
rejected: 拒否 (%{at})
|
437
|
+
sent: 送信済み
|
438
|
+
meeting:
|
439
|
+
fields:
|
440
|
+
closed: クローズ済み
|
441
|
+
end_time: 終了日
|
442
|
+
map: 地図
|
443
|
+
official_meeting: 公式ミーティング
|
444
|
+
start_time: 開始日
|
445
|
+
title: タイトル
|
446
|
+
read_more: "(続きを読む)"
|
447
|
+
registration_mailer:
|
448
|
+
confirmation:
|
449
|
+
confirmed_html: ミーティング <a href="%{url}">%{title}</a> の登録が確認されました。
|
450
|
+
details: 会議の詳細は添付ファイルにあります。
|
451
|
+
registration_code: 登録コードは %{code} です。
|
452
|
+
registrations:
|
453
|
+
create:
|
454
|
+
invalid: この会議に参加する際に問題がありました。
|
455
|
+
success: ミーティングに正常に参加しました.このミーティングに登録したため,更新がある場合は通知されます.
|
456
|
+
decline_invitation:
|
457
|
+
invalid: 招待を辞退するのに問題があった。
|
458
|
+
success: 招待を拒否しました。
|
459
|
+
destroy:
|
460
|
+
invalid: この会合から出発する問題があった。
|
461
|
+
success: 会議を正常に退会しました。
|
462
|
+
types:
|
463
|
+
private_meeting: プライベートミーティング
|
464
|
+
transparent: 透明度
|
465
|
+
versions:
|
466
|
+
back_to_resource: 会議に戻る
|
467
|
+
metrics:
|
468
|
+
meetings:
|
469
|
+
description: 作成されたミーティング数
|
470
|
+
object: ミーティング
|
471
|
+
title: ミーティング
|
472
|
+
participatory_processes:
|
473
|
+
participatory_process_groups:
|
474
|
+
highlighted_meetings:
|
475
|
+
past_meetings: 過去のミーティング
|
476
|
+
upcoming_meetings: 今後のミーティング
|
477
|
+
participatory_spaces:
|
478
|
+
highlighted_meetings:
|
479
|
+
past_meetings: 過去のミーティング
|
480
|
+
see_all: すべてのミーティングを見る (%{count})
|
481
|
+
upcoming_meetings: 今後のミーティング
|
482
|
+
upcoming_meeting_for_card:
|
483
|
+
upcoming_meeting: 今後のミーティング
|
484
|
+
resource_links:
|
485
|
+
meetings_through_proposals:
|
486
|
+
meeting_result: '関連する結果:'
|
487
|
+
result_meeting: '関連するミーティング:'
|
488
|
+
proposals_from_meeting:
|
489
|
+
meeting_proposal: '関連する提案:'
|
490
|
+
proposal_meeting: '関連するミーティング:'
|
491
|
+
devise:
|
492
|
+
mailer:
|
493
|
+
join_meeting:
|
494
|
+
subject: ミーティングへの招待
|