decidim-meetings 0.30.3 → 0.31.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/cancelation_modal.erb +7 -4
- data/app/cells/decidim/meetings/cancel_registration_meeting_button/show.erb +1 -1
- data/app/cells/decidim/meetings/cancel_registration_meeting_button_cell.rb +36 -0
- data/app/cells/decidim/meetings/dates_and_map_cell.rb +1 -1
- data/app/cells/decidim/meetings/join_meeting_button/registration_modal.erb +4 -5
- data/app/cells/decidim/meetings/join_meeting_button/show.erb +25 -28
- data/app/cells/decidim/meetings/join_meeting_button/waitlist_button.erb +22 -0
- data/app/cells/decidim/meetings/join_meeting_button_cell.rb +28 -0
- data/app/cells/decidim/meetings/question_responses/show.erb +7 -7
- data/app/cells/decidim/meetings/question_responses_cell.rb +28 -28
- data/app/commands/decidim/meetings/admin/copy_meeting.rb +5 -2
- data/app/commands/decidim/meetings/admin/create_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/create_meeting.rb +7 -3
- data/app/commands/decidim/meetings/admin/mark_as_attendee.rb +44 -0
- data/app/commands/decidim/meetings/admin/publish_meeting.rb +2 -1
- data/app/commands/decidim/meetings/admin/update_agenda.rb +6 -2
- data/app/commands/decidim/meetings/admin/update_meeting.rb +15 -6
- data/app/commands/decidim/meetings/admin/update_questionnaire.rb +4 -4
- data/app/commands/decidim/meetings/admin/update_registrations.rb +19 -7
- data/app/commands/decidim/meetings/create_meeting.rb +2 -3
- data/app/commands/decidim/meetings/{create_answer.rb → create_response.rb} +11 -11
- data/app/commands/decidim/meetings/join_meeting.rb +4 -6
- data/app/commands/decidim/meetings/join_waitlist.rb +53 -0
- data/app/commands/decidim/meetings/leave_meeting.rb +14 -5
- data/app/commands/decidim/meetings/update_meeting.rb +1 -2
- data/app/controllers/concerns/decidim/meetings/admin/filterable.rb +1 -1
- data/app/controllers/decidim/meetings/admin/agenda_controller.rb +2 -2
- data/app/controllers/decidim/meetings/admin/invites_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meeting_copies_controller.rb +1 -1
- data/app/controllers/decidim/meetings/admin/meetings_controller.rb +4 -4
- data/app/controllers/decidim/meetings/admin/meetings_poll_controller.rb +10 -10
- data/app/controllers/decidim/meetings/admin/registrations_attendees_controller.rb +79 -0
- data/app/controllers/decidim/meetings/admin/registrations_controller.rb +1 -22
- data/app/controllers/decidim/meetings/meeting_closes_controller.rb +1 -1
- data/app/controllers/decidim/meetings/meetings_controller.rb +11 -11
- data/app/controllers/decidim/meetings/polls/{answers_controller.rb → responses_controller.rb} +7 -7
- data/app/controllers/decidim/meetings/registrations_controller.rb +39 -12
- data/app/events/decidim/meetings/registration_marked_as_attendee_event.rb +9 -0
- data/app/events/decidim/meetings/upcoming_meeting_event.rb +41 -0
- data/app/events/decidim/meetings/update_meeting_event.rb +25 -0
- data/app/forms/decidim/meetings/admin/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/admin/meeting_agenda_items_form.rb +4 -0
- data/app/forms/decidim/meetings/admin/meeting_form.rb +28 -3
- data/app/forms/decidim/meetings/admin/question_form.rb +3 -3
- data/app/forms/decidim/meetings/admin/{answer_option_form.rb → response_option_form.rb} +3 -3
- data/app/forms/decidim/meetings/admin/validate_registration_code_form.rb +1 -1
- data/app/forms/decidim/meetings/base_meeting_form.rb +0 -2
- data/app/forms/decidim/meetings/close_meeting_form.rb +2 -1
- data/app/forms/decidim/meetings/join_meeting_form.rb +0 -1
- data/app/forms/decidim/meetings/meeting_form.rb +3 -2
- data/app/forms/decidim/meetings/response_choice_form.rb +14 -0
- data/app/forms/decidim/meetings/{answer_form.rb → response_form.rb} +7 -7
- data/app/helpers/decidim/meetings/application_helper.rb +0 -1
- data/app/helpers/decidim/meetings/meetings_helper.rb +14 -5
- data/app/jobs/decidim/meetings/promote_from_waitlist_job.rb +63 -0
- data/app/jobs/decidim/meetings/upcoming_meeting_notification_job.rb +1 -1
- data/app/mailers/decidim/meetings/registration_mailer.rb +13 -0
- data/app/models/decidim/meetings/agenda_item.rb +5 -0
- data/app/models/decidim/meetings/meeting.rb +15 -12
- data/app/models/decidim/meetings/question.rb +12 -12
- data/app/models/decidim/meetings/questionnaire.rb +1 -1
- data/app/models/decidim/meetings/registration.rb +19 -7
- data/app/models/decidim/meetings/{answer.rb → response.rb} +6 -6
- data/app/models/decidim/meetings/response_choice.rb +15 -0
- data/app/models/decidim/meetings/{answer_option.rb → response_option.rb} +5 -5
- data/app/packs/src/decidim/meetings/admin/destroy_meeting_alert.js +1 -1
- data/app/packs/src/decidim/meetings/admin/meetings_components_form.js +1 -8
- data/app/packs/src/decidim/meetings/admin/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_form.js +1 -1
- data/app/packs/src/decidim/meetings/admin/registrations_invite_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_form.js +1 -1
- data/app/packs/src/decidim/meetings/meetings_polls.js +1 -1
- data/app/packs/src/decidim/meetings/poll.component.js +5 -5
- data/app/packs/stylesheets/decidim/meetings/_item.scss +5 -1
- data/app/packs/stylesheets/decidim/meetings/meetings.scss +4 -4
- data/app/permissions/decidim/meetings/admin/agenda_permissions.rb +34 -0
- data/app/permissions/decidim/meetings/admin/meeting_permissions.rb +44 -0
- data/app/permissions/decidim/meetings/admin/permissions.rb +5 -66
- data/app/permissions/decidim/meetings/admin/questionnaire_permissions.rb +30 -0
- data/app/permissions/decidim/meetings/meeting_permissions.rb +90 -0
- data/app/permissions/decidim/meetings/permissions.rb +9 -105
- data/app/presenters/decidim/meetings/admin_log/value_types/meeting_title_description_presenter.rb +1 -1
- data/app/presenters/decidim/meetings/agenda_item_presenter.rb +29 -0
- data/app/presenters/decidim/meetings/meeting_presenter.rb +11 -15
- data/app/presenters/decidim/meetings/registration_presenter.rb +24 -0
- data/app/queries/decidim/meetings/filtered_meetings.rb +1 -1
- data/app/queries/decidim/meetings/{questionnaire_user_answers.rb → questionnaire_user_responses.rb} +5 -5
- data/app/serializers/decidim/meetings/registration_serializer.rb +5 -6
- data/app/services/decidim/meetings/diff_renderer.rb +0 -1
- data/app/views/decidim/meetings/_calendar_modal.html.erb +1 -0
- data/app/views/decidim/meetings/admin/agenda/_agenda_item_fields.html.erb +1 -1
- data/app/views/decidim/meetings/admin/invites/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_form.html.erb +3 -2
- data/app/views/decidim/meetings/admin/meetings/_linked_spaces.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/_meeting-tr.html.erb +10 -7
- data/app/views/decidim/meetings/admin/meetings/_meeting_actions.html.erb +200 -69
- data/app/views/decidim/meetings/admin/meetings/_reminders.html.erb +19 -0
- data/app/views/decidim/meetings/admin/meetings/_services.html.erb +1 -1
- data/app/views/decidim/meetings/admin/meetings/index.html.erb +7 -5
- data/app/views/decidim/meetings/admin/meetings/manage_trash.html.erb +2 -1
- data/app/views/decidim/meetings/admin/poll/_form.html.erb +7 -7
- data/app/views/decidim/meetings/admin/poll/_question.html.erb +9 -9
- data/app/views/decidim/meetings/admin/poll/_response_option.html.erb +35 -0
- data/app/views/decidim/meetings/admin/poll/_response_option_template.html.erb +7 -0
- data/app/views/decidim/meetings/admin/poll/edit.html.erb +5 -3
- data/app/views/decidim/meetings/admin/registration_form/edit_questions.html.erb +5 -5
- data/app/views/decidim/meetings/admin/registrations/edit.html.erb +19 -39
- data/app/views/decidim/meetings/admin/registrations_attendees/index.html.erb +126 -0
- data/app/views/decidim/meetings/layouts/live_event.html.erb +1 -1
- data/app/views/decidim/meetings/meeting_closes/_form.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_form.html.erb +2 -11
- data/app/views/decidim/meetings/meetings/_meeting.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_actions.html.erb +6 -6
- data/app/views/decidim/meetings/meetings/_meeting_agenda.html.erb +2 -2
- data/app/views/decidim/meetings/meetings/_meeting_aside.html.erb +11 -10
- data/app/views/decidim/meetings/meetings/_meeting_poll_actions.html.erb +3 -3
- data/app/views/decidim/meetings/meetings/_registration_code_modal.html.erb +16 -0
- data/app/views/decidim/meetings/polls/questions/_index_admin.html.erb +1 -1
- data/app/views/decidim/meetings/polls/questions/_published_question.html.erb +5 -5
- data/app/views/decidim/meetings/polls/responses/_multiple_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/responses/_single_option.html.erb +13 -0
- data/app/views/decidim/meetings/polls/{answers → responses}/admin.html.erb +4 -4
- data/app/views/decidim/meetings/polls/{answers → responses}/index.html.erb +4 -4
- data/app/views/decidim/meetings/registration_mailer/confirmation.html.erb +6 -1
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +1 -26
- data/config/locales/bg.yml +2 -32
- data/config/locales/ca-IT.yml +88 -40
- data/config/locales/ca.yml +88 -40
- data/config/locales/cs.yml +73 -43
- data/config/locales/de.yml +87 -41
- data/config/locales/el.yml +1 -25
- data/config/locales/en.yml +91 -43
- data/config/locales/es-MX.yml +89 -41
- data/config/locales/es-PY.yml +89 -41
- data/config/locales/es.yml +89 -41
- data/config/locales/eu.yml +88 -40
- data/config/locales/fi-plain.yml +88 -40
- data/config/locales/fi.yml +87 -39
- data/config/locales/fr-CA.yml +81 -38
- data/config/locales/fr.yml +81 -38
- data/config/locales/ga-IE.yml +1 -7
- data/config/locales/gl.yml +1 -19
- data/config/locales/hu.yml +1 -22
- data/config/locales/id-ID.yml +0 -16
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +1 -29
- data/config/locales/ja.yml +90 -42
- data/config/locales/lb.yml +1 -15
- data/config/locales/lt.yml +1 -28
- data/config/locales/lv.yml +0 -16
- data/config/locales/nl.yml +1 -26
- data/config/locales/no.yml +1 -28
- data/config/locales/pl.yml +2 -32
- data/config/locales/pt-BR.yml +1 -28
- data/config/locales/pt.yml +1 -28
- data/config/locales/ro-RO.yml +56 -29
- data/config/locales/ru.yml +0 -16
- data/config/locales/sk.yml +0 -16
- data/config/locales/sl.yml +0 -4
- data/config/locales/sv.yml +85 -39
- data/config/locales/tr-TR.yml +0 -20
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +0 -19
- data/config/locales/zh-TW.yml +1 -26
- data/db/migrate/20181107175558_add_questionnaire_to_existing_meetings.rb +8 -2
- data/db/migrate/20200827153856_add_commentable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20201016065302_fix_meetings_registration_terms.rb +8 -2
- data/db/migrate/20210310120731_add_followable_counter_cache_to_meetings.rb +8 -2
- data/db/migrate/20250317103343_rename_answer_to_response_in_decidim_meetings.rb +18 -0
- data/db/migrate/20250403094034_add_reminder_customization_to_decidim_meetings.rb +9 -0
- data/db/migrate/20250408071941_add_status_to_registrations_to_decidim_meetings_registrations.rb +8 -0
- data/lib/decidim/api/agenda_item_type.rb +6 -2
- data/lib/decidim/api/agenda_type.rb +6 -2
- data/lib/decidim/api/linked_resources_interface.rb +1 -1
- data/lib/decidim/api/meeting_type.rb +20 -10
- data/lib/decidim/api/service_type.rb +3 -0
- data/lib/decidim/meetings/admin_engine.rb +9 -1
- data/lib/decidim/meetings/component.rb +38 -11
- data/lib/decidim/meetings/engine.rb +6 -21
- data/lib/decidim/meetings/meeting_serializer.rb +1 -2
- data/lib/decidim/meetings/schema_org_event_meeting_serializer.rb +0 -10
- data/lib/decidim/meetings/seeds.rb +5 -13
- data/lib/decidim/meetings/test/factories.rb +10 -16
- data/lib/decidim/meetings/user_responses_serializer.rb +47 -0
- data/lib/decidim/meetings/version.rb +1 -1
- data/lib/decidim/meetings.rb +7 -9
- metadata +48 -34
- data/app/cells/decidim/meetings/attending_organizations_list_cell.rb +0 -32
- data/app/forms/decidim/meetings/answer_choice_form.rb +0 -14
- data/app/models/decidim/meetings/answer_choice.rb +0 -15
- data/app/queries/decidim/meetings/metrics/meeting_followers_metric_measure.rb +0 -31
- data/app/queries/decidim/meetings/metrics/meetings_metric_manage.rb +0 -48
- data/app/views/decidim/meetings/admin/poll/_answer_option.html.erb +0 -35
- data/app/views/decidim/meetings/admin/poll/_answer_option_template.html.erb +0 -7
- data/app/views/decidim/meetings/polls/answers/_multiple_option.html.erb +0 -13
- data/app/views/decidim/meetings/polls/answers/_single_option.html.erb +0 -13
- data/lib/decidim/meetings/download_your_data_user_answers_serializer.rb +0 -39
- data/lib/decidim/meetings/user_answers_serializer.rb +0 -47
- /data/app/views/decidim/meetings/polls/{answers → responses}/create.js.erb +0 -0
data/config/locales/ja.yml
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
ja:
|
|
3
3
|
activemodel:
|
|
4
4
|
attributes:
|
|
5
|
-
answer:
|
|
6
|
-
add_documents: ドキュメントを追加
|
|
7
5
|
close_meeting:
|
|
8
6
|
attendees_count: 出席者数
|
|
9
7
|
attending_organizations: 参加した組織一覧
|
|
@@ -19,7 +17,6 @@ ja:
|
|
|
19
17
|
customize_registration_email: 登録メールのカスタマイズ
|
|
20
18
|
decidim_category_id: カテゴリ
|
|
21
19
|
decidim_scope_id: スコープ
|
|
22
|
-
decidim_user_group_id: ユーザーグループ
|
|
23
20
|
description: 説明
|
|
24
21
|
end_time: 終了時間
|
|
25
22
|
id: ID
|
|
@@ -53,6 +50,8 @@ ja:
|
|
|
53
50
|
meeting_registration_invite:
|
|
54
51
|
email: Eメールアドレス
|
|
55
52
|
name: 名前
|
|
53
|
+
response:
|
|
54
|
+
add_documents: ドキュメントを追加
|
|
56
55
|
validate_registration_code:
|
|
57
56
|
code: コード
|
|
58
57
|
errors:
|
|
@@ -120,7 +119,6 @@ ja:
|
|
|
120
119
|
values:
|
|
121
120
|
official: 公式
|
|
122
121
|
participants: 参加者
|
|
123
|
-
user_group: ユーザーグループ
|
|
124
122
|
with_any_type:
|
|
125
123
|
label: ミーティングの種類
|
|
126
124
|
values:
|
|
@@ -146,6 +144,16 @@ ja:
|
|
|
146
144
|
new:
|
|
147
145
|
copy: コピー
|
|
148
146
|
title: ミーティングを複製
|
|
147
|
+
tooltips:
|
|
148
|
+
cannot_close_meetings: 参加者によって作成されたため、このミーティングを閉じることはできません
|
|
149
|
+
cannot_duplicate_meetings: 参加者によって作成されたため、このミーティングは複製できません
|
|
150
|
+
cannot_edit_meetings: 参加者によって作成されたため、このミーティングは編集できません
|
|
151
|
+
cannot_manage_agenda_meetings: 参加者によって作成されたため、このミーティングの議題を管理できません
|
|
152
|
+
cannot_manage_attachments_meetings: 参加者によって作成されたため、このミーティングの添付ファイルは管理できません
|
|
153
|
+
cannot_manage_poll_meetings: 参加者によって作成されたため、このミーティングの投票は管理できません
|
|
154
|
+
cannot_manage_registrations_meetings: 参加者によって作成されたため、この会議への登録を管理できません。登録が無効になっているか、外部での登録になっています
|
|
155
|
+
cannot_mark_attendee: 既にマークされていたため、出席者としてマークできません
|
|
156
|
+
deleted_meetings_info: 参加者によって作成されたため、このミーティングを削除することはできません。
|
|
149
157
|
components:
|
|
150
158
|
meetings:
|
|
151
159
|
actions:
|
|
@@ -165,7 +173,7 @@ ja:
|
|
|
165
173
|
enable_pads_creation: パッドの作成を有効にする
|
|
166
174
|
maps_enabled: 地図が有効
|
|
167
175
|
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
|
168
|
-
registration_code_enabled:
|
|
176
|
+
registration_code_enabled: 登録コードとQRコードを有効化
|
|
169
177
|
resources_permissions_enabled: アクションの権限はミーティングごとに設定できます
|
|
170
178
|
taxonomy_filters: コンポーネントのフィルタを選択
|
|
171
179
|
taxonomy_filters_add: フィルターを追加
|
|
@@ -174,7 +182,6 @@ ja:
|
|
|
174
182
|
announcement: お知らせ
|
|
175
183
|
comments_blocked: コメントをブロック
|
|
176
184
|
creation_enabled_for_participants: 参加者によるミーティングの作成が有効です
|
|
177
|
-
creation_enabled_for_user_groups: ユーザーグループによるミーティングの作成が有効です
|
|
178
185
|
download_your_data:
|
|
179
186
|
help:
|
|
180
187
|
invites:
|
|
@@ -224,25 +231,38 @@ ja:
|
|
|
224
231
|
email_subject: '「%{resource_title}」ミーティングに割り当てられたスロットは %{percentage} %を超えています'
|
|
225
232
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングに割り当てられたスロットは %{percentage}%を超えています。
|
|
226
233
|
meeting_updated:
|
|
227
|
-
email_intro: '"%{resource_title}"
|
|
234
|
+
email_intro: '"%{resource_title}" ミーティングは %{changed_fields}への変更により更新されました.このページから新しいバージョンを読むことができます:'
|
|
228
235
|
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
|
229
236
|
email_subject: '"%{resource_title}" のミーティングが更新されました'
|
|
230
|
-
|
|
237
|
+
field_names:
|
|
238
|
+
address: アドレス
|
|
239
|
+
end_time: 終了時刻
|
|
240
|
+
location: 場所
|
|
241
|
+
start_time: 開始時刻
|
|
242
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングは、 %{changed_fields} への変更により更新されました。
|
|
243
|
+
meeting_waitlist_added:
|
|
244
|
+
notification_title: <a href="%{resource_url}">%{resource_title}</a> ミーティングの順番待ちリストに追加されました。
|
|
231
245
|
registration_code_validated:
|
|
232
246
|
email_intro: '「%{registration_code}」ミーティングの登録コード「%{resource_title}」が確認されました。'
|
|
233
247
|
email_outro: '"%{resource_title}" ミーティングの登録コードが検証されたため、この通知を受け取りました。'
|
|
234
248
|
email_subject: あなたの "%{registration_code}" ミーティングの登録コード "%{resource_title}" が検証されました
|
|
235
249
|
notification_title: ミーティング <a href="%{resource_path}">%{resource_title} </a> に対するあなたの登録コード "%{registration_code}" が認証されました。
|
|
250
|
+
registration_marked_as_attendee:
|
|
251
|
+
email_intro: '「%{resource_title}」ミーティングへの登録が出席者としてマークされました。'
|
|
252
|
+
email_outro: '「%{resource_title}」ミーティングへの登録が出席者としてマークされたため、この通知を受け取りました。'
|
|
253
|
+
email_subject: '「%{resource_title}」ミーティングへの登録が出席者としてマークされました'
|
|
254
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングへの登録が出席者としてマークされました。
|
|
236
255
|
registrations_enabled:
|
|
237
256
|
email_intro: '"%{resource_title}" ミーティングは登録を有効にしました.あなた自身をそのページに登録することができます:'
|
|
238
257
|
email_outro: '「%{resource_title}」ミーティングをフォローしているため、この通知を受け取りました.前のリンクからフォローを解除することができます.'
|
|
239
258
|
email_subject: '"%{resource_title}" ミーティングは登録を有効にしました.'
|
|
240
259
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> のミーティングは登録を有効にしました。
|
|
241
260
|
upcoming_meeting:
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
261
|
+
default_body: '"{{meeting_title}}"ミーティングは、あと{{before_hours}}時間以内に開始されます。'
|
|
262
|
+
email_intro: '"%{resource_title}" ミーティングは、あと%{reminders_before_hours}時間以内に開始されます。'
|
|
263
|
+
email_outro: '"%{resource_title}"ミーティングをフォローしているため、この通知を受け取りました。フォローを解除するには、前のリンクから行ってください。'
|
|
264
|
+
email_subject: '"%{resource_title}"ミーティングは、%{reminders_before_hours}時間以内に開始されます。'
|
|
265
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> ミーティングは、%{reminders_before_hours}時間以内に開始されます。
|
|
246
266
|
forms:
|
|
247
267
|
meetings:
|
|
248
268
|
attendees_count_help_text: 対面、オンライン、ハイブリッドのどの形態でも、ミーティングの参加者の総数を含めることを忘れないでください。
|
|
@@ -261,16 +281,16 @@ ja:
|
|
|
261
281
|
meetings:
|
|
262
282
|
actions:
|
|
263
283
|
agenda: 予定
|
|
264
|
-
attachment_collections: フォルダ
|
|
265
|
-
attachments: 添付ファイル
|
|
266
284
|
close: 閉じる
|
|
267
285
|
confirm_delete_meeting: このミーティングを削除してもよろしいですか?
|
|
286
|
+
confirm_unpublish_meeting: このミーティングを非公開にしてもよろしいですか?
|
|
268
287
|
deleted_meetings_info: 削除されたミーティングはゴミ箱から復元できます。
|
|
269
288
|
edit: 編集
|
|
270
289
|
invalid_destroy:
|
|
271
290
|
proposals_count:
|
|
272
291
|
other: '%{count} 件の提案が関連付けられているため、ミーティングを削除できません:'
|
|
273
292
|
manage_poll: アンケートの管理
|
|
293
|
+
mark_as_attendee: 出席者としてマーク
|
|
274
294
|
new_meeting: 新しいミーティング
|
|
275
295
|
preview: プレビュー
|
|
276
296
|
registrations: 登録
|
|
@@ -307,11 +327,12 @@ ja:
|
|
|
307
327
|
update:
|
|
308
328
|
invalid: アジェンダの更新に問題がありました。
|
|
309
329
|
success: アジェンダが正常に更新されました。
|
|
330
|
+
deprecation_warning_polls_html: "⚠️ <b>非推奨通知</b>: 投票機能は将来のバージョンで削除される予定です(時期は未定)。会議用投票機能をご利用の組織は、Jitsiなどの外部投票ツールを使用するか、Decidimの新しい選挙モジュール(`decidim-elections`)などの代替投票システムへの移行を計画してください。"
|
|
310
331
|
exports:
|
|
311
|
-
answers: 回答
|
|
312
332
|
meeting_comments: コメント
|
|
313
333
|
meetings: ミーティング
|
|
314
334
|
registrations: 登録
|
|
335
|
+
responses: 応答
|
|
315
336
|
invite_join_meeting_mailer:
|
|
316
337
|
invite:
|
|
317
338
|
decline: 招待を拒否
|
|
@@ -382,6 +403,13 @@ ja:
|
|
|
382
403
|
publish:
|
|
383
404
|
invalid: このミーティングを公開する際に問題が発生しました。
|
|
384
405
|
success: ミーティングを公開しました。
|
|
406
|
+
reminders:
|
|
407
|
+
reminder_enabled: このミーティングのリマインダーを送信する
|
|
408
|
+
reminder_message: リマインダーのメール内容
|
|
409
|
+
reminder_message_help_text: 必要に応じてメッセージをカスタマイズしてください。ミーティング名を表示するには {{meeting_title}} を使用します。
|
|
410
|
+
send_reminder: 予約されたリマインダーメール
|
|
411
|
+
send_reminder_help_text: 会議の何時間前にリマインダーを送信するかを指定します。
|
|
412
|
+
title: リマインダー
|
|
385
413
|
service:
|
|
386
414
|
description: 説明
|
|
387
415
|
down: 下
|
|
@@ -407,22 +435,21 @@ ja:
|
|
|
407
435
|
poll:
|
|
408
436
|
form:
|
|
409
437
|
announcement_html:
|
|
410
|
-
-
|
|
438
|
+
- 質問が回答を受信または公開/閉鎖した場合は、編集できなくなります。
|
|
411
439
|
- 質問はいつでも追加できます。
|
|
412
440
|
- 作成されたすべての質問の結果が公開されると、投票は終了します。
|
|
413
441
|
- 質問を送信し、結果を公開するには、 <a href='%{admin_link}'>投票管理ページ</a> にアクセスしてください。
|
|
414
442
|
registrations:
|
|
415
443
|
edit:
|
|
416
444
|
save: 保存
|
|
417
|
-
validate: 検証
|
|
418
|
-
validate_registration_code: 登録コードを検証する
|
|
419
445
|
form:
|
|
420
446
|
available_slots_help: 無制限のスロットがある場合は0のままにしてください。
|
|
421
447
|
invites: 招待
|
|
422
|
-
manage_questions:
|
|
448
|
+
manage_questions: 質問
|
|
423
449
|
recommendation_message: プライバシー上の理由から、不要になったときにこの碑文フォームを削除することをお勧めします。 デフォルトでは、ミーティングが終了してから3ヶ月です。
|
|
424
450
|
registration_email_help: このテキストは登録確認メールの途中に表示されます。場所は登録コードの直後になります。
|
|
425
451
|
registration_form: 登録フォーム
|
|
452
|
+
registrations: 登録を表示
|
|
426
453
|
registrations_count:
|
|
427
454
|
other: '%{count} 件の登録がありました。'
|
|
428
455
|
reserved_slots_help: 予約スロットがない場合は0にしておいてください。
|
|
@@ -431,6 +458,14 @@ ja:
|
|
|
431
458
|
update:
|
|
432
459
|
invalid: 登録設定の保存中に問題が発生しました。
|
|
433
460
|
success: ミーティングの登録設定を保存しました。
|
|
461
|
+
registrations_attendees:
|
|
462
|
+
index:
|
|
463
|
+
title: 登録
|
|
464
|
+
validate: 検証
|
|
465
|
+
validate_registration_code: 登録コードを検証する
|
|
466
|
+
mark_attendee:
|
|
467
|
+
invalid: 登録は既に出席済みになっています。
|
|
468
|
+
success: 登録が出席者になりました。
|
|
434
469
|
validate_registration_code:
|
|
435
470
|
invalid: この登録コードは無効です。
|
|
436
471
|
success: 登録コードを検証しました。
|
|
@@ -543,7 +578,6 @@ ja:
|
|
|
543
578
|
all: すべて
|
|
544
579
|
official: 事務局
|
|
545
580
|
participants: 参加者
|
|
546
|
-
user_group: グループ
|
|
547
581
|
search: 検索
|
|
548
582
|
type: 種別
|
|
549
583
|
type_values:
|
|
@@ -554,7 +588,6 @@ ja:
|
|
|
554
588
|
form:
|
|
555
589
|
address_help: 'アドレス: ジオコーダーが場所を見つけるために使用'
|
|
556
590
|
available_slots_help: 無制限の場合は0のままにしてください
|
|
557
|
-
create_as: 次のユーザとしてミーティングを作成:
|
|
558
591
|
disclaimer: '免責事項: 外部の登録システムを使用する場合、ユーザーが外部サービスに提供したデータについて%{organization} の主催者が責任を負わないことをあらかじめご了承ください。'
|
|
559
592
|
iframe_embed_type_html: 'ミーティングまたは配信イベントに埋め込めるサービスは以下のドメインに限定されています: %{domains}'
|
|
560
593
|
location_help: '場所: ユーザーにメッセージが表示されます。'
|
|
@@ -591,8 +624,11 @@ ja:
|
|
|
591
624
|
attendees: 出席者数
|
|
592
625
|
contributions: コントリビューション数
|
|
593
626
|
join: ミーティングに参加
|
|
627
|
+
join_waitlist: 順番待ちリストに参加
|
|
594
628
|
leave: 登録をキャンセルする
|
|
595
629
|
leave_confirmation: このミーティングの登録をキャンセルしてもよろしいですか?
|
|
630
|
+
leave_waitlist: 順番待ちリストから抜ける
|
|
631
|
+
leave_waitlist_confirmation: このミーティングの順番待ちリストから退出しますか?
|
|
596
632
|
link_available_soon: 間もなくリンクが利用可能です
|
|
597
633
|
link_closed: ミーティングに参加するリンクは開始数分前に利用可能になります
|
|
598
634
|
live_event: このミーティングは現在開催中です
|
|
@@ -600,14 +636,20 @@ ja:
|
|
|
600
636
|
micro_camera_permissions_warning: 下のボタンをクリックすると、マイクおよび/またはカメラの権限を求められ、ビデオ会議に参加できます
|
|
601
637
|
no_slots_available: 利用可能なスロットがありません
|
|
602
638
|
organizations: 組織に参加
|
|
639
|
+
pending_address: 場所はまもなく発表されます。
|
|
603
640
|
redirect_notice: このミーティングは別のスペースの一部であるため、あなたは %{current_space_name} に移動されました。<br> ご希望の場合は、 <a href="%{previous_space_url}">%{previous_space_name}</a> に戻ることができます。
|
|
604
|
-
|
|
641
|
+
registration_and_qr_code: 登録コードとQR コード
|
|
642
|
+
registration_code: '登録コード: %{code}'
|
|
643
|
+
registration_code_help_text: 登録コードとQR コード
|
|
605
644
|
registration_state:
|
|
606
645
|
validated: 有効化
|
|
607
646
|
validation_pending: 保留中
|
|
608
647
|
remaining_slots:
|
|
609
648
|
other: "残り%{count} スロット"
|
|
610
649
|
visit_finished: 過去のミーティングを表示
|
|
650
|
+
waitlist:
|
|
651
|
+
description: 空きが出た場合は、自動的に登録を処理し、メールでお知らせします。
|
|
652
|
+
status: 順番待ちリストにいます
|
|
611
653
|
withdraw_btn_hint: 気が変わった場合はミーティングを取り消せます.ミーティングは削除されません.取り消されたミーティングのリストに表示されます.
|
|
612
654
|
withdraw_confirmation_html: このミーティングを取り消してもよろしいですか?<br><br><strong>この操作はキャンセルできません!</strong>
|
|
613
655
|
withdraw_meeting: 撤回する
|
|
@@ -636,15 +678,16 @@ ja:
|
|
|
636
678
|
start_time: 開始日
|
|
637
679
|
taxonomies: タクソノミー
|
|
638
680
|
title: タイトル
|
|
681
|
+
registration:
|
|
682
|
+
actions: アクション
|
|
683
|
+
fields:
|
|
684
|
+
email: メールアドレス
|
|
685
|
+
name: 名前
|
|
686
|
+
status: ステータス
|
|
687
|
+
status:
|
|
688
|
+
attended: 出席済み
|
|
689
|
+
not_attended: 不参加
|
|
639
690
|
polls:
|
|
640
|
-
answers:
|
|
641
|
-
index:
|
|
642
|
-
administrate: 管理
|
|
643
|
-
title: 投票
|
|
644
|
-
index_admin:
|
|
645
|
-
back_to_meeting: ミーティングに戻る
|
|
646
|
-
title: 投票を管理
|
|
647
|
-
view_poll: 投票を表示
|
|
648
691
|
questions:
|
|
649
692
|
closed_question:
|
|
650
693
|
announcement: この質問への回答はクローズされました。
|
|
@@ -655,8 +698,8 @@ ja:
|
|
|
655
698
|
index_admin:
|
|
656
699
|
edit: 管理画面で編集
|
|
657
700
|
question: 質問
|
|
658
|
-
|
|
659
|
-
|
|
701
|
+
received_response: 受信した回答
|
|
702
|
+
received_responses: 受信した回答
|
|
660
703
|
results: 結果
|
|
661
704
|
send: 送信
|
|
662
705
|
sent: 送信済み
|
|
@@ -669,8 +712,15 @@ ja:
|
|
|
669
712
|
question: 質問
|
|
670
713
|
question_replied: 質問に回答しました
|
|
671
714
|
reply_question: 質問に返信する
|
|
715
|
+
responses:
|
|
716
|
+
index:
|
|
717
|
+
administrate: 管理
|
|
718
|
+
title: 投票
|
|
719
|
+
index_admin:
|
|
720
|
+
back_to_meeting: ミーティングに戻る
|
|
721
|
+
title: 投票を管理
|
|
722
|
+
view_poll: 投票を表示
|
|
672
723
|
public_participants_list:
|
|
673
|
-
attending_organizations: 組織
|
|
674
724
|
attending_participants: 参加する
|
|
675
725
|
hidden_participants_count:
|
|
676
726
|
other: 他 %{count} 人
|
|
@@ -679,7 +729,7 @@ ja:
|
|
|
679
729
|
confirmation:
|
|
680
730
|
confirmed_html: ミーティング <a href="%{url}">%{title}</a> の登録が確認されました。
|
|
681
731
|
details: ミーティングの詳細は添付ファイルにあります。
|
|
682
|
-
registration_code:
|
|
732
|
+
registration_code: あなたの登録コードは %{code} です。出席を確認するために、以下のQRコードを管理者に提示してください。
|
|
683
733
|
registration_type:
|
|
684
734
|
on_different_platform: 異なるプラットフォーム
|
|
685
735
|
on_this_platform: このプラットフォーム
|
|
@@ -694,6 +744,9 @@ ja:
|
|
|
694
744
|
destroy:
|
|
695
745
|
invalid: このミーティングから出発する問題があった。
|
|
696
746
|
success: ミーティングを正常に退会しました。
|
|
747
|
+
waitlist:
|
|
748
|
+
invalid: 順番待ちリストに参加中に問題が発生しました。
|
|
749
|
+
success: ミーティングの順番待ちリストへの登録が完了しました。登録が確定した場合は通知されます。
|
|
697
750
|
type_of_meeting:
|
|
698
751
|
hybrid: ハイブリッド
|
|
699
752
|
in_person: 対面
|
|
@@ -705,11 +758,6 @@ ja:
|
|
|
705
758
|
withdraw:
|
|
706
759
|
error: ミーティングを取り消す際に問題がありました。
|
|
707
760
|
success: ミーティングは正常に取り下げられました。
|
|
708
|
-
metrics:
|
|
709
|
-
meetings:
|
|
710
|
-
description: 作成されたミーティング数
|
|
711
|
-
object: ミーティング
|
|
712
|
-
title: ミーティング
|
|
713
761
|
open_data:
|
|
714
762
|
help:
|
|
715
763
|
meeting_comments:
|
|
@@ -720,11 +768,10 @@ ja:
|
|
|
720
768
|
commentable_type: コメント対象の種別 (結果、提案など)
|
|
721
769
|
comments: ミーティングのコメントデータ
|
|
722
770
|
created_at: このコメントが作成された日時
|
|
723
|
-
depth:
|
|
771
|
+
depth: コメントがコメントツリーのどこに位置しているか(回答、または回答の回答である場合)
|
|
724
772
|
id: このコメントのID
|
|
725
773
|
locale: このコメントを残すときに参加者が使っていたロケール(言語)
|
|
726
774
|
root_commentable_url: このコメントに関連するリソースの URL
|
|
727
|
-
user_group: コメントを作成したユーザーグループの名前 (もしあれば)
|
|
728
775
|
meetings:
|
|
729
776
|
address: ミーティングの場所、対面で行われ物理的な場所がある場合の所在地
|
|
730
777
|
attachments: このミーティングの添付ファイル数
|
|
@@ -742,7 +789,6 @@ ja:
|
|
|
742
789
|
created_at: ミーティングの作成日時
|
|
743
790
|
customize_registration_email: 登録時にカスタムメールを許可する機能
|
|
744
791
|
decidim_author_type: ミーティング作成者の投稿者タイプ
|
|
745
|
-
decidim_user_group_id: ミーティングに関与する人々のユーザーグループID
|
|
746
792
|
description: ミーティングの説明
|
|
747
793
|
end_time: このミーティングの終了日時
|
|
748
794
|
follows_count: ミーティングのフォロー数
|
|
@@ -792,6 +838,8 @@ ja:
|
|
|
792
838
|
statistics:
|
|
793
839
|
attendees_count: ミーティング参加者
|
|
794
840
|
meetings_count: ミーティング
|
|
841
|
+
meetings_count_tooltip: オンラインまたは対面で開催されたミーティングの合計数です。
|
|
842
|
+
participatory_space_meetings_count: ミーティング
|
|
795
843
|
devise:
|
|
796
844
|
mailer:
|
|
797
845
|
join_meeting:
|
data/config/locales/lb.yml
CHANGED
|
@@ -17,7 +17,6 @@ lb:
|
|
|
17
17
|
customize_registration_email: Registrierungs-E-Mail anpassen
|
|
18
18
|
decidim_category_id: Kategorie
|
|
19
19
|
decidim_scope_id: Ëmfang
|
|
20
|
-
decidim_user_group_id: Benutzergruppe
|
|
21
20
|
description: Beschreiwung
|
|
22
21
|
id: ID
|
|
23
22
|
location: Standuert
|
|
@@ -66,9 +65,6 @@ lb:
|
|
|
66
65
|
values:
|
|
67
66
|
'false': Vergaangenes
|
|
68
67
|
'true': Demnächst stattfannend
|
|
69
|
-
with_any_origin:
|
|
70
|
-
values:
|
|
71
|
-
user_group: Benotzergruppen
|
|
72
68
|
with_any_type:
|
|
73
69
|
label: Typ vu Versammlung
|
|
74
70
|
meeting_copies:
|
|
@@ -92,14 +88,12 @@ lb:
|
|
|
92
88
|
creation_enabled_for_participants: Teilnehmer können Besprechungen erstellen
|
|
93
89
|
default_registration_terms: Standard-Registrierungsbedingungen
|
|
94
90
|
enable_pads_creation: Aktivieren Sie die Pads-Erstellung
|
|
95
|
-
registration_code_enabled: Registrierungscode aktiviert
|
|
96
91
|
resources_permissions_enabled: Aktionsberechtigungen können für jedes Meeting festgelegt werden
|
|
97
92
|
terms_and_conditions_url_for_meeting_creators: Nutzungsbedingungen URL für Meeting-Ersteller
|
|
98
93
|
step:
|
|
99
94
|
announcement: Ankündigung
|
|
100
95
|
comments_blocked: Kommentare blockiert
|
|
101
96
|
creation_enabled_for_participants: Besprechung-Erstellung durch Teilnehmer aktiviert
|
|
102
|
-
creation_enabled_for_user_groups: Besprechung-Erstellung durch Benutzergruppen aktiviert
|
|
103
97
|
events:
|
|
104
98
|
meetings:
|
|
105
99
|
meeting_closed:
|
|
@@ -126,14 +120,10 @@ lb:
|
|
|
126
120
|
email_subject: Slots der Sitzung "%{resource_title}" über %{percentage}% belegt
|
|
127
121
|
notification_title: Die Slots der Sitzung <a href="%{resource_path}">%{resource_title}</a> sind zu über %{percentage}% belegt.
|
|
128
122
|
meeting_updated:
|
|
129
|
-
email_intro: 'Die Sitzung "%{resource_title}" wurde aktualisiert. Sie können die neue Version auf der Sitzungs-Seite lesen:'
|
|
130
123
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Sitzung "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
|
131
124
|
email_subject: Die Sitzung "%{resource_title}" wurde aktualisiert
|
|
132
|
-
notification_title: Die Sitzung <a href="%{resource_path}">%{resource_title}</a> wurde aktualisiert.
|
|
133
125
|
registration_code_validated:
|
|
134
126
|
email_intro: Ihr Registrierungscode "%{registration_code}" für die Sitzung "%{resource_title}" wurde bestätigt.
|
|
135
|
-
upcoming_meeting:
|
|
136
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Sitzung "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
|
137
127
|
meetings:
|
|
138
128
|
admin:
|
|
139
129
|
agenda:
|
|
@@ -149,7 +139,6 @@ lb:
|
|
|
149
139
|
create: Erstellen
|
|
150
140
|
title: Neue Agenda
|
|
151
141
|
exports:
|
|
152
|
-
answers: Antworten
|
|
153
142
|
meeting_comments: Kommentare
|
|
154
143
|
meetings: Treffen
|
|
155
144
|
registrations: Anmeldungen
|
|
@@ -211,6 +200,7 @@ lb:
|
|
|
211
200
|
form:
|
|
212
201
|
available_slots_help: Belassen Sie es auf 0, wenn Sie unbegrenzte Plätze zur Verfügung haben.
|
|
213
202
|
invites: Aluedungen
|
|
203
|
+
manage_questions: Fragen
|
|
214
204
|
recommendation_message: Aus Datenschutzgründen empfehlen wir, dass Sie dieses Einschreibeformular löschen, wenn es nicht länger benötigt wird. Standardmäßig ist das 3 Monate nachdem die Besprechung durchgeführt wurde.
|
|
215
205
|
registration_email_help: Dieser Text erscheint in der Mitte der Registrierungs-E-Mail, direkt nach dem Registrierungscode.
|
|
216
206
|
registration_form: Anmeldeformular
|
|
@@ -281,7 +271,6 @@ lb:
|
|
|
281
271
|
meeting_minutes: Sitzungsprotokolle
|
|
282
272
|
no_slots_available: Keine Steckplätze verfügbar
|
|
283
273
|
organizations: Teilnahme an Organisationen
|
|
284
|
-
registration_code_help_text: Ihr Registrierungscode
|
|
285
274
|
registration_state:
|
|
286
275
|
validated: GÜLTIG
|
|
287
276
|
validation_pending: Validierung ausstehend
|
|
@@ -307,9 +296,6 @@ lb:
|
|
|
307
296
|
official_meeting: Offizielle Besprechung
|
|
308
297
|
start_time: Ufanksdatum
|
|
309
298
|
title: Titel
|
|
310
|
-
metrics:
|
|
311
|
-
meetings:
|
|
312
|
-
title: Meetings
|
|
313
299
|
resource_links:
|
|
314
300
|
proposals_from_meeting:
|
|
315
301
|
meeting_proposal: 'Ähnliche Vorschläge:'
|
data/config/locales/lt.yml
CHANGED
|
@@ -17,7 +17,6 @@ lt:
|
|
|
17
17
|
customize_registration_email: Redaguoti registracijos laišką
|
|
18
18
|
decidim_category_id: Kategorija
|
|
19
19
|
decidim_scope_id: Apimtis
|
|
20
|
-
decidim_user_group_id: Naudotojų grupė
|
|
21
20
|
description: Aprašymas
|
|
22
21
|
end_time: Pabaigos laikas
|
|
23
22
|
id: ID
|
|
@@ -111,7 +110,6 @@ lt:
|
|
|
111
110
|
values:
|
|
112
111
|
official: Oficialūs
|
|
113
112
|
participants: Dalyvis
|
|
114
|
-
user_group: Naudotojų Grupės
|
|
115
113
|
with_any_type:
|
|
116
114
|
label: Susitikimo tipas
|
|
117
115
|
values:
|
|
@@ -140,14 +138,12 @@ lt:
|
|
|
140
138
|
default_registration_terms: Numatytos registracijos sąlygos
|
|
141
139
|
enable_pads_creation: Leisti bendrų dokumentų kūrimą
|
|
142
140
|
maps_enabled: Žemėlapiai įjungti
|
|
143
|
-
registration_code_enabled: Registracijos kodas įjungtas
|
|
144
141
|
resources_permissions_enabled: Kiekvienam posėdžiui galima nustatyti leistinus veiksmus
|
|
145
142
|
terms_and_conditions_url_for_meeting_creators: Naudojimo taisyklių ir sąlygų URL susirinkimų kūrėjams
|
|
146
143
|
step:
|
|
147
144
|
announcement: Pranešimas
|
|
148
145
|
comments_blocked: Komentarai užblokuoti
|
|
149
146
|
creation_enabled_for_participants: Galimybė dalyviams rengti susirinkimus įjungta
|
|
150
|
-
creation_enabled_for_user_groups: Galimybė dalyvių grupėms rengti susirinkimus įjungta
|
|
151
147
|
events:
|
|
152
148
|
meetings:
|
|
153
149
|
meeting_closed:
|
|
@@ -175,10 +171,8 @@ lt:
|
|
|
175
171
|
email_subject: Susitikimui „%{resource_title}“ skirti laiko tarpsniai sudaro daugiau kaip %{percentage}%
|
|
176
172
|
notification_title: Susitikimui <a href="%{resource_path}">%{resource_title}</a> skirti laiko tarpsniai sudaro daugiau kaip %{percentage}%.
|
|
177
173
|
meeting_updated:
|
|
178
|
-
email_intro: '"%{resource_title}" susitikimas buvo atnaujintas. Naująją versiją galite perskaityti susitikimo puslapyje:'
|
|
179
174
|
email_outro: Gavote šį pranešimą nes sekate "%{resource_title}" susirinkimą. Galite jo nebesekti paspaudę ant ankstesnės nuorodos.
|
|
180
175
|
email_subject: '"%{resource_title}" susitikimas buvo atnaujintas'
|
|
181
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> susitikimas buvo atnaujintas.
|
|
182
176
|
registration_code_validated:
|
|
183
177
|
email_intro: Jūsų "%{resource_title}" susitikimo registracijos kodas "%{registration_code}" buvo patvirtintas.
|
|
184
178
|
email_outro: Šį pranešimą gavote dėl to, kad jūsų "%{resource_title}“ susitikimo registracijos kodas buvo patvirtintas.
|
|
@@ -189,11 +183,6 @@ lt:
|
|
|
189
183
|
email_outro: Gavote šį pranešimą nes sekate "%{resource_title}" susirinkimą. Galite jo nebesekti paspaudę ant ankstesnės nuorodos.
|
|
190
184
|
email_subject: '"%{resource_title}" posėdžio registracijos įjungtos.'
|
|
191
185
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> Susirinkimas leidžia registruotis.
|
|
192
|
-
upcoming_meeting:
|
|
193
|
-
email_intro: '%{resource_title} susirinkimas prasidės už mažiau nei 48 val.'
|
|
194
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate „%{resource_title}“ susirinkimą. Jūs galite jo nebesekti spustelėdami ankstesnę nuorodą.
|
|
195
|
-
email_subject: '"%{resource_title}" susirinkimas prasidės už mažiau nei 48 val.'
|
|
196
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> Susirinkimas prasidės už mažiau nei 48 val.
|
|
197
186
|
forms:
|
|
198
187
|
meetings:
|
|
199
188
|
attendees_count_help_text: Nepamirškite įrašyti dalyvių susirinkime skaičiaus (tiek dalyvaujančių gyvai, tiek nuotoliniu būdu).
|
|
@@ -212,8 +201,6 @@ lt:
|
|
|
212
201
|
meetings:
|
|
213
202
|
actions:
|
|
214
203
|
agenda: Darbotvarkė
|
|
215
|
-
attachment_collections: Aplankai
|
|
216
|
-
attachments: Priedai
|
|
217
204
|
close: Uždaryti
|
|
218
205
|
edit: Redaguoti
|
|
219
206
|
invalid_destroy:
|
|
@@ -258,7 +245,6 @@ lt:
|
|
|
258
245
|
invalid: Atnaujinant šią darbotvarkę iškilo problema.
|
|
259
246
|
success: Darbotvarkė atnaujinta.
|
|
260
247
|
exports:
|
|
261
|
-
answers: Atsakymai
|
|
262
248
|
meeting_comments: Komentarai
|
|
263
249
|
meetings: Susirinkimai
|
|
264
250
|
registrations: Registracijos
|
|
@@ -342,6 +328,7 @@ lt:
|
|
|
342
328
|
form:
|
|
343
329
|
available_slots_help: Jei nėra ribojimų įrašykite 0.
|
|
344
330
|
invites: Pakvietimai
|
|
331
|
+
manage_questions: Klausimai
|
|
345
332
|
recommendation_message: Dėl privatumo priežasčių rekomenduojame ištrinti šią įrašo formą, kai jos nebereikės. Pagal numatytuosius parametrus, ji ištrinama praėjus 3 mėnesiams nuo susirinkimo pabaigos.
|
|
346
333
|
registration_email_help: Šis tekstas bus rodomas registracijos patvirtinimo el. laiško viduryje. Iš karto po registracijos kodo.
|
|
347
334
|
registration_form: Registracijos forma
|
|
@@ -461,7 +448,6 @@ lt:
|
|
|
461
448
|
all: Visi
|
|
462
449
|
official: Oficialus
|
|
463
450
|
participants: Dalyviai
|
|
464
|
-
user_group: Grupės
|
|
465
451
|
search: Ieškoti
|
|
466
452
|
type: Tipas
|
|
467
453
|
type_values:
|
|
@@ -472,7 +458,6 @@ lt:
|
|
|
472
458
|
form:
|
|
473
459
|
address_help: 'Adresas: jį naudoja „Geocoder“, kad rastų vietą'
|
|
474
460
|
available_slots_help: Jei nėra ribojimų įrašykite 0
|
|
475
|
-
create_as: Sukurti posėdį kaip
|
|
476
461
|
disclaimer: 'Perspėjimas: Naudodami išorinę registracijos sistemą jūs suprantate, kad %{organization} organizatoriai nėra atsakingi už naudotojų išorinei paslaugai pateiktus duomenis.'
|
|
477
462
|
location_help: 'Vieta: naudotojams skirtas pranešimas, kuriame nurodoma susitikimo vieta'
|
|
478
463
|
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.'
|
|
@@ -512,7 +497,6 @@ lt:
|
|
|
512
497
|
micro_camera_permissions_warning: Kai paspausite ant žemiau esančio mygtuko, Jūsų paprašys leidimo naudoti mikrofoną ir kamerą, bei prisijungsite prie susirinkimo
|
|
513
498
|
no_slots_available: Nebėra vietų
|
|
514
499
|
organizations: Dalyvaujančios organizacijos
|
|
515
|
-
registration_code_help_text: Jūsų registracijos kodas
|
|
516
500
|
registration_state:
|
|
517
501
|
validated: PATIKRINTA
|
|
518
502
|
validation_pending: VYKSTA PATIKRINIMAS
|
|
@@ -549,13 +533,9 @@ lt:
|
|
|
549
533
|
title: Pavadinimas
|
|
550
534
|
polls:
|
|
551
535
|
questions:
|
|
552
|
-
index:
|
|
553
|
-
empty_questions: Viso šio susitikimo metu bus siunčiami klausimai ir galėsite į juos atsakyti. Jie bus rodomi čia.
|
|
554
536
|
index_admin:
|
|
555
537
|
edit: Redaguoti administratoriaus skydelyje
|
|
556
538
|
question: Klausimas
|
|
557
|
-
received_answer: gautas atsakymas
|
|
558
|
-
received_answers: gauti atsakymai
|
|
559
539
|
results: Rezultatai
|
|
560
540
|
send: Siųsti
|
|
561
541
|
sent: Išsiųsta
|
|
@@ -565,7 +545,6 @@ lt:
|
|
|
565
545
|
question_replied: Klausimas atsakytas
|
|
566
546
|
reply_question: Atsakyti į klausimą
|
|
567
547
|
public_participants_list:
|
|
568
|
-
attending_organizations: Organizacijos
|
|
569
548
|
attending_participants: Dalyviai
|
|
570
549
|
hidden_participants_count:
|
|
571
550
|
one: ir dar %{count} žmogus
|
|
@@ -577,7 +556,6 @@ lt:
|
|
|
577
556
|
confirmation:
|
|
578
557
|
confirmed_html: Jūsų registracija į susirinkimą <a href="%{url}">%{title}</a> buvo patvirtinta.
|
|
579
558
|
details: Išsamią susirinkimo informaciją rasite priede.
|
|
580
|
-
registration_code: Jūsų registracijos kodas yra %{code}.
|
|
581
559
|
registration_type:
|
|
582
560
|
on_different_platform: Kitoje platformoje
|
|
583
561
|
on_this_platform: Šioje platformoje
|
|
@@ -602,11 +580,6 @@ lt:
|
|
|
602
580
|
withdraw: Atsiimta
|
|
603
581
|
withdraw:
|
|
604
582
|
success: Susirinkimas sėkmingai išimtas.
|
|
605
|
-
metrics:
|
|
606
|
-
meetings:
|
|
607
|
-
description: Sukurtų susirinkimų skaičius
|
|
608
|
-
object: susirinkimai
|
|
609
|
-
title: Susirinkimai
|
|
610
583
|
participatory_spaces:
|
|
611
584
|
highlighted_meetings:
|
|
612
585
|
past_meetings: Įvykę susirinkimai
|
data/config/locales/lv.yml
CHANGED
|
@@ -95,10 +95,8 @@ lv:
|
|
|
95
95
|
email_subject: Piešķirtais laiks runāšanai sanāksmē "%{resource_title}" pārsniedz %{percentage}%.
|
|
96
96
|
notification_title: Piešķirtais laiks runāšanai sanāksmē <a href="%{resource_path}">%{resource_title}</a> pārsniedz %{percentage}%.
|
|
97
97
|
meeting_updated:
|
|
98
|
-
email_intro: 'Sanāksme "%{resource_title}" tika atjaunināta. Jūs varat lasīt jauno versiju tās lapā:'
|
|
99
98
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
|
100
99
|
email_subject: Sanāksme "%{resource_title}" tika atjaunināta
|
|
101
|
-
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> tika atjaunināta.
|
|
102
100
|
registration_code_validated:
|
|
103
101
|
email_intro: Jūsu reģistrācijas kods "%{registration_code}" sanāksmei "%{resource_title}" ir validēts.
|
|
104
102
|
email_outro: Jūs saņēmāt šo paziņojumu, jo jūsu reģistrācijas kods sanāksmei "%{resource_title}" ir validēts.
|
|
@@ -109,11 +107,6 @@ lv:
|
|
|
109
107
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
|
110
108
|
email_subject: Sanāksme "%{resource_title}" ir atvērta reģistrācijai.
|
|
111
109
|
notification_title: Sanāksmei <a href="%{resource_path}">%{resource_title}</a> ir atvērta reģistrācija.
|
|
112
|
-
upcoming_meeting:
|
|
113
|
-
email_intro: Sanāksme "%{resource_title}" sāksies ātrāk nekā pēc 48 stundām.
|
|
114
|
-
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat sanāksmei "%{resource_title}". Jūs varat atsekot tai no iepriekšējās saites.
|
|
115
|
-
email_subject: Sanāksme "%{resource_title}" sāksies ātrāk nekā pēc 48 stundām.
|
|
116
|
-
notification_title: Sanāksme <a href="%{resource_path}">%{resource_title}</a> sāksies ātrāk nekā pēc 48 stundām.
|
|
117
110
|
gamification:
|
|
118
111
|
badges:
|
|
119
112
|
attended_meetings:
|
|
@@ -127,8 +120,6 @@ lv:
|
|
|
127
120
|
meetings:
|
|
128
121
|
actions:
|
|
129
122
|
agenda: Darba kārtība
|
|
130
|
-
attachment_collections: Mapes
|
|
131
|
-
attachments: Pielikumi
|
|
132
123
|
close: Aizvērt
|
|
133
124
|
edit: Labot
|
|
134
125
|
preview: Priekšskatīt
|
|
@@ -270,7 +261,6 @@ lv:
|
|
|
270
261
|
meeting_minutes: Sanāksmes protokols
|
|
271
262
|
no_slots_available: Nav pieejama laika runāšanai
|
|
272
263
|
organizations: Apmeklējošās organizācijas
|
|
273
|
-
registration_code_help_text: Jūsu reģistrācijas kods
|
|
274
264
|
registration_state:
|
|
275
265
|
validated: VALIDĒTS
|
|
276
266
|
validation_pending: GAIDA VALIDĀCIJU
|
|
@@ -301,7 +291,6 @@ lv:
|
|
|
301
291
|
confirmation:
|
|
302
292
|
confirmed_html: Jūsu reģistrācija <a href="%{url}">%{title}</a> sanāksmei ir apstiprināta.
|
|
303
293
|
details: Sīkāka informācija par sanāksmi atrodama pielikumā.
|
|
304
|
-
registration_code: Jūsu reģistrācijas kods ir %{code}.
|
|
305
294
|
registrations:
|
|
306
295
|
create:
|
|
307
296
|
invalid: Pievienojoties šai sanāksmei, radās problēma
|
|
@@ -314,11 +303,6 @@ lv:
|
|
|
314
303
|
types:
|
|
315
304
|
private_meeting: Privāta sanāksme
|
|
316
305
|
transparent: Caurskatāms
|
|
317
|
-
metrics:
|
|
318
|
-
meetings:
|
|
319
|
-
description: Izveidoto sanāksmju skaits
|
|
320
|
-
object: sanāksmes
|
|
321
|
-
title: Sanāksmes
|
|
322
306
|
participatory_spaces:
|
|
323
307
|
highlighted_meetings:
|
|
324
308
|
past_meetings: Iepriekšējās sanāksmes
|