decidim-meetings 0.29.3 → 0.30.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 +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +3 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +1 -1
- data/app/cells/decidim/meetings/dates_and_map/show.erb +1 -1
- data/app/cells/decidim/meetings/highlighted_meetings_for_component/show.erb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +5 -2
- data/app/cells/decidim/meetings/meeting_card_metadata_cell.rb +3 -3
- data/app/cells/decidim/meetings/meeting_l_cell.rb +12 -0
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +1 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +8 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +8 -2
- data/app/commands/decidim/meetings/create_meeting.rb +2 -2
- data/app/commands/decidim/meetings/update_meeting.rb +2 -3
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +9 -5
- data/app/controllers/concerns/decidim/meetings/component_filterable.rb +1 -2
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +14 -22
- data/app/controllers/decidim/meetings/admin/registration_form_controller.rb +8 -0
- data/app/controllers/decidim/meetings/directory/meetings_controller.rb +2 -4
- data/app/controllers/decidim/meetings/meetings_controller.rb +40 -6
- data/app/forms/decidim/meetings/admin/meeting_form.rb +16 -30
- data/app/forms/decidim/meetings/base_meeting_form.rb +6 -0
- data/app/forms/decidim/meetings/meeting_form.rb +2 -30
- data/app/helpers/decidim/meetings/admin/application_helper.rb +11 -1
- data/app/helpers/decidim/meetings/application_helper.rb +35 -1
- data/app/helpers/decidim/meetings/directory/application_helper.rb +9 -48
- data/app/helpers/decidim/meetings/meetings_helper.rb +5 -0
- data/app/models/decidim/meetings/invite.rb +10 -0
- data/app/models/decidim/meetings/meeting.rb +28 -1
- data/app/models/decidim/meetings/meeting_link.rb +25 -0
- data/app/packs/entrypoints/decidim_meetings_admin.js +1 -0
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +77 -0
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +8 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +1 -1
- data/app/permissions/decidim/meetings/permissions.rb +13 -9
- data/app/presenters/decidim/meetings/admin_log/meeting_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/meeting_presenter.rb +13 -1
- data/app/queries/decidim/meetings/filtered_meetings.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +2 -2
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +6 -6
- data/app/serializers/decidim/meetings/base_download_your_data_serializer.rb +32 -0
- data/app/serializers/decidim/meetings/download_your_data_invite_serializer.rb +6 -26
- data/app/serializers/decidim/meetings/download_your_data_meeting_serializer.rb +15 -0
- data/app/serializers/decidim/meetings/download_your_data_registration_serializer.rb +6 -24
- data/app/views/decidim/meetings/admin/meetings/_component.html.erb +15 -0
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +7 -9
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +53 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +42 -0
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +70 -0
- data/app/views/decidim/meetings/admin/meetings/_meetings-thead.html.erb +26 -0
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +16 -142
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +23 -0
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +44 -0
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +1 -0
- data/app/views/decidim/meetings/directory/meetings/index.html.erb +1 -2
- data/app/views/decidim/meetings/live_events/show.html.erb +5 -5
- data/app/views/decidim/meetings/meetings/_form.html.erb +4 -8
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +51 -26
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +34 -0
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +20 -59
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +2 -5
- data/app/views/decidim/meetings/meetings/_schema_org_event_meeting.html.erb +3 -0
- data/app/views/decidim/meetings/meetings/index.html.erb +1 -2
- data/app/views/decidim/meetings/meetings/new.html.erb +0 -1
- data/app/views/decidim/meetings/meetings/show.html.erb +5 -5
- data/app/views/decidim/meetings/polls/answers/index.html.erb +5 -5
- data/app/views/decidim/meetings/shared/_filters.html.erb +1 -13
- data/app/views/decidim/meetings/shared/_index.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_index.js.erb +3 -2
- data/app/views/decidim/meetings/shared/_meetings.html.erb +1 -1
- data/app/views/decidim/meetings/shared/_meetings_aside.html.erb +2 -2
- data/app/views/decidim/participatory_spaces/_conference_venues.html.erb +1 -1
- data/config/locales/ar.yml +23 -17
- data/config/locales/bg.yml +16 -25
- data/config/locales/ca.yml +140 -30
- data/config/locales/cs.yml +145 -28
- data/config/locales/de.yml +152 -74
- data/config/locales/el.yml +7 -22
- data/config/locales/en.yml +132 -22
- data/config/locales/es-MX.yml +144 -34
- data/config/locales/es-PY.yml +145 -35
- data/config/locales/es.yml +145 -35
- data/config/locales/eu.yml +159 -49
- data/config/locales/fi-plain.yml +142 -27
- data/config/locales/fi.yml +142 -27
- data/config/locales/fr-CA.yml +79 -27
- data/config/locales/fr.yml +79 -27
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +6 -12
- data/config/locales/hu.yml +8 -20
- data/config/locales/id-ID.yml +6 -13
- data/config/locales/is-IS.yml +0 -15
- data/config/locales/it.yml +7 -19
- data/config/locales/ja.yml +94 -26
- data/config/locales/lb.yml +6 -14
- data/config/locales/lt.yml +7 -23
- data/config/locales/lv.yml +6 -13
- data/config/locales/nl.yml +8 -18
- data/config/locales/no.yml +6 -16
- data/config/locales/pl.yml +16 -21
- data/config/locales/pt-BR.yml +7 -21
- data/config/locales/pt.yml +7 -17
- data/config/locales/ro-RO.yml +32 -19
- data/config/locales/ru.yml +6 -13
- data/config/locales/sk.yml +7 -14
- data/config/locales/sv.yml +82 -28
- data/config/locales/tr-TR.yml +7 -19
- data/config/locales/uk.yml +5 -15
- data/config/locales/zh-CN.yml +7 -18
- data/config/locales/zh-TW.yml +7 -21
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +1 -1
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +1 -1
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +1 -1
- data/db/migrate/20240712104245_create_decidim_meetings_meeting_link.rb +12 -0
- data/db/migrate/20240828103603_add_deleted_at_to_decidim_meetings_meetings.rb +8 -0
- data/decidim-meetings.gemspec +1 -1
- data/lib/decidim/api/agenda_item_type.rb +6 -7
- data/lib/decidim/api/agenda_type.rb +3 -4
- data/lib/decidim/api/meeting_type.rb +33 -41
- data/lib/decidim/api/meetings_type.rb +4 -5
- data/lib/decidim/api/service_type.rb +1 -1
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +14 -4
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +13 -7
- data/lib/decidim/meetings/engine.rb +1 -6
- data/lib/decidim/meetings/meeting_serializer.rb +70 -59
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +151 -0
- data/lib/decidim/meetings/seeds.rb +2 -4
- data/lib/decidim/meetings/test/factories.rb +8 -0
- data/lib/decidim/meetings/test/translated_event.rb +3 -3
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +1 -0
- metadata +32 -22
- data/app/cells/decidim/meetings/meetings_map/show.erb +0 -16
- data/app/cells/decidim/meetings/meetings_map_cell.rb +0 -32
- data/app/commands/decidim/meetings/admin/destroy_meeting.rb +0 -21
- data/app/helpers/decidim/meetings/map_helper.rb +0 -21
- data/app/views/decidim/meetings/meetings/_actions.html.erb +0 -6
- data/config/locales/ca-IT.yml +0 -693
data/config/locales/it.yml
CHANGED
@@ -56,8 +56,6 @@ it:
|
|
56
56
|
admin:
|
57
57
|
filters:
|
58
58
|
meetings:
|
59
|
-
category_id_eq:
|
60
|
-
label: Categoria
|
61
59
|
closed_at_present:
|
62
60
|
label: Stato
|
63
61
|
values:
|
@@ -68,8 +66,6 @@ it:
|
|
68
66
|
values:
|
69
67
|
'false': Conclusi
|
70
68
|
'true': Prossimi
|
71
|
-
scope_id_eq:
|
72
|
-
label: Visibilità
|
73
69
|
with_any_origin:
|
74
70
|
values:
|
75
71
|
user_group: Gruppi di utenti
|
@@ -101,8 +97,6 @@ it:
|
|
101
97
|
maps_enabled: Mappe abilitate
|
102
98
|
registration_code_enabled: Codice di registrazione abilitato
|
103
99
|
resources_permissions_enabled: Le autorizzazioni delle azioni possono essere impostate per ogni riunione
|
104
|
-
scope_id: Visibilità
|
105
|
-
scopes_enabled: Ambiti abilitati
|
106
100
|
terms_and_conditions_url_for_meeting_creators: Termini e condizioni URL per i creatori di riunione
|
107
101
|
step:
|
108
102
|
announcement: Annuncio
|
@@ -159,7 +153,7 @@ it:
|
|
159
153
|
badges:
|
160
154
|
attended_meetings:
|
161
155
|
conditions:
|
162
|
-
|
156
|
+
- Registrati agli incontri a cui vuoi partecipare
|
163
157
|
description: Questo badge è concesso quando si partecipano a numerosi incontri in presenza.
|
164
158
|
description_another: Questo utente ha partecipato a %{score} riunioni.
|
165
159
|
description_own: Hai partecipato a %{score} riunioni.
|
@@ -171,7 +165,6 @@ it:
|
|
171
165
|
attachment_collections: Cartelle
|
172
166
|
attachments: Allegati
|
173
167
|
close: Chiuso
|
174
|
-
destroy: Cancella
|
175
168
|
edit: Modifica
|
176
169
|
invalid_destroy:
|
177
170
|
proposals_count:
|
@@ -237,8 +230,6 @@ it:
|
|
237
230
|
meetings:
|
238
231
|
create:
|
239
232
|
success: Riunione creata con successo. Nota che non è ancora pubblicata, devi pubblicarla manualmente.
|
240
|
-
destroy:
|
241
|
-
success: OK, il meeting è stato cancellato.
|
242
233
|
edit:
|
243
234
|
title: Modifica la riunione
|
244
235
|
update: Modifica
|
@@ -271,6 +262,8 @@ it:
|
|
271
262
|
registrations:
|
272
263
|
edit:
|
273
264
|
save: Salva
|
265
|
+
validate: Convalidare
|
266
|
+
validate_registration_code: Convalida il codice di registrazione
|
274
267
|
form:
|
275
268
|
available_slots_help: Lasciare a 0 se disponi di slot illimitati.
|
276
269
|
invites: Inviti
|
@@ -285,6 +278,9 @@ it:
|
|
285
278
|
update:
|
286
279
|
invalid: Si è verificato un problema salvando le impostazioni di registrazione.
|
287
280
|
success: Le impostazioni di registrazione delle riunioni sono state salvate correttamente.
|
281
|
+
validate_registration_code:
|
282
|
+
invalid: Questo codice di registrazione non è valido.
|
283
|
+
success: Codice di registrazione validato con successo.
|
288
284
|
admin_log:
|
289
285
|
invite:
|
290
286
|
create: "%{user_name} invitato %{attendee_name} a partecipare a %{resource_name} riunioni nello spazio %{space_name}"
|
@@ -299,9 +295,6 @@ it:
|
|
299
295
|
value_types:
|
300
296
|
organizer_presenter:
|
301
297
|
not_found: 'L''organizzatore non è stato trovato nel database (ID: %{id})'
|
302
|
-
application_helper:
|
303
|
-
filter_category_values:
|
304
|
-
all: Tutte
|
305
298
|
calendar_modal:
|
306
299
|
calendar_url: URL del calendario
|
307
300
|
export_calendar: Esporta il calendario
|
@@ -359,7 +352,6 @@ it:
|
|
359
352
|
all: Tutte
|
360
353
|
official: Ufficiale
|
361
354
|
participants: Utenti
|
362
|
-
user_group: Gruppi
|
363
355
|
search: Cerca
|
364
356
|
type: Tipo
|
365
357
|
type_values:
|
@@ -374,19 +366,16 @@ it:
|
|
374
366
|
location_hints_help: 'Suggerimenti: informazioni aggiuntive. Esempio: il pavimento dell''edificio se si tratta di una riunione di persona o la password di riunione se si tratta di una riunione online con accesso ristretto.'
|
375
367
|
online_meeting_url_help: 'Link: permette ai partecipanti di connettersi direttamente alla tua riunione'
|
376
368
|
registration_url_help: 'Link: consentire ai partecipanti di accedere al servizio esterno che stai utilizzando per le iscrizioni'
|
377
|
-
select_a_category: Scegli una categoria
|
378
369
|
select_a_meeting_type: Seleziona un tipo di riunione
|
379
370
|
select_a_registration_type: Seleziona un tipo di registrazione
|
380
371
|
index:
|
381
372
|
new_meeting: Nuova riunione
|
382
|
-
meeting:
|
383
|
-
close_meeting: Chiusura meeting
|
384
|
-
edit_meeting: Modifica la riunione
|
385
373
|
meetings:
|
386
374
|
upcoming_meetings_warning: Attualmente non vi sono meeting in programma, ma qui puoi trovare elencati tutti i meeting effettuati in passato.
|
387
375
|
new:
|
388
376
|
back: Indietro
|
389
377
|
create: Crea
|
378
|
+
title: Crea una riunione
|
390
379
|
registration_confirm:
|
391
380
|
cancel: Annulla
|
392
381
|
confirm: Conferma
|
@@ -411,7 +400,6 @@ it:
|
|
411
400
|
one: "%{count} slot rimanenti"
|
412
401
|
other: "%{count} slot rimanenti"
|
413
402
|
visit_finished: Visualizza la riunione passata
|
414
|
-
withdraw_meeting: Ritira meeting
|
415
403
|
update:
|
416
404
|
invalid: Si è verificato un errore durante l'aggiornamento della riunione.
|
417
405
|
success: Hai aggiornato la riunione con successo.
|
data/config/locales/ja.yml
CHANGED
@@ -81,6 +81,10 @@ ja:
|
|
81
81
|
decidim/meetings/update_meeting_event: ミーティングが更新されました
|
82
82
|
activerecord:
|
83
83
|
models:
|
84
|
+
decidim:
|
85
|
+
meetings:
|
86
|
+
meeting:
|
87
|
+
text: 'このミーティングで議論されました: %{link}'
|
84
88
|
decidim/meetings/meeting:
|
85
89
|
other: ミーティング
|
86
90
|
decidim/meetings/minutes:
|
@@ -89,6 +93,9 @@ ja:
|
|
89
93
|
other: 登録
|
90
94
|
decidim:
|
91
95
|
admin:
|
96
|
+
admin_log:
|
97
|
+
changeset:
|
98
|
+
meetings: ミーティング
|
92
99
|
filters:
|
93
100
|
accepted_at_not_null:
|
94
101
|
label: 承認済み
|
@@ -96,8 +103,6 @@ ja:
|
|
96
103
|
'false': 未承認
|
97
104
|
'true': 承認済み
|
98
105
|
meetings:
|
99
|
-
category_id_eq:
|
100
|
-
label: カテゴリ
|
101
106
|
closed_at_present:
|
102
107
|
label: 状態
|
103
108
|
values:
|
@@ -108,8 +113,8 @@ ja:
|
|
108
113
|
values:
|
109
114
|
'false': 過去
|
110
115
|
'true': 近日公開
|
111
|
-
|
112
|
-
label:
|
116
|
+
taxonomies_part_of_contains:
|
117
|
+
label: タクソノミー
|
113
118
|
with_any_origin:
|
114
119
|
label: オリジン
|
115
120
|
values:
|
@@ -151,22 +156,35 @@ ja:
|
|
151
156
|
settings:
|
152
157
|
global:
|
153
158
|
announcement: お知らせ
|
159
|
+
clear_all: すべてクリア
|
154
160
|
comments_enabled: コメントが有効
|
155
161
|
comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
|
156
162
|
creation_enabled_for_participants: 出席者はミーティングを作成できます
|
157
163
|
default_registration_terms: デフォルトの登録条件
|
164
|
+
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
158
165
|
enable_pads_creation: パッドの作成を有効にする
|
159
166
|
maps_enabled: 地図が有効
|
167
|
+
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
160
168
|
registration_code_enabled: 登録コードが有効
|
161
169
|
resources_permissions_enabled: アクションの権限はミーティングごとに設定できます
|
162
|
-
|
163
|
-
|
170
|
+
taxonomy_filters: コンポーネントのフィルタを選択
|
171
|
+
taxonomy_filters_add: フィルターを追加
|
164
172
|
terms_and_conditions_url_for_meeting_creators: ミーティング作成者の利用規約URL
|
165
173
|
step:
|
166
174
|
announcement: お知らせ
|
167
175
|
comments_blocked: コメントをブロック
|
168
176
|
creation_enabled_for_participants: 参加者によるミーティングの作成が有効です
|
169
177
|
creation_enabled_for_user_groups: ユーザーグループによるミーティングの作成が有効です
|
178
|
+
download_your_data:
|
179
|
+
help:
|
180
|
+
registrations:
|
181
|
+
code: 参加登録コード
|
182
|
+
id: 参加登録の固有ID
|
183
|
+
meeting: ユーザーが参加登録したミーティング
|
184
|
+
user: 参加登録したユーザー
|
185
|
+
show:
|
186
|
+
meeting_comments: ミーティングコメントのエクスポート
|
187
|
+
meetings: ミーティングのエクスポート
|
170
188
|
events:
|
171
189
|
meetings:
|
172
190
|
meeting_closed:
|
@@ -220,7 +238,7 @@ ja:
|
|
220
238
|
badges:
|
221
239
|
attended_meetings:
|
222
240
|
conditions:
|
223
|
-
|
241
|
+
- 参加したいミーティングに登録する
|
224
242
|
description: このバッジは、顔を合わせていくつかのミーティングに出席するときに付与されます。
|
225
243
|
description_another: この参加者は %{score} 件のミーティングに出席しました.
|
226
244
|
description_own: '%{score} 件のミーティングに出席しました.'
|
@@ -234,8 +252,8 @@ ja:
|
|
234
252
|
attachment_collections: フォルダ
|
235
253
|
attachments: 添付ファイル
|
236
254
|
close: 閉じる
|
237
|
-
|
238
|
-
|
255
|
+
confirm_delete_meeting: このミーティングを削除してもよろしいですか?
|
256
|
+
deleted_meetings_info: 削除されたミーティングはゴミ箱から復元できます。
|
239
257
|
edit: 編集
|
240
258
|
invalid_destroy:
|
241
259
|
proposals_count:
|
@@ -245,6 +263,7 @@ ja:
|
|
245
263
|
preview: プレビュー
|
246
264
|
registrations: 登録
|
247
265
|
title: アクション
|
266
|
+
view_deleted_meetings: 削除されたミーティングを表示
|
248
267
|
admin:
|
249
268
|
agenda:
|
250
269
|
agenda_item:
|
@@ -309,14 +328,11 @@ ja:
|
|
309
328
|
close:
|
310
329
|
invalid: このミーティングを終了する際に問題が発生しました。
|
311
330
|
success: ミーティングは正常に終了しました。
|
331
|
+
component:
|
332
|
+
unlink: リンク解除
|
312
333
|
create:
|
313
334
|
invalid: このミーティングの作成に問題がありました.
|
314
335
|
success: ミーティングが正常に作成されました.これはまだ公開されていません.手動で公開する必要があります.
|
315
|
-
destroy:
|
316
|
-
invalid:
|
317
|
-
proposals_count:
|
318
|
-
other: '%{count} 件の提案が関連付けられているため、ミーティングを破壊できません。'
|
319
|
-
success: ミーティングを削除しました
|
320
336
|
edit:
|
321
337
|
title: ミーティングを編集
|
322
338
|
update: 更新
|
@@ -332,7 +348,20 @@ ja:
|
|
332
348
|
select_a_registration_type: 登録種別を選択してください
|
333
349
|
select_an_iframe_access_level: Iframeアクセスレベルを選択してください
|
334
350
|
index:
|
351
|
+
linked_meeting_warning_html: このミーティングは <br><a href="%{href}">%{name}</a> から編集する必要があります.
|
335
352
|
title: ミーティング
|
353
|
+
linked_spaces:
|
354
|
+
assign: 割り当て
|
355
|
+
link_a_space: スペースをリンク
|
356
|
+
private_meeting_warning: ミーティングが非公開で透明性のない場合、リンクされたスペースは適用されません。
|
357
|
+
private_space_warning: ミーティングが非透明なスペースに属している場合、リンクされたスペースは適用されません。
|
358
|
+
select: スペースを選択
|
359
|
+
table:
|
360
|
+
actions: アクション
|
361
|
+
component: リンクされたスペース
|
362
|
+
title: リンクされたスペース
|
363
|
+
manage_trash:
|
364
|
+
title: 削除されたミーティング
|
336
365
|
new:
|
337
366
|
create: 作成
|
338
367
|
title: ミーティングを作成
|
@@ -364,10 +393,10 @@ ja:
|
|
364
393
|
poll:
|
365
394
|
form:
|
366
395
|
announcement_html:
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
396
|
+
- 質問が回答を受信または公開/閉じた場合、編集できなくなります。
|
397
|
+
- 質問はいつでも追加できます。
|
398
|
+
- 作成されたすべての質問の結果が公開されると、投票は終了します。
|
399
|
+
- 質問を送信し、結果を公開するには、 <a href='%{admin_link}'>投票管理ページ</a> にアクセスしてください。
|
371
400
|
registrations:
|
372
401
|
edit:
|
373
402
|
save: 保存
|
@@ -376,6 +405,7 @@ ja:
|
|
376
405
|
form:
|
377
406
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
378
407
|
invites: 招待
|
408
|
+
manage_questions: 質問の管理
|
379
409
|
recommendation_message: プライバシー上の理由から、不要になったときにこの碑文フォームを削除することをお勧めします。 デフォルトでは、ミーティングが終了してから3ヶ月です。
|
380
410
|
registration_email_help: このテキストは登録確認メールの途中に表示されます。場所は登録コードの直後になります。
|
381
411
|
registration_form: 登録フォーム
|
@@ -400,6 +430,8 @@ ja:
|
|
400
430
|
create: "%{user_name} が %{resource_name} スペースで %{space_name} ミーティングを作成しました"
|
401
431
|
delete: "%{user_name} が %{resource_name} スペースの %{space_name} ミーティングを削除しました"
|
402
432
|
export_registrations: "%{user_name} は %{resource_name} スペースに %{space_name} ミーティングの登録をエクスポートしました"
|
433
|
+
restore: "%{user_name} が %{space_name} スペースのミーティング %{resource_name} を復元しました"
|
434
|
+
soft_delete: "%{user_name} は %{space_name} スペースでのミーティング %{resource_name} をゴミ箱に移動しました"
|
403
435
|
update: "%{user_name} が %{resource_name} スペースの %{space_name} ミーティングを更新しました"
|
404
436
|
value_types:
|
405
437
|
organizer_presenter:
|
@@ -407,8 +439,6 @@ ja:
|
|
407
439
|
questionnaire:
|
408
440
|
update: "%{user_name} が %{meeting_name} ミーティングのアンケートを更新しました"
|
409
441
|
application_helper:
|
410
|
-
filter_category_values:
|
411
|
-
all: すべて
|
412
442
|
filter_meeting_space_values:
|
413
443
|
all: すべて
|
414
444
|
calendar:
|
@@ -517,7 +547,6 @@ ja:
|
|
517
547
|
location_hints_help: '位置情報のヒント:追加情報。 例: 対面ミーティングでの建物のフロア、またはアクセス制限のあるオンラインミーティングでのミーティングパスワード。'
|
518
548
|
online_meeting_url_help: 'リンク: 参加者があなたのミーティングに直接接続できるようにします'
|
519
549
|
registration_url_help: 'リンク: 参加者が登録に使用している外部サービスにアクセスできるようにします'
|
520
|
-
select_a_category: カテゴリを選択してください
|
521
550
|
select_a_meeting_type: ミーティング種別を選択してください
|
522
551
|
select_a_registration_type: 登録種別を選択してください
|
523
552
|
select_an_iframe_access_level: iframeアクセスレベルを選択してください
|
@@ -528,9 +557,9 @@ ja:
|
|
528
557
|
see_all_withdrawn: 取り消したすべてのミーティングを見る
|
529
558
|
text_banner: 作成者が取り消したミーティングの一覧を表示しています. %{go_back_link}
|
530
559
|
meeting:
|
531
|
-
close_meeting:
|
560
|
+
close_meeting: 閉じる
|
532
561
|
edit_close_meeting: ミーティングレポートを編集
|
533
|
-
edit_meeting:
|
562
|
+
edit_meeting: 編集
|
534
563
|
join_meeting: ミーティングに参加
|
535
564
|
reply_poll: 投票に返信
|
536
565
|
view_poll: 投票を表示
|
@@ -540,7 +569,7 @@ ja:
|
|
540
569
|
new:
|
541
570
|
back: 戻る
|
542
571
|
create: 作成
|
543
|
-
title:
|
572
|
+
title: ミーティングを作成
|
544
573
|
registration_confirm:
|
545
574
|
cancel: キャンセル
|
546
575
|
confirm: 確認する
|
@@ -557,6 +586,7 @@ ja:
|
|
557
586
|
micro_camera_permissions_warning: 下のボタンをクリックすると、マイクおよび/またはカメラの権限を求められ、ビデオ会議に参加できます
|
558
587
|
no_slots_available: 利用可能なスロットがありません
|
559
588
|
organizations: 組織に参加
|
589
|
+
redirect_notice: このミーティングは別のスペースの一部であるため、あなたは %{current_space_name} に移動されました。<br> ご希望の場合は、 <a href="%{previous_space_url}">%{previous_space_name}</a> に戻ることができます。
|
560
590
|
registration_code_help_text: 登録コード
|
561
591
|
registration_state:
|
562
592
|
validated: 有効化
|
@@ -566,7 +596,7 @@ ja:
|
|
566
596
|
visit_finished: 過去のミーティングを表示
|
567
597
|
withdraw_btn_hint: 気が変わった場合はミーティングを取り消せます.ミーティングは削除されません.取り消されたミーティングのリストに表示されます.
|
568
598
|
withdraw_confirmation_html: このミーティングを取り消してもよろしいですか?<br><br><strong>この操作はキャンセルできません!</strong>
|
569
|
-
withdraw_meeting:
|
599
|
+
withdraw_meeting: 撤回する
|
570
600
|
update:
|
571
601
|
invalid: ミーティングの更新に問題がありました。
|
572
602
|
success: ミーティングを更新しました.
|
@@ -589,6 +619,7 @@ ja:
|
|
589
619
|
map: 地図
|
590
620
|
official_meeting: 公式ミーティング
|
591
621
|
start_time: 開始日
|
622
|
+
taxonomies: タクソノミー
|
592
623
|
title: タイトル
|
593
624
|
polls:
|
594
625
|
answers:
|
@@ -657,13 +688,49 @@ ja:
|
|
657
688
|
transparent: 透明性
|
658
689
|
withdraw: 取り消し
|
659
690
|
withdraw:
|
660
|
-
error:
|
691
|
+
error: ミーティングを取り消す際に問題がありました。
|
661
692
|
success: ミーティングは正常に取り下げられました。
|
662
693
|
metrics:
|
663
694
|
meetings:
|
664
695
|
description: 作成されたミーティング数
|
665
696
|
object: ミーティング
|
666
697
|
title: ミーティング
|
698
|
+
open_data:
|
699
|
+
help:
|
700
|
+
meeting_comments:
|
701
|
+
alignment: このコメントが好意的、反対的、中立的であった場合
|
702
|
+
author: このコメントを作成した参加者の名前
|
703
|
+
body: コメント本体
|
704
|
+
commentable_id: コメント対象の固有ID
|
705
|
+
commentable_type: コメント対象の種別 (結果、提案など)
|
706
|
+
created_at: このコメントが作成された日時
|
707
|
+
depth: このコメントがコメントツリーのどこに位置しているか(もしそれが回答であるか、または回答の回答である場合)
|
708
|
+
id: このコメントのID
|
709
|
+
locale: このコメントを残すときに参加者が使っていたロケール(言語)
|
710
|
+
root_commentable_url: このコメントに関連するリソースの URL
|
711
|
+
user_group: コメントを作成したユーザーグループの名前 (もしあれば)
|
712
|
+
meetings:
|
713
|
+
address: ミーティングの場所、対面で行われ物理的な場所がある場合の所在地
|
714
|
+
attachments: このミーティングの添付ファイル数
|
715
|
+
attendees: このミーティングに出席する人数
|
716
|
+
author: このミーティングの作者のデータ
|
717
|
+
component: ミーティングが属しているコンポーネント
|
718
|
+
contributions: このミーティングの参加者による貢献数
|
719
|
+
description: ミーティングの説明
|
720
|
+
end_time: このミーティングの終了日時
|
721
|
+
id: ミーティングの固有ID
|
722
|
+
location: ミーティングの場所
|
723
|
+
organizations: このミーティングに参加している組織
|
724
|
+
participatory_space: このミーティングが所属するスペース(例えば参加型プロセス、参加スペース)
|
725
|
+
published: ミーティングが公開された日時
|
726
|
+
reference: このプラットフォームでのリソースの固有ID
|
727
|
+
related_proposals: このミーティングに関連する提案
|
728
|
+
related_results: このミーティングに関連する結果
|
729
|
+
start_time: このミーティングの開始日時
|
730
|
+
taxonomies: このミーティングが属しているタクソノミー
|
731
|
+
title: ミーティングのタイトル
|
732
|
+
url: ミーティングのURL
|
733
|
+
withdrawn_at: このミーティングが撤回された日時
|
667
734
|
participatory_spaces:
|
668
735
|
highlighted_meetings:
|
669
736
|
past_meetings: 過去のミーティング
|
@@ -677,6 +744,7 @@ ja:
|
|
677
744
|
meeting_proposal: '関連する提案:'
|
678
745
|
proposal_meeting: '関連するミーティング:'
|
679
746
|
statistics:
|
747
|
+
attendees_count: ミーティング参加者
|
680
748
|
meetings_count: ミーティング
|
681
749
|
devise:
|
682
750
|
mailer:
|
data/config/locales/lb.yml
CHANGED
@@ -56,8 +56,6 @@ lb:
|
|
56
56
|
admin:
|
57
57
|
filters:
|
58
58
|
meetings:
|
59
|
-
category_id_eq:
|
60
|
-
label: Kategorie
|
61
59
|
closed_at_present:
|
62
60
|
label: Zustand
|
63
61
|
values:
|
@@ -68,8 +66,6 @@ lb:
|
|
68
66
|
values:
|
69
67
|
'false': Vergaangenes
|
70
68
|
'true': Demnächst stattfannend
|
71
|
-
scope_id_eq:
|
72
|
-
label: Ëmfang
|
73
69
|
with_any_origin:
|
74
70
|
values:
|
75
71
|
user_group: Benotzergruppen
|
@@ -98,8 +94,6 @@ lb:
|
|
98
94
|
enable_pads_creation: Aktivieren Sie die Pads-Erstellung
|
99
95
|
registration_code_enabled: Registrierungscode aktiviert
|
100
96
|
resources_permissions_enabled: Aktionsberechtigungen können für jedes Meeting festgelegt werden
|
101
|
-
scope_id: Ëmfang
|
102
|
-
scopes_enabled: Bereiche aktiviert
|
103
97
|
terms_and_conditions_url_for_meeting_creators: Nutzungsbedingungen URL für Meeting-Ersteller
|
104
98
|
step:
|
105
99
|
announcement: Ankündigung
|
@@ -183,8 +177,6 @@ lb:
|
|
183
177
|
meetings:
|
184
178
|
create:
|
185
179
|
success: Sitzung erfolgreich erstellt. Beachten Sie, dass dies noch nicht veröffentlicht wurde. Sie müssen es manuell veröffentlichen.
|
186
|
-
destroy:
|
187
|
-
success: Das Meeting wurde erfolgreich gelöscht
|
188
180
|
edit:
|
189
181
|
title: Meeting bearbeiten
|
190
182
|
update: Aktualisieren
|
@@ -214,6 +206,8 @@ lb:
|
|
214
206
|
registrations:
|
215
207
|
edit:
|
216
208
|
save: Späicheren
|
209
|
+
validate: Bestätigen
|
210
|
+
validate_registration_code: Validiere den Registrierungscode
|
217
211
|
form:
|
218
212
|
available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben.
|
219
213
|
invites: Aluedungen
|
@@ -228,6 +222,9 @@ lb:
|
|
228
222
|
update:
|
229
223
|
invalid: Beim Speichern der Registrierungseinstellungen ist ein Problem aufgetreten.
|
230
224
|
success: Die Registrierungseinstellungen wurden erfolgreich gespeichert.
|
225
|
+
validate_registration_code:
|
226
|
+
invalid: Dieser Registrierungscode ist ungültig.
|
227
|
+
success: Registrierungscode erfolgreich validiert.
|
231
228
|
admin_log:
|
232
229
|
invite:
|
233
230
|
create: "%{user_name} hat %{attendee_name} eingeladen, an der Sitzung %{resource_name} in %{space_name} teilzunehmen"
|
@@ -270,14 +267,12 @@ lb:
|
|
270
267
|
select_a_registration_type: Bitte wählen Sie eine Registrierungsart aus
|
271
268
|
index:
|
272
269
|
new_meeting: Nei Versammlung
|
273
|
-
meeting:
|
274
|
-
close_meeting: Sitzung beenden
|
275
|
-
edit_meeting: Meeting bearbeiten
|
276
270
|
meetings:
|
277
271
|
upcoming_meetings_warning: Momentan gibt es keine geplanten Besprechungen, aber hier finden Sie alle aufgelisteten Besprechungen.
|
278
272
|
new:
|
279
273
|
back: Zréck
|
280
274
|
create: Erstellen
|
275
|
+
title: Ihre Besprechung erstellen
|
281
276
|
registration_confirm:
|
282
277
|
cancel: Stornieren
|
283
278
|
confirm: Bestätegen
|
@@ -316,9 +311,6 @@ lb:
|
|
316
311
|
official_meeting: Offizielle Besprechung
|
317
312
|
start_time: Ufanksdatum
|
318
313
|
title: Titel
|
319
|
-
metrics:
|
320
|
-
meetings:
|
321
|
-
title: Meetings
|
322
314
|
resource_links:
|
323
315
|
proposals_from_meeting:
|
324
316
|
meeting_proposal: 'Ähnliche Vorschläge:'
|
data/config/locales/lt.yml
CHANGED
@@ -96,8 +96,6 @@ lt:
|
|
96
96
|
admin:
|
97
97
|
filters:
|
98
98
|
meetings:
|
99
|
-
category_id_eq:
|
100
|
-
label: Kategorija
|
101
99
|
closed_at_present:
|
102
100
|
label: Būsena
|
103
101
|
values:
|
@@ -108,8 +106,6 @@ lt:
|
|
108
106
|
values:
|
109
107
|
'false': Praėję
|
110
108
|
'true': Artėjantys
|
111
|
-
scope_id_eq:
|
112
|
-
label: Apimtis
|
113
109
|
with_any_origin:
|
114
110
|
label: Kilmė
|
115
111
|
values:
|
@@ -146,8 +142,6 @@ lt:
|
|
146
142
|
maps_enabled: Žemėlapiai įjungti
|
147
143
|
registration_code_enabled: Registracijos kodas įjungtas
|
148
144
|
resources_permissions_enabled: Kiekvienam posėdžiui galima nustatyti leistinus veiksmus
|
149
|
-
scope_id: Apimtis
|
150
|
-
scopes_enabled: Sritys įjungtos
|
151
145
|
terms_and_conditions_url_for_meeting_creators: Naudojimo taisyklių ir sąlygų URL susirinkimų kūrėjams
|
152
146
|
step:
|
153
147
|
announcement: Pranešimas
|
@@ -207,7 +201,7 @@ lt:
|
|
207
201
|
badges:
|
208
202
|
attended_meetings:
|
209
203
|
conditions:
|
210
|
-
|
204
|
+
- Registruokitės į susirinkimus, kuriuose norite dalyvauti
|
211
205
|
description: Šis ženklelis suteikiamas dalyvavus keliuose tiesioginiuose susirinkimuose.
|
212
206
|
description_another: Šis dalyvis dalyvavo %{score} susirinkimuose (-ų).
|
213
207
|
description_own: Jūs dalyvavote %{score} susirinkimuose (-ų).
|
@@ -221,7 +215,6 @@ lt:
|
|
221
215
|
attachment_collections: Aplankai
|
222
216
|
attachments: Priedai
|
223
217
|
close: Uždaryti
|
224
|
-
destroy: Ištrinti
|
225
218
|
edit: Redaguoti
|
226
219
|
invalid_destroy:
|
227
220
|
proposals_count:
|
@@ -300,14 +293,6 @@ lt:
|
|
300
293
|
create:
|
301
294
|
invalid: Kuriant šį susirinkimą iškilo problema.
|
302
295
|
success: Susirinkimas sėkmingai sukurtas. Jis dar nepublikuotas, tai turite padaryti rankiniu būdu.
|
303
|
-
destroy:
|
304
|
-
invalid:
|
305
|
-
proposals_count:
|
306
|
-
one: Susirinkimo negalima panaikinti, nes su juo susietas %{count} pasiūlymas.
|
307
|
-
few: Posėdžio negalima panaikinti, nes su juo susieti %{count} pasiūlymai.
|
308
|
-
many: Posėdžio negalima panaikinti, nes su juo susieti %{count} pasiūlymai.
|
309
|
-
other: Posėdžio negalima panaikinti, nes su juo susieti %{count} pasiūlymai.
|
310
|
-
success: Susirinkimas sėkmingai pašalintas
|
311
296
|
edit:
|
312
297
|
title: Redaguoti susirinkimą
|
313
298
|
update: Atnaujinti
|
@@ -354,6 +339,8 @@ lt:
|
|
354
339
|
registrations:
|
355
340
|
edit:
|
356
341
|
save: Išsaugoti
|
342
|
+
validate: Patvirtinti
|
343
|
+
validate_registration_code: Patvirtinti registracijos kodą
|
357
344
|
form:
|
358
345
|
available_slots_help: Jei nėra ribojimų įrašykite 0.
|
359
346
|
invites: Pakvietimai
|
@@ -371,6 +358,9 @@ lt:
|
|
371
358
|
update:
|
372
359
|
invalid: Išsaugant registracijos nuostatas iškilo problema.
|
373
360
|
success: Susirinkimo registracijų nuostatos išsaugotos.
|
361
|
+
validate_registration_code:
|
362
|
+
invalid: Šis registracijos kodas negalioja.
|
363
|
+
success: Registracijos kodas patvirtintas.
|
374
364
|
admin_log:
|
375
365
|
invite:
|
376
366
|
create: "%{user_name} pakvietė %{attendee_name} į susirinkimą %{resource_name} %{space_name} erdvėje"
|
@@ -388,8 +378,6 @@ lt:
|
|
388
378
|
questionnaire:
|
389
379
|
update: "%{user_name} atnaujino klausimyną %{meeting_name} susirinkimui"
|
390
380
|
application_helper:
|
391
|
-
filter_category_values:
|
392
|
-
all: Visi
|
393
381
|
filter_meeting_space_values:
|
394
382
|
all: Visi
|
395
383
|
calendar_modal:
|
@@ -495,7 +483,6 @@ lt:
|
|
495
483
|
location_hints_help: 'Vietos užuominos: papildoma informacija. Pavyzdžiui: pastato aukštas, jei tai yra susitikimas gyvai, arba susitikimo slaptažodis, jei tai virtualus susitikimas su ribota prieiga.'
|
496
484
|
online_meeting_url_help: 'Nuoroda: leiskite dalyviams tiesiai prisijungti prie susitikimo'
|
497
485
|
registration_url_help: 'Nuoroda: leiskite dalyviams prisijungti prie išorinės paslaugos, kurią naudojate registracijai'
|
498
|
-
select_a_category: Pasirinkite kategoriją
|
499
486
|
select_a_meeting_type: Pasirinkite susitikimo tipą
|
500
487
|
select_a_registration_type: Pasirinkite registracijos tipą
|
501
488
|
select_an_iframe_access_level: Pasirinkite iframe prieigos lygį
|
@@ -506,9 +493,7 @@ lt:
|
|
506
493
|
see_all_withdrawn: Žiūrėti visus atšauktus susitikimus
|
507
494
|
text_banner: Jūs žiūrite susitikimų, kuriuos atšaukė jų autoriai, sąrašą. %{go_back_link}.
|
508
495
|
meeting:
|
509
|
-
close_meeting: Baigti susirinkimą
|
510
496
|
edit_close_meeting: Redaguoti susitikimo ataskaitą
|
511
|
-
edit_meeting: Redaguoti susirinkimą
|
512
497
|
join_meeting: Prisijunkite prie susitikimo
|
513
498
|
meetings:
|
514
499
|
no_meetings_warning: Jūsų paieškos kriterijus atitinkančių susirinkimų nerasta arba neplanuojama.
|
@@ -516,6 +501,7 @@ lt:
|
|
516
501
|
new:
|
517
502
|
back: Atgal
|
518
503
|
create: Sukurti
|
504
|
+
title: Sukurkite savo susitikimą
|
519
505
|
registration_confirm:
|
520
506
|
cancel: Atšaukti
|
521
507
|
confirm: Patvirtinti
|
@@ -544,7 +530,6 @@ lt:
|
|
544
530
|
visit_finished: Peržiūrėti susirinkimą
|
545
531
|
withdraw_btn_hint: Galite išimti susirinkimą jei apsigalvojoje. Susirinkimas nebus ištrintas - jis atsidurs išimtų susirinkimų sąraše.
|
546
532
|
withdraw_confirmation_html: Ar tikrai norite išimti šį susirinkimą? <br><br><strong>Šio veiksmo atšaukti negalima!</strong>
|
547
|
-
withdraw_meeting: Išimti susirinkimą
|
548
533
|
update:
|
549
534
|
invalid: Atnaujinant susirinkimą iškilo problema.
|
550
535
|
success: Sėkmingai atnaujinote susirinkimą.
|
@@ -622,7 +607,6 @@ lt:
|
|
622
607
|
transparent: Skaidrus
|
623
608
|
withdraw: Atsiimta
|
624
609
|
withdraw:
|
625
|
-
error: Išimant susirinkimą įvyko klaida.
|
626
610
|
success: Susirinkimas sėkmingai išimtas.
|
627
611
|
metrics:
|
628
612
|
meetings:
|