decidim-meetings 0.27.10 → 0.28.0.rc4
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/attending_organizations_list_cell.rb +32 -0
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +21 -0
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +10 -13
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +2 -2
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings_cell.rb +8 -18
- data/app/cells/decidim/meetings/dates_and_map/show.erb +25 -0
- data/app/cells/decidim/meetings/dates_and_map/static_map.erb +1 -0
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +35 -0
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +32 -30
- data/app/cells/decidim/meetings/highlighted_meetings_for_component_cell.rb +76 -16
- data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +25 -0
- data/app/cells/decidim/meetings/join_meeting_button/remaining_slots.erb +4 -0
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +6 -4
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +3 -7
- data/app/cells/decidim/meetings/meeting_activity_cell.rb +1 -12
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +64 -0
- data/app/cells/decidim/meetings/meeting_cell.rb +2 -6
- data/app/cells/decidim/meetings/meeting_l/image.erb +5 -0
- data/app/cells/decidim/meetings/meeting_l_cell.rb +33 -0
- data/app/cells/decidim/meetings/meeting_month/show.erb +33 -0
- data/app/cells/decidim/meetings/meeting_month_cell.rb +72 -0
- data/app/cells/decidim/meetings/meeting_s_cell.rb +5 -37
- data/app/cells/decidim/meetings/meetings_map/show.erb +9 -24
- data/app/cells/decidim/meetings/meetings_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/online_meeting_cell.rb +1 -0
- data/app/cells/decidim/meetings/online_meeting_link/show.erb +18 -41
- data/app/cells/decidim/meetings/public_participants_list/show.erb +4 -15
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/create_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/invite_user_to_join_meeting.rb +5 -5
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +1 -1
- data/app/commands/decidim/meetings/admin/unpublish_meeting.rb +1 -1
- data/app/commands/decidim/meetings/create_meeting.rb +14 -3
- data/app/commands/decidim/meetings/decline_invitation.rb +1 -1
- data/app/commands/decidim/meetings/join_meeting.rb +5 -5
- data/app/commands/decidim/meetings/update_meeting.rb +13 -3
- data/app/controllers/concerns/decidim/meetings/component_filterable.rb +4 -4
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +6 -6
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +3 -3
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +2 -4
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +3 -3
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +7 -7
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +4 -4
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +6 -6
- data/app/controllers/decidim/meetings/application_controller.rb +11 -0
- data/app/controllers/decidim/meetings/calendars_controller.rb +0 -1
- data/app/controllers/decidim/meetings/directory/application_controller.rb +12 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +5 -30
- data/app/controllers/decidim/meetings/live_events_controller.rb +1 -0
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +2 -3
- data/app/controllers/decidim/meetings/meetings_controller.rb +75 -7
- data/app/controllers/decidim/meetings/polls/answers_controller.rb +2 -2
- data/app/controllers/decidim/meetings/polls/questions_controller.rb +1 -1
- data/app/controllers/decidim/meetings/registrations_controller.rb +5 -5
- data/app/events/decidim/meetings/close_meeting_event.rb +1 -1
- data/app/events/decidim/meetings/meeting_event.rb +1 -1
- data/app/events/decidim/meetings/meeting_registration_notification_event.rb +3 -3
- data/app/events/decidim/meetings/meeting_registrations_enabled_event.rb +1 -1
- data/app/events/decidim/meetings/meeting_registrations_over_percentage_event.rb +1 -1
- data/app/events/decidim/meetings/registration_code_validated_event.rb +1 -1
- data/app/forms/decidim/meetings/admin/meeting_form.rb +5 -1
- data/app/forms/decidim/meetings/admin/meeting_registrations_form.rb +2 -2
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
- data/app/forms/decidim/meetings/base_meeting_form.rb +1 -1
- data/app/forms/decidim/meetings/meeting_form.rb +3 -3
- data/app/helpers/decidim/meetings/admin/application_helper.rb +1 -0
- data/app/helpers/decidim/meetings/application_helper.rb +18 -25
- data/app/helpers/decidim/meetings/directory/application_helper.rb +11 -59
- data/app/helpers/decidim/meetings/map_helper.rb +2 -9
- data/app/helpers/decidim/meetings/meetings_helper.rb +6 -5
- data/app/jobs/decidim/meetings/hide_all_created_by_author_job.rb +13 -0
- data/app/mailers/decidim/meetings/admin/invite_join_meeting_mailer.rb +1 -1
- data/app/mailers/decidim/meetings/registration_mailer.rb +1 -1
- data/app/models/decidim/meetings/meeting.rb +11 -32
- data/app/models/decidim/meetings/question.rb +1 -1
- data/app/packs/entrypoints/decidim_meetings.js +3 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_attended_meetings.svg +42 -1
- data/app/packs/src/decidim/meetings/admin/agendas.js +3 -4
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +12 -4
- data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/poll.component.js +1 -28
- data/app/packs/stylesheets/decidim/meetings/_calendar.scss +47 -0
- data/app/packs/stylesheets/decidim/meetings/_item.scss +177 -0
- data/app/packs/stylesheets/decidim/meetings/_list.scss +58 -0
- data/app/packs/stylesheets/decidim/meetings/_live_event.scss +128 -0
- data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -0
- data/app/permissions/decidim/meetings/permissions.rb +15 -12
- data/app/presenters/decidim/meetings/admin_log/invite_presenter.rb +2 -2
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +6 -2
- data/app/presenters/decidim/meetings/admin_log/questionnaire_presenter.rb +2 -2
- data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/log/resource_presenter.rb +18 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +8 -2
- data/app/services/decidim/meetings/calendar/component_calendar.rb +1 -1
- data/app/services/decidim/meetings/close_meeting_reminder_generator.rb +7 -13
- data/app/services/decidim/meetings/meeting_iframe_embedder.rb +1 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +19 -21
- data/app/views/decidim/meetings/admin/agenda/_agenda_item.html.erb +12 -12
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_child.html.erb +8 -8
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_child_template.html.erb +1 -1
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +3 -3
- data/app/views/decidim/meetings/admin/agenda/_form.html.erb +54 -50
- data/app/views/decidim/meetings/admin/agenda/edit.html.erb +18 -6
- data/app/views/decidim/meetings/admin/agenda/new.html.erb +17 -5
- data/app/views/decidim/meetings/admin/invite_join_meeting_mailer/invite.html.erb +11 -2
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +38 -28
- data/app/views/decidim/meetings/admin/invites/index.html.erb +77 -81
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +26 -28
- data/app/views/decidim/meetings/admin/meeting_closes/edit.html.erb +17 -5
- data/app/views/decidim/meetings/admin/meeting_copies/new.html.erb +17 -6
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +76 -83
- data/app/views/decidim/meetings/admin/meetings/_service.html.erb +14 -10
- data/app/views/decidim/meetings/admin/meetings/_services.html.erb +9 -5
- data/app/views/decidim/meetings/admin/meetings/edit.html.erb +17 -7
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +133 -129
- data/app/views/decidim/meetings/admin/meetings/new.html.erb +16 -6
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +1 -1
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +1 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +17 -32
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +81 -75
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +28 -8
- data/app/views/decidim/meetings/admin/registrations/_form.html.erb +32 -55
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +59 -26
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +15 -20
- data/app/views/decidim/meetings/directory/meetings/index.js.erb +1 -23
- data/app/views/decidim/meetings/layouts/_aside_block.html.erb +8 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +20 -19
- data/app/views/decidim/meetings/live_events/show.html.erb +4 -5
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +3 -10
- data/app/views/decidim/meetings/meeting_closes/edit.html.erb +17 -21
- data/app/views/decidim/meetings/meetings/_actions.html.erb +6 -0
- data/app/views/decidim/meetings/meetings/_add_to_calendar_modal.html.erb +17 -0
- data/app/views/decidim/meetings/meetings/_form.html.erb +26 -34
- data/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +3 -22
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +74 -0
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +28 -26
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +98 -0
- data/app/views/decidim/meetings/meetings/_meeting_minutes.html.erb +23 -36
- data/app/views/decidim/meetings/meetings/edit.html.erb +17 -21
- data/app/views/decidim/meetings/meetings/index.html.erb +15 -33
- data/app/views/decidim/meetings/meetings/index.js.erb +1 -23
- data/app/views/decidim/meetings/meetings/new.html.erb +17 -21
- data/app/views/decidim/meetings/meetings/show.html.erb +8 -167
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +9 -13
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +4 -4
- data/app/views/decidim/meetings/polls/answers/create.js.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_index.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +5 -5
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +9 -11
- data/app/views/decidim/meetings/polls/questions/_question.html.erb +3 -3
- data/app/views/decidim/meetings/polls/questions/index_admin.js.erb +1 -1
- data/app/views/decidim/meetings/shared/_filters.html.erb +20 -0
- data/app/views/decidim/meetings/shared/_index.html.erb +24 -0
- data/app/views/decidim/meetings/shared/_index.js.erb +16 -0
- data/app/views/decidim/meetings/shared/_meetings.html.erb +33 -0
- data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +18 -0
- data/app/views/decidim/meetings/versions/show.html.erb +14 -4
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +13 -15
- data/config/assets.rb +0 -2
- data/config/locales/ar.yml +6 -94
- data/config/locales/bg.yml +0 -673
- data/config/locales/ca.yml +52 -75
- data/config/locales/cs.yml +48 -71
- data/config/locales/de.yml +53 -76
- data/config/locales/el.yml +48 -51
- data/config/locales/en.yml +51 -74
- data/config/locales/es-MX.yml +50 -73
- data/config/locales/es-PY.yml +48 -71
- data/config/locales/es.yml +53 -76
- data/config/locales/eu.yml +53 -76
- data/config/locales/fi-plain.yml +46 -69
- data/config/locales/fi.yml +44 -67
- data/config/locales/fr-CA.yml +43 -69
- data/config/locales/fr.yml +48 -71
- data/config/locales/ga-IE.yml +2 -16
- data/config/locales/gl.yml +5 -63
- data/config/locales/hu.yml +6 -92
- data/config/locales/id-ID.yml +4 -60
- data/config/locales/is-IS.yml +1 -22
- data/config/locales/it.yml +6 -86
- data/config/locales/ja.yml +45 -74
- data/config/locales/lb.yml +6 -67
- data/config/locales/lt.yml +42 -65
- data/config/locales/lv.yml +4 -61
- data/config/locales/nl.yml +4 -92
- data/config/locales/no.yml +4 -80
- data/config/locales/pl.yml +2 -199
- data/config/locales/pt-BR.yml +4 -200
- data/config/locales/pt.yml +5 -85
- data/config/locales/ro-RO.yml +11 -81
- data/config/locales/ru.yml +5 -60
- data/config/locales/sk.yml +4 -61
- data/config/locales/sl.yml +0 -3
- data/config/locales/sr-CS.yml +0 -6
- data/config/locales/sv.yml +14 -94
- data/config/locales/tr-TR.yml +5 -78
- data/config/locales/uk.yml +5 -53
- data/config/locales/zh-CN.yml +3 -70
- data/config/locales/zh-TW.yml +24 -51
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
- data/db/migrate/20230427105701_change_types_and_registration_types_on_meetings.rb +49 -0
- data/lib/decidim/meetings/admin_engine.rb +2 -2
- data/lib/decidim/meetings/component.rb +4 -216
- data/lib/decidim/meetings/content_blocks/registry_manager.rb +17 -0
- data/lib/decidim/meetings/directory_engine.rb +4 -6
- data/lib/decidim/meetings/engine.rb +62 -27
- data/lib/decidim/meetings/meeting_serializer.rb +3 -3
- data/lib/decidim/meetings/seeds.rb +188 -0
- data/lib/decidim/meetings/test/factories.rb +124 -54
- data/lib/decidim/meetings/test/notifications_handling.rb +3 -3
- data/lib/decidim/meetings/test/translated_event.rb +1 -1
- data/lib/decidim/meetings/version.rb +1 -1
- metadata +58 -58
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/elements.erb +0 -16
- data/app/cells/decidim/meetings/content_blocks/highlighted_meetings/heading.erb +0 -1
- data/app/cells/decidim/meetings/content_blocks/upcoming_meetings/show.erb +0 -26
- data/app/cells/decidim/meetings/content_blocks/upcoming_meetings_cell.rb +0 -63
- data/app/cells/decidim/meetings/join_meeting_button/registration_confirm.erb +0 -31
- data/app/cells/decidim/meetings/meeting_highlighted_list_item/show.erb +0 -21
- data/app/cells/decidim/meetings/meeting_highlighted_list_item_cell.rb +0 -10
- data/app/cells/decidim/meetings/meeting_list_item/show.erb +0 -14
- data/app/cells/decidim/meetings/meeting_list_item_cell.rb +0 -44
- data/app/cells/decidim/meetings/meeting_m/address.erb +0 -5
- data/app/cells/decidim/meetings/meeting_m/data.erb +0 -2
- data/app/cells/decidim/meetings/meeting_m/date.erb +0 -8
- data/app/cells/decidim/meetings/meeting_m/footer.erb +0 -9
- data/app/cells/decidim/meetings/meeting_m/multiple_dates.erb +0 -17
- data/app/cells/decidim/meetings/meeting_m/single_date.erb +0 -9
- data/app/cells/decidim/meetings/meeting_m/tags.erb +0 -1
- data/app/cells/decidim/meetings/meeting_m_cell.rb +0 -121
- data/app/cells/decidim/meetings/meeting_s/show.erb +0 -27
- data/app/controllers/concerns/decidim/meetings/filterable.rb +0 -27
- data/app/controllers/decidim/meetings/widgets_controller.rb +0 -30
- data/app/packs/stylesheets/decidim/meetings/_header.scss +0 -52
- data/app/packs/stylesheets/decidim/meetings/_main.scss +0 -178
- data/app/packs/stylesheets/decidim/meetings/_meetings.scss +0 -2
- data/app/queries/decidim/meetings/admin/invites.rb +0 -60
- data/app/views/decidim/meetings/admin/meeting_closes/proposals_picker.html.erb +0 -1
- data/app/views/decidim/meetings/directory/meetings/_filters.html.erb +0 -34
- data/app/views/decidim/meetings/directory/meetings/_meetings.html.erb +0 -26
- data/app/views/decidim/meetings/meeting_closes/proposals_picker.html.erb +0 -1
- data/app/views/decidim/meetings/meetings/_calendar_modal.html.erb +0 -26
- data/app/views/decidim/meetings/meetings/_filters.html.erb +0 -40
- data/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +0 -18
- data/app/views/decidim/meetings/meetings/_meetings.html.erb +0 -48
- data/app/views/decidim/meetings/versions/index.html.erb +0 -8
- data/app/views/decidim/participatory_spaces/_upcoming_meeting_for_card.html.erb +0 -4
- data/config/locales/he-IL.yml +0 -1
- data/decidim-meetings.gemspec +0 -36
- data/lib/decidim/meetings/seeds/city.jpeg +0 -0
data/config/locales/it.yml
CHANGED
@@ -34,17 +34,6 @@ it:
|
|
34
34
|
title: Titolo
|
35
35
|
transparent: Trasparente
|
36
36
|
type_of_meeting: Tipo
|
37
|
-
errors:
|
38
|
-
models:
|
39
|
-
meeting_agenda:
|
40
|
-
attributes:
|
41
|
-
base:
|
42
|
-
too_many_minutes: La durata degli articoli supera la durata della riunione di %{count} minuti
|
43
|
-
too_many_minutes_child: La durata dell'elemento child supera la durata del genitore "%{parent_title}" dell'ordine del giorno di %{count} minuto
|
44
|
-
meeting_registration_invite:
|
45
|
-
attributes:
|
46
|
-
email:
|
47
|
-
already_invited: Questa email è già stata invitata
|
48
37
|
models:
|
49
38
|
decidim/meetings/close_meeting_event: Riunione chiusa
|
50
39
|
decidim/meetings/create_meeting_event: Evento
|
@@ -94,7 +83,6 @@ it:
|
|
94
83
|
success: Riunione duplicata con successo.
|
95
84
|
new:
|
96
85
|
copy: copia
|
97
|
-
select: Seleziona i dati che desideri duplicare
|
98
86
|
title: Riunione duplicata
|
99
87
|
components:
|
100
88
|
meetings:
|
@@ -177,8 +165,6 @@ it:
|
|
177
165
|
description_own: Hai partecipato a %{score} riunioni.
|
178
166
|
name: Riunioni frequentate
|
179
167
|
next_level_in: Partecipa a %{score} altri incontri per raggiungere il livello successivo!
|
180
|
-
unearned_another: Questo utente non ha ancora partecipato a nessuna riunione.
|
181
|
-
unearned_own: Non hai ancora partecipato a nessuna riunione.
|
182
168
|
meetings:
|
183
169
|
actions:
|
184
170
|
agenda: ordine del giorno
|
@@ -193,7 +179,6 @@ it:
|
|
193
179
|
one: 'La riunione non può essere annullata perché ha %{count} proposta ad essa associata:'
|
194
180
|
other: 'La riunione non può essere annullata perché ha %{count} proposte associate:'
|
195
181
|
manage_poll: Gestisci sondaggio
|
196
|
-
new: Nuova riunione
|
197
182
|
preview: Anteprima
|
198
183
|
registrations: Iscrizioni
|
199
184
|
title: Azioni
|
@@ -211,9 +196,6 @@ it:
|
|
211
196
|
down: Giù
|
212
197
|
remove: Rimuovere
|
213
198
|
up: Su
|
214
|
-
create:
|
215
|
-
invalid: C'è stato un problema nel creare questo programma
|
216
|
-
success: Agenda creata con successo
|
217
199
|
edit:
|
218
200
|
title: Modifica agenda
|
219
201
|
update: Aggiornare
|
@@ -225,9 +207,6 @@ it:
|
|
225
207
|
new:
|
226
208
|
create: Creare
|
227
209
|
title: Nuova agenda
|
228
|
-
update:
|
229
|
-
invalid: C'è stato un problema nell'aggiornare questo programma
|
230
|
-
success: Agenda aggiornata con successo
|
231
210
|
exports:
|
232
211
|
answers: Risposte
|
233
212
|
meeting_comments: Commenti
|
@@ -251,36 +230,27 @@ it:
|
|
251
230
|
select_user: Seleziona utente
|
252
231
|
index:
|
253
232
|
filter:
|
254
|
-
|
233
|
+
accepted: Accettato
|
234
|
+
all: Tutti
|
235
|
+
rejected: Respinto
|
255
236
|
sent: Inviato
|
256
|
-
filter_by: Filtra per
|
257
237
|
invite_attendee: Invita il partecipante
|
258
238
|
invites: Inviti
|
259
|
-
|
260
|
-
search: Cerca
|
239
|
+
search: Ricerca
|
261
240
|
meeting_closes:
|
262
241
|
edit:
|
263
242
|
close: Chiudi
|
264
243
|
title: Chiusura meeting
|
265
244
|
meetings:
|
266
|
-
close:
|
267
|
-
invalid: C'è stato un problema durante la chiusura di questo meeting.
|
268
|
-
success: OK, il meeting è stato chiuso.
|
269
245
|
create:
|
270
|
-
invalid: C'è stato un problema durante la creazione di questo meeting.
|
271
246
|
success: Riunione creata con successo. Nota che non è ancora pubblicata, devi pubblicarla manualmente.
|
272
247
|
destroy:
|
273
|
-
invalid:
|
274
|
-
proposals_count:
|
275
|
-
one: La riunione non può essere annullata perché ha %{count} proposta ad essa associata
|
276
|
-
other: La riunione non può essere annullata perché ha %{count} proposte associate
|
277
248
|
success: OK, il meeting è stato cancellato.
|
278
249
|
edit:
|
279
250
|
title: Modifica la riunione
|
280
251
|
update: Modifica
|
281
252
|
form:
|
282
253
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
283
|
-
disclaimer: 'Disclaimer: Utilizzando un sistema di registrazione esterno, sei consapevole che gli organizzatori di %{organization} non sono responsabili per i dati forniti dagli utenti al servizio esterno.'
|
284
254
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
285
255
|
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.'
|
286
256
|
online_meeting_url_help: 'Link: permette ai partecipanti di connettersi direttamente alla tua riunione'
|
@@ -292,9 +262,6 @@ it:
|
|
292
262
|
new:
|
293
263
|
create: Crea
|
294
264
|
title: Crea meeting
|
295
|
-
publish:
|
296
|
-
invalid: Si è verificato un errore durante la pubblicazione di questa riunione
|
297
|
-
success: Riunione pubblicata con successo
|
298
265
|
service:
|
299
266
|
description: Descrizione
|
300
267
|
down: Giù
|
@@ -305,21 +272,9 @@ it:
|
|
305
272
|
services:
|
306
273
|
add_service: Aggiungi servizio
|
307
274
|
services: Servizi
|
308
|
-
unpublish:
|
309
|
-
invalid: Si è verificato un problema durante l'annullamento della pubblicazione di questa assemblea
|
310
|
-
success: Pubblicazione dell'assemblea annullata correttamente
|
311
|
-
update:
|
312
|
-
invalid: C'è stato un problema durante l'aggiornamento di questo meeting.
|
313
|
-
success: OK, il meeting è stato aggiornato.
|
314
275
|
meetings_poll:
|
315
276
|
form:
|
316
277
|
title: Modifica questionario per %{questionnaire_for}
|
317
|
-
update:
|
318
|
-
invalid: Si è verificato un errore durante l'aggiornamento di questo sondaggio della riunione
|
319
|
-
success: Riunione sondaggio aggiornata con successo
|
320
|
-
models:
|
321
|
-
meeting:
|
322
|
-
name: Evento
|
323
278
|
registrations:
|
324
279
|
edit:
|
325
280
|
save: Salva
|
@@ -334,7 +289,6 @@ it:
|
|
334
289
|
registrations_count:
|
335
290
|
one: C'è stata %{count} registrazione.
|
336
291
|
other: Ci sono state %{count} registrazioni.
|
337
|
-
reserved_slots_help: Lasciare a 0 se non si dispone di slot riservati
|
338
292
|
reserved_slots_less_than: Deve essere minore o uguale a %{count}
|
339
293
|
title: Registrazioni
|
340
294
|
update:
|
@@ -357,28 +311,18 @@ it:
|
|
357
311
|
value_types:
|
358
312
|
organizer_presenter:
|
359
313
|
not_found: 'L''organizzatore non è stato trovato nel database (ID: %{id})'
|
360
|
-
application_helper:
|
361
|
-
filter_scope_values:
|
362
|
-
all: Tutte
|
363
314
|
calendar_modal:
|
364
315
|
calendar_url: URL del calendario
|
365
|
-
close_window: Chiudi la finestra
|
366
316
|
export_calendar: Esporta il calendario
|
367
317
|
conference_venues: Sale per conferenze
|
368
|
-
content_blocks:
|
369
|
-
upcoming_meetings:
|
370
|
-
upcoming_meetings: Prossimi incontri
|
371
|
-
view_all_meetings: Guarda tutto
|
372
318
|
directory:
|
373
319
|
meetings:
|
374
320
|
index:
|
375
321
|
meetings: Incontri
|
376
322
|
space_type: Spazio partecipativo
|
377
|
-
last_activity:
|
378
|
-
meeting_updated_at_html: "<span>Dibattito aggiornato su %{link}</span>"
|
379
|
-
new_meeting_at_html: "<span>Nuovo incontro al %{link}</span>"
|
380
323
|
layouts:
|
381
324
|
live_event:
|
325
|
+
administrate: Amministra
|
382
326
|
close: chiudi
|
383
327
|
questions: Domande
|
384
328
|
mailer:
|
@@ -388,8 +332,6 @@ it:
|
|
388
332
|
registration_mailer:
|
389
333
|
confirmation:
|
390
334
|
subject: La tua registrazione alla riunione è stata confermata
|
391
|
-
meeting:
|
392
|
-
not_allowed: Non sei autorizzato a visualizzare questo incontro
|
393
335
|
meeting_closes:
|
394
336
|
edit:
|
395
337
|
back: Indietro
|
@@ -399,7 +341,6 @@ it:
|
|
399
341
|
calendar_modal:
|
400
342
|
add_to_calendar: Aggiungi al calendario
|
401
343
|
apple: Aggiungi al calendario Apple
|
402
|
-
close_window: Chiudi finestra
|
403
344
|
full_details_html: Per ulteriori dettagli vai a %{link}
|
404
345
|
google: Aggiungi al calendario di Google
|
405
346
|
outlook: Aggiungi al calendario di Outlook
|
@@ -429,23 +370,16 @@ it:
|
|
429
370
|
all: Tutte
|
430
371
|
official: Ufficiale
|
431
372
|
participants: Utenti
|
432
|
-
scope: Visibilità
|
433
373
|
search: Cerca
|
434
374
|
type: Tipo
|
435
375
|
type_values:
|
436
376
|
all: Tutti
|
437
377
|
in_person: Faccia a faccia
|
438
378
|
online: Online
|
439
|
-
filters_small_view:
|
440
|
-
close_modal: Chiudi modalità
|
441
|
-
filter: Filtra
|
442
|
-
filter_by: Filtra per
|
443
|
-
unfold: Espandi
|
444
379
|
form:
|
445
380
|
address_help: 'Indirizzo: usato da Geocoder per trovare la posizione'
|
446
381
|
available_slots_help: Lasciare a 0 se disponi di slot illimitati
|
447
382
|
create_as: Crea riunione come
|
448
|
-
disclaimer: 'Disclaimer: Utilizzando un sistema di registrazione esterno, sei consapevole che gli organizzatori di %{organization} non sono responsabili per i dati forniti dagli utenti al servizio esterno.'
|
449
383
|
location_help: 'Posizione: messaggio diretto agli utenti che riporta il luogo dell''incontro'
|
450
384
|
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.'
|
451
385
|
online_meeting_url_help: 'Link: permette ai partecipanti di connettersi direttamente alla tua riunione'
|
@@ -455,10 +389,7 @@ it:
|
|
455
389
|
select_a_registration_type: Seleziona un tipo di registrazione
|
456
390
|
index:
|
457
391
|
new_meeting: Nuova riunione
|
458
|
-
meeting_minutes:
|
459
|
-
related_information: Informazioni correlate
|
460
392
|
meetings:
|
461
|
-
no_meetings_warning: Nessun meeting corrisponde ai tuoi criteri di ricerca oppure non vi è nessun meeting in programma.
|
462
393
|
upcoming_meetings_warning: Attualmente non vi sono meeting in programma, ma qui puoi trovare elencati tutti i meeting effettuati in passato.
|
463
394
|
new:
|
464
395
|
back: Indietro
|
@@ -469,11 +400,8 @@ it:
|
|
469
400
|
confirm: Conferma
|
470
401
|
show:
|
471
402
|
attendees: Conteggio dei partecipanti
|
472
|
-
back: Torna alla lista
|
473
|
-
close_meeting: Chiusura meeting
|
474
403
|
contributions: Conteggio dei contributi
|
475
|
-
|
476
|
-
edit_meeting: Modifica la riunione
|
404
|
+
join: Partecipa alla riunione
|
477
405
|
leave: Annulla la tua registrazione
|
478
406
|
leave_confirmation: Sei sicuro di voler annullare la tua registrazione per questa riunione?
|
479
407
|
link_available_soon: Link disponibile a breve
|
@@ -490,13 +418,10 @@ it:
|
|
490
418
|
remaining_slots:
|
491
419
|
one: "%{count} slot rimanenti"
|
492
420
|
other: "%{count} slot rimanenti"
|
493
|
-
view: Visualizza
|
494
421
|
visit_finished: Visualizza la riunione passata
|
495
422
|
update:
|
496
423
|
invalid: Si è verificato un errore durante l'aggiornamento della riunione.
|
497
424
|
success: Hai aggiornato la riunione con successo.
|
498
|
-
meetings_map:
|
499
|
-
view_meeting: Guarda la riunione
|
500
425
|
models:
|
501
426
|
invite:
|
502
427
|
fields:
|
@@ -553,7 +478,6 @@ it:
|
|
553
478
|
registrations:
|
554
479
|
create:
|
555
480
|
invalid: C'è stato un problema a partecipare a questa riunione.
|
556
|
-
success: L'iscrizione all'evento è stata registrata con successo.
|
557
481
|
decline_invitation:
|
558
482
|
invalid: C'è stato un problema a rifiutare l'invito.
|
559
483
|
success: Hai rifiutato l'invito con successo.
|
@@ -566,8 +490,6 @@ it:
|
|
566
490
|
types:
|
567
491
|
private_meeting: Incontro privato
|
568
492
|
transparent: Trasparente
|
569
|
-
versions:
|
570
|
-
back_to_resource: Torna alla riunione
|
571
493
|
metrics:
|
572
494
|
meetings:
|
573
495
|
description: Numero di riunioni create
|
@@ -578,8 +500,6 @@ it:
|
|
578
500
|
past_meetings: Incontri passati
|
579
501
|
see_all: Vedi tutto (%{count})
|
580
502
|
upcoming_meetings: Prossimi incontri
|
581
|
-
upcoming_meeting_for_card:
|
582
|
-
upcoming_meeting: Prossimo incontro
|
583
503
|
resource_links:
|
584
504
|
meetings_through_proposals:
|
585
505
|
meeting_result: 'Risultati correlati:'
|
data/config/locales/ja.yml
CHANGED
@@ -21,6 +21,7 @@ ja:
|
|
21
21
|
description: 説明
|
22
22
|
end_time: 終了時間
|
23
23
|
id: ID
|
24
|
+
iframe_access_level: iframeアクセスレベル:
|
24
25
|
iframe_embed_type: Iframe 埋め込みタイプ
|
25
26
|
location: 場所
|
26
27
|
location_hints: 位置情報のヒント
|
@@ -56,18 +57,18 @@ ja:
|
|
56
57
|
meeting:
|
57
58
|
attributes:
|
58
59
|
iframe_embed_type:
|
59
|
-
not_embeddable: このURL
|
60
|
+
not_embeddable: このURLは、ミーティングやライブイベントのページに埋め込むことはできません。
|
60
61
|
online_meeting_url:
|
61
62
|
url_format: 有効な URL でなければなりません
|
62
63
|
meeting_agenda:
|
63
64
|
attributes:
|
64
65
|
base:
|
65
|
-
too_many_minutes:
|
66
|
-
too_many_minutes_child:
|
66
|
+
too_many_minutes: この項目の時間は、ミーティングの時間を%{count} 分超過しています。
|
67
|
+
too_many_minutes_child: アイテムの子要素の時間は、アジェンダ「%{parent_title}」の親要素の時間を%{count} 分超過しています。
|
67
68
|
meeting_registration_invite:
|
68
69
|
attributes:
|
69
70
|
email:
|
70
|
-
already_invited:
|
71
|
+
already_invited: このメールアカウントは既に招待されています。
|
71
72
|
models:
|
72
73
|
decidim/meetings/close_meeting_event: ミーティングは終了しました
|
73
74
|
decidim/meetings/create_meeting_event: ミーティング
|
@@ -119,7 +120,6 @@ ja:
|
|
119
120
|
success: ミーティングを複製しました。
|
120
121
|
new:
|
121
122
|
copy: コピー
|
122
|
-
select: 複製したいデータを選択してください
|
123
123
|
title: ミーティングを複製
|
124
124
|
components:
|
125
125
|
meetings:
|
@@ -194,7 +194,7 @@ ja:
|
|
194
194
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> のミーティングは48時間以内に開始されます.
|
195
195
|
forms:
|
196
196
|
meetings:
|
197
|
-
attendees_count_help_text:
|
197
|
+
attendees_count_help_text: 対面、オンライン、ハイブリッドのどの形態でも、ミーティングの参加者の総数を含めることを忘れないでください。
|
198
198
|
gamification:
|
199
199
|
badges:
|
200
200
|
attended_meetings:
|
@@ -205,8 +205,8 @@ ja:
|
|
205
205
|
description_own: '%{score} 件のミーティングに出席しました.'
|
206
206
|
name: 出席したミーティング
|
207
207
|
next_level_in: さらに %{score} 件のミーティングに参加して、次のレベルに到達しましょう!
|
208
|
-
unearned_another:
|
209
|
-
unearned_own:
|
208
|
+
unearned_another: この参加者はまだどのミーティングにも出席していません.
|
209
|
+
unearned_own: まだミーティングに出席していません.
|
210
210
|
meetings:
|
211
211
|
actions:
|
212
212
|
agenda: 予定
|
@@ -220,7 +220,7 @@ ja:
|
|
220
220
|
proposals_count:
|
221
221
|
other: '%{count} 件の提案が関連付けられているため、ミーティングを削除できません:'
|
222
222
|
manage_poll: アンケートの管理
|
223
|
-
|
223
|
+
new_meeting: 新しいミーティング
|
224
224
|
preview: プレビュー
|
225
225
|
registrations: 登録
|
226
226
|
title: アクション
|
@@ -239,8 +239,8 @@ ja:
|
|
239
239
|
remove: 削除
|
240
240
|
up: 上へ
|
241
241
|
create:
|
242
|
-
invalid:
|
243
|
-
success:
|
242
|
+
invalid: このアジェンダを作成する際に問題がありました。
|
243
|
+
success: アジェンダが正常に作成されました。
|
244
244
|
edit:
|
245
245
|
title: アジェンダを編集
|
246
246
|
update: 更新
|
@@ -253,8 +253,8 @@ ja:
|
|
253
253
|
create: 作成
|
254
254
|
title: 新しいアジェンダの作成
|
255
255
|
update:
|
256
|
-
invalid:
|
257
|
-
success:
|
256
|
+
invalid: アジェンダの更新に問題がありました。
|
257
|
+
success: アジェンダが正常に更新されました。
|
258
258
|
exports:
|
259
259
|
answers: 回答
|
260
260
|
meeting_comments: コメント
|
@@ -280,9 +280,8 @@ ja:
|
|
280
280
|
filter:
|
281
281
|
accepted: 承認済み
|
282
282
|
all: すべて
|
283
|
-
rejected:
|
283
|
+
rejected: 拒否
|
284
284
|
sent: 送信済み
|
285
|
-
filter_by: フィルター
|
286
285
|
invite_attendee: 参加者を招待
|
287
286
|
invites: 招待
|
288
287
|
registrations_disabled: 登録が無効になっているため、参加者を招待することはできません。
|
@@ -293,22 +292,22 @@ ja:
|
|
293
292
|
title: ミーティングを閉じる
|
294
293
|
meetings:
|
295
294
|
close:
|
296
|
-
invalid:
|
297
|
-
success:
|
295
|
+
invalid: このミーティングを終了する際に問題が発生しました。
|
296
|
+
success: ミーティングは正常に終了しました。
|
298
297
|
create:
|
299
|
-
invalid:
|
298
|
+
invalid: このミーティングの作成に問題がありました.
|
300
299
|
success: ミーティングが正常に作成されました.これはまだ公開されていません.手動で公開する必要があります.
|
301
300
|
destroy:
|
302
301
|
invalid:
|
303
302
|
proposals_count:
|
304
|
-
other: '%{count}
|
303
|
+
other: '%{count} 件の提案が関連付けられているため、ミーティングを破壊できません。'
|
305
304
|
success: ミーティングを削除しました
|
306
305
|
edit:
|
307
306
|
title: ミーティングを編集
|
308
307
|
update: 更新
|
309
308
|
form:
|
310
309
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
311
|
-
disclaimer: '免責事項:
|
310
|
+
disclaimer: '免責事項: 外部の登録システムを使用する場合、ユーザーが外部サービスに提供したデータについて%{organization} の主催者が責任を負わないことをあらかじめご了承ください。'
|
312
311
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
313
312
|
location_hints_help: '位置情報のヒント:追加情報。 例: 対面ミーティングでの建物のフロア、またはアクセス制限のあるオンラインミーティングでのミーティングパスワード。'
|
314
313
|
online_meeting_url_help: 'リンク: 参加者があなたのミーティングに直接接続できるようにします'
|
@@ -316,15 +315,14 @@ ja:
|
|
316
315
|
select_a_meeting_type: ミーティング種別を選択してください
|
317
316
|
select_a_registration_type: 登録種別を選択してください
|
318
317
|
select_an_iframe_access_level: Iframeアクセスレベルを選択してください
|
319
|
-
show_embedded_iframe_help: 'ミーティングまたは配信イベントに埋め込めるサービスは以下のドメインに限定されています: %{domains}'
|
320
318
|
index:
|
321
319
|
title: ミーティング
|
322
320
|
new:
|
323
321
|
create: 作成
|
324
322
|
title: ミーティングを作成
|
325
323
|
publish:
|
326
|
-
invalid:
|
327
|
-
success:
|
324
|
+
invalid: このミーティングを公開する際に問題が発生しました。
|
325
|
+
success: ミーティングを公開しました。
|
328
326
|
service:
|
329
327
|
description: 説明
|
330
328
|
down: 下
|
@@ -336,20 +334,17 @@ ja:
|
|
336
334
|
add_service: サービスを追加
|
337
335
|
services: サービス
|
338
336
|
unpublish:
|
339
|
-
invalid:
|
340
|
-
success:
|
337
|
+
invalid: このミーティングを非公開にする際に問題が発生しました。
|
338
|
+
success: ミーティングを非公開にしました。
|
341
339
|
update:
|
342
|
-
invalid:
|
343
|
-
success:
|
340
|
+
invalid: このミーティングの更新に問題がありました。
|
341
|
+
success: ミーティングを更新しました。
|
344
342
|
meetings_poll:
|
345
343
|
form:
|
346
344
|
title: '%{questionnaire_for} のアンケートを編集'
|
347
345
|
update:
|
348
|
-
invalid:
|
349
|
-
success:
|
350
|
-
models:
|
351
|
-
meeting:
|
352
|
-
name: ミーティング
|
346
|
+
invalid: このミーティングの投票の更新に問題がありました.
|
347
|
+
success: ミーティングの投票を更新しました。
|
353
348
|
registrations:
|
354
349
|
edit:
|
355
350
|
save: 保存
|
@@ -363,7 +358,7 @@ ja:
|
|
363
358
|
registration_form: 登録フォーム
|
364
359
|
registrations_count:
|
365
360
|
other: '%{count} 件の登録がありました。'
|
366
|
-
reserved_slots_help: 予約スロットがない場合は0
|
361
|
+
reserved_slots_help: 予約スロットがない場合は0にしておいてください。
|
367
362
|
reserved_slots_less_than: '%{count} 以下にしてください'
|
368
363
|
title: 登録
|
369
364
|
update:
|
@@ -393,19 +388,13 @@ ja:
|
|
393
388
|
all: すべて
|
394
389
|
filter_meeting_space_values:
|
395
390
|
all: すべて
|
396
|
-
filter_scope_values:
|
397
|
-
all: すべて
|
398
|
-
calendar:
|
399
|
-
meeting_to_event:
|
400
|
-
read_more: このミーティングについてもっと読む
|
401
391
|
calendar_modal:
|
402
392
|
calendar_url: カレンダー URL
|
403
|
-
close_window: ウィンドウを閉じる
|
404
393
|
copy_calendar_url: コピー
|
405
394
|
copy_calendar_url_clarification: カレンダーURLをクリップボードにコピー
|
406
395
|
copy_calendar_url_copied: コピーしました
|
407
396
|
copy_calendar_url_description: カレンダーアプリケーションまたはプロバイダーで公開されたすべてのミーティングを見ることができます。 「URLから新しいカレンダーを追加」オプションを使用して、このURLをカレンダーにコピーして貼り付けます。
|
408
|
-
copy_calendar_url_explanation:
|
397
|
+
copy_calendar_url_explanation: アクティブなフィルターがあるため、ミーティングの一部のみをエクスポートしていることに注意してください。すべてをエクスポートする場合は、最初にすべてのフィルターをリセットしてください。
|
409
398
|
copy_calendar_url_message: URLをクリップボードにコピーしました。
|
410
399
|
export_calendar: カレンダーをエクスポート
|
411
400
|
close_meeting_reminder_mailer:
|
@@ -418,8 +407,6 @@ ja:
|
|
418
407
|
content_blocks:
|
419
408
|
upcoming_meetings:
|
420
409
|
name: これからのミーティング
|
421
|
-
upcoming_meetings: 今後のミーティング
|
422
|
-
view_all_meetings: すべて表示
|
423
410
|
directory:
|
424
411
|
meetings:
|
425
412
|
index:
|
@@ -432,11 +419,11 @@ ja:
|
|
432
419
|
iframe_embed_type:
|
433
420
|
embed_in_meeting_page: ミーティングページに埋め込む
|
434
421
|
none: なし
|
435
|
-
open_in_live_event_page:
|
422
|
+
open_in_live_event_page: ライブイベントページで開く (オプションの投票付き)
|
436
423
|
open_in_new_tab: URLを新しいタブで開く
|
437
424
|
last_activity:
|
438
|
-
|
439
|
-
|
425
|
+
meeting_updated: '更新されたミーティング:'
|
426
|
+
new_meeting: '新しいミーティング:'
|
440
427
|
layouts:
|
441
428
|
live_event:
|
442
429
|
administrate: 管理
|
@@ -450,7 +437,7 @@ ja:
|
|
450
437
|
confirmation:
|
451
438
|
subject: ミーティングの登録が確認されました
|
452
439
|
meeting:
|
453
|
-
not_allowed:
|
440
|
+
not_allowed: このミーティングを表示する権限がありません.
|
454
441
|
meeting_closes:
|
455
442
|
edit:
|
456
443
|
back: 戻る
|
@@ -460,7 +447,6 @@ ja:
|
|
460
447
|
calendar_modal:
|
461
448
|
add_to_calendar: カレンダーに追加
|
462
449
|
apple: Apple カレンダーに追加
|
463
|
-
close_window: ウィンドウを閉じる
|
464
450
|
full_details_html: 詳細は %{link} をご覧ください
|
465
451
|
google: Google カレンダーに追加
|
466
452
|
outlook: Outlookカレンダーに追加
|
@@ -489,8 +475,7 @@ ja:
|
|
489
475
|
all: すべて
|
490
476
|
official: 事務局
|
491
477
|
participants: 参加者
|
492
|
-
|
493
|
-
scope: スコープ
|
478
|
+
user_group: グループ
|
494
479
|
search: 検索
|
495
480
|
type: 種別
|
496
481
|
type_values:
|
@@ -498,16 +483,11 @@ ja:
|
|
498
483
|
hybrid: ハイブリッド
|
499
484
|
in_person: 対面
|
500
485
|
online: オンライン
|
501
|
-
filters_small_view:
|
502
|
-
close_modal: モーダルを閉じる
|
503
|
-
filter: フィルター
|
504
|
-
filter_by: フィルター
|
505
|
-
unfold: 展開する
|
506
486
|
form:
|
507
487
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
508
488
|
available_slots_help: 無制限の場合は0のままにしてください
|
509
489
|
create_as: 次のユーザとしてミーティングを作成:
|
510
|
-
disclaimer: '免責事項:
|
490
|
+
disclaimer: '免責事項: 外部の登録システムを使用する場合、ユーザーが外部サービスに提供したデータについて%{organization} の主催者が責任を負わないことをあらかじめご了承ください。'
|
511
491
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
512
492
|
location_hints_help: '位置情報のヒント:追加情報。 例: 対面ミーティングでの建物のフロア、またはアクセス制限のあるオンラインミーティングでのミーティングパスワード。'
|
513
493
|
online_meeting_url_help: 'リンク: 参加者があなたのミーティングに直接接続できるようにします'
|
@@ -516,17 +496,19 @@ ja:
|
|
516
496
|
select_a_meeting_type: ミーティング種別を選択してください
|
517
497
|
select_a_registration_type: 登録種別を選択してください
|
518
498
|
select_an_iframe_access_level: iframeアクセスレベルを選択してください
|
519
|
-
show_embedded_iframe_help: 'ミーティングまたは配信イベントに埋め込めるサービスは以下のドメインに限定されています: %{domains}'
|
520
499
|
index:
|
521
500
|
click_here: すべてのミーティングを見る
|
522
501
|
new_meeting: 新しいミーティング
|
523
502
|
see_all: すべてのミーティングを見る
|
524
|
-
see_all_withdrawn:
|
503
|
+
see_all_withdrawn: 撤回されたすべてのミーティングを見る
|
525
504
|
text_banner: 作成者が取り消したミーティングの一覧を表示しています. %{go_back_link}
|
526
|
-
|
527
|
-
|
505
|
+
meeting:
|
506
|
+
close_meeting: ミーティングを終了する
|
507
|
+
edit_close_meeting: ミーティングレポートを編集
|
508
|
+
edit_meeting: ミーティングを編集
|
509
|
+
join_meeting: ミーティングに参加
|
528
510
|
meetings:
|
529
|
-
no_meetings_warning:
|
511
|
+
no_meetings_warning: 検索条件に一致するミーティングがないか,予定されているミーティングがありません.
|
530
512
|
upcoming_meetings_warning: 現在、スケジュールされたミーティングはありませんが、ここではリストされた過去のミーティングをすべて見つけることができます。
|
531
513
|
new:
|
532
514
|
back: 戻る
|
@@ -537,12 +519,7 @@ ja:
|
|
537
519
|
confirm: 確認する
|
538
520
|
show:
|
539
521
|
attendees: 出席者数
|
540
|
-
back: リストに戻る
|
541
|
-
close_meeting: ミーティングを閉じる
|
542
522
|
contributions: コントリビューション数
|
543
|
-
date: 日付
|
544
|
-
edit_close_meeting: ミーティングレポートを編集
|
545
|
-
edit_meeting: ミーティングを編集
|
546
523
|
join: ミーティングに参加
|
547
524
|
leave: 登録をキャンセルする
|
548
525
|
leave_confirmation: このミーティングの登録をキャンセルしてもよろしいですか?
|
@@ -559,7 +536,6 @@ ja:
|
|
559
536
|
validation_pending: 保留中
|
560
537
|
remaining_slots:
|
561
538
|
other: "残り%{count} スロット"
|
562
|
-
view: 表示
|
563
539
|
visit_finished: 過去のミーティングを表示
|
564
540
|
withdraw_btn_hint: 気が変わった場合はミーティングを取り消せます.ミーティングは削除されません.取り消されたミーティングのリストに表示されます.
|
565
541
|
withdraw_confirmation_html: このミーティングを取り消してもよろしいですか?<br><br><strong>この操作はキャンセルできません!</strong>
|
@@ -567,8 +543,6 @@ ja:
|
|
567
543
|
update:
|
568
544
|
invalid: ミーティングの更新に問題がありました。
|
569
545
|
success: ミーティングを更新しました.
|
570
|
-
meetings_map:
|
571
|
-
view_meeting: ミーティングを表示
|
572
546
|
models:
|
573
547
|
invite:
|
574
548
|
fields:
|
@@ -610,6 +584,7 @@ ja:
|
|
610
584
|
question_replied: 質問に回答しました
|
611
585
|
reply_question: 質問に返信する
|
612
586
|
public_participants_list:
|
587
|
+
attending_organizations: 組織
|
613
588
|
attending_participants: 参加する
|
614
589
|
hidden_participants_count:
|
615
590
|
other: 他 %{count} 人
|
@@ -641,11 +616,9 @@ ja:
|
|
641
616
|
private_meeting: プライベートミーティング
|
642
617
|
transparent: 透明性
|
643
618
|
withdraw: 取り消し
|
644
|
-
versions:
|
645
|
-
back_to_resource: ミーティングに戻る
|
646
619
|
withdraw:
|
647
|
-
error:
|
648
|
-
success:
|
620
|
+
error: ミーティングを取り上げる際にエラーが発生しました。
|
621
|
+
success: ミーティングは正常に取り下げられました。
|
649
622
|
metrics:
|
650
623
|
meetings:
|
651
624
|
description: 作成されたミーティング数
|
@@ -656,8 +629,6 @@ ja:
|
|
656
629
|
past_meetings: 過去のミーティング
|
657
630
|
see_all: すべてのミーティングを見る (%{count})
|
658
631
|
upcoming_meetings: 今後のミーティング
|
659
|
-
upcoming_meeting_for_card:
|
660
|
-
upcoming_meeting: 今後のミーティング
|
661
632
|
resource_links:
|
662
633
|
meetings_through_proposals:
|
663
634
|
meeting_result: '関連する結果:'
|