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