decidim-elections 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_elections_manifest.js +2 -0
  3. data/app/assets/javascripts/decidim/elections/vote.js.es6 +170 -0
  4. data/app/assets/stylesheets/decidim/elections/elections.scss +10 -0
  5. data/app/assets/stylesheets/decidim/elections/focus/_evote.scss +279 -0
  6. data/app/assets/stylesheets/decidim/elections/focus/_focus.scss +128 -0
  7. data/app/cells/decidim/elections/election_cell.rb +22 -0
  8. data/app/cells/decidim/elections/election_m/data.erb +19 -0
  9. data/app/cells/decidim/elections/election_m/footer.erb +5 -0
  10. data/app/cells/decidim/elections/election_m_cell.rb +103 -0
  11. data/app/cells/decidim/elections/voting_step_navigation/show.erb +29 -0
  12. data/app/cells/decidim/elections/voting_step_navigation_cell.rb +42 -0
  13. data/app/commands/decidim/elections/admin/create_election.rb +14 -3
  14. data/app/commands/decidim/elections/admin/create_question.rb +2 -1
  15. data/app/commands/decidim/elections/admin/destroy_election.rb +4 -0
  16. data/app/commands/decidim/elections/admin/import_proposals_to_elections.rb +87 -0
  17. data/app/commands/decidim/elections/admin/publish_election.rb +54 -0
  18. data/app/commands/decidim/elections/admin/unpublish_election.rb +43 -0
  19. data/app/commands/decidim/elections/admin/update_election.rb +15 -3
  20. data/app/commands/decidim/elections/admin/update_question.rb +2 -1
  21. data/app/controllers/concerns/decidim/elections/orderable.rb +36 -0
  22. data/app/controllers/decidim/elections/admin/answers_controller.rb +9 -1
  23. data/app/controllers/decidim/elections/admin/elections_controller.rb +26 -0
  24. data/app/controllers/decidim/elections/admin/proposals_imports_controller.rb +53 -0
  25. data/app/controllers/decidim/elections/elections_controller.rb +68 -0
  26. data/app/controllers/decidim/elections/votes_controller.rb +50 -0
  27. data/app/events/decidim/elections/election_published_event.rb +8 -0
  28. data/app/forms/decidim/elections/admin/answer_import_proposals_form.rb +41 -0
  29. data/app/forms/decidim/elections/admin/election_form.rb +15 -2
  30. data/app/forms/decidim/elections/admin/question_form.rb +1 -0
  31. data/app/helpers/decidim/elections/application_helper.rb +12 -0
  32. data/app/helpers/decidim/elections/election_cells_helper.rb +12 -0
  33. data/app/helpers/decidim/elections/votes_helper.rb +21 -0
  34. data/app/models/decidim/elections/answer.rb +5 -1
  35. data/app/models/decidim/elections/election.rb +69 -0
  36. data/app/models/decidim/elections/question.rb +9 -2
  37. data/app/permissions/decidim/elections/admin/permissions.rb +13 -3
  38. data/app/permissions/decidim/elections/permissions.rb +35 -0
  39. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +41 -0
  40. data/app/presenters/decidim/elections/election_presenter.rb +28 -0
  41. data/app/queries/decidim/elections/filtered_elections.rb +37 -0
  42. data/app/services/decidim/elections/election_search.rb +35 -0
  43. data/app/types/decidim/elections/election_question_type.rb +2 -2
  44. data/app/types/decidim/elections/election_type.rb +2 -1
  45. data/app/types/decidim/elections/elections_type.rb +1 -1
  46. data/app/views/decidim/elections/admin/answers/index.html.erb +2 -1
  47. data/app/views/decidim/elections/admin/elections/_form.html.erb +2 -4
  48. data/app/views/decidim/elections/admin/elections/index.html.erb +23 -1
  49. data/app/views/decidim/elections/admin/proposals_imports/new.html.erb +24 -0
  50. data/app/views/decidim/elections/admin/questions/_form.html.erb +4 -0
  51. data/app/views/decidim/elections/admin/questions/index.html.erb +3 -1
  52. data/app/views/decidim/elections/elections/_count.html.erb +1 -0
  53. data/app/views/decidim/elections/elections/_election.html.erb +1 -0
  54. data/app/views/decidim/elections/elections/_elections.html.erb +24 -0
  55. data/app/views/decidim/elections/elections/_filters.html.erb +24 -0
  56. data/app/views/decidim/elections/elections/_filters_small_view.html.erb +18 -0
  57. data/app/views/decidim/elections/elections/index.html.erb +24 -0
  58. data/app/views/decidim/elections/elections/index.js.erb +10 -0
  59. data/app/views/decidim/elections/elections/show.html.erb +64 -0
  60. data/app/views/decidim/elections/votes/_election_votes_confirm.html.erb +53 -0
  61. data/app/views/decidim/elections/votes/_election_votes_confirm_footer.html.erb +24 -0
  62. data/app/views/decidim/elections/votes/_election_votes_confirmed.html.erb +26 -0
  63. data/app/views/decidim/elections/votes/_election_votes_encrypting.html.erb +20 -0
  64. data/app/views/decidim/elections/votes/_election_votes_header.html.erb +8 -0
  65. data/app/views/decidim/elections/votes/_election_votes_modal.html.erb +46 -0
  66. data/app/views/decidim/elections/votes/_election_votes_question.html.erb +49 -0
  67. data/app/views/decidim/elections/votes/_election_votes_steps_header.html.erb +12 -0
  68. data/app/views/decidim/elections/votes/new.html.erb +44 -0
  69. data/app/views/layouts/decidim/_election_votes_header.html.erb +13 -0
  70. data/app/views/layouts/decidim/election_votes.html.erb +24 -0
  71. data/config/locales/am-ET.yml +1 -0
  72. data/config/locales/bg.yml +7 -0
  73. data/config/locales/ca.yml +136 -6
  74. data/config/locales/cs.yml +133 -1
  75. data/config/locales/da.yml +1 -0
  76. data/config/locales/de.yml +134 -4
  77. data/config/locales/el.yml +11 -1
  78. data/config/locales/en.yml +131 -1
  79. data/config/locales/eo.yml +1 -0
  80. data/config/locales/es-MX.yml +131 -1
  81. data/config/locales/es-PY.yml +131 -1
  82. data/config/locales/es.yml +134 -4
  83. data/config/locales/et.yml +1 -0
  84. data/config/locales/fi-plain.yml +131 -1
  85. data/config/locales/fi.yml +131 -1
  86. data/config/locales/fr-CA.yml +131 -1
  87. data/config/locales/fr.yml +131 -1
  88. data/config/locales/gl.yml +111 -0
  89. data/config/locales/hr.yml +1 -0
  90. data/config/locales/hu.yml +18 -0
  91. data/config/locales/is.yml +1 -0
  92. data/config/locales/it.yml +98 -1
  93. data/config/locales/ja-JP.yml +95 -8
  94. data/config/locales/ja.yml +254 -0
  95. data/config/locales/ko-KR.yml +1 -0
  96. data/config/locales/ko.yml +1 -0
  97. data/config/locales/lt.yml +1 -0
  98. data/config/locales/{lv-LV.yml → lv.yml} +11 -1
  99. data/config/locales/mt.yml +1 -0
  100. data/config/locales/nl.yml +92 -1
  101. data/config/locales/no.yml +63 -0
  102. data/config/locales/om-ET.yml +1 -0
  103. data/config/locales/pl.yml +126 -1
  104. data/config/locales/pt.yml +84 -1
  105. data/config/locales/ro-RO.yml +85 -1
  106. data/config/locales/si-LK.yml +1 -0
  107. data/config/locales/so-SO.yml +1 -0
  108. data/config/locales/sv.yml +122 -2
  109. data/config/locales/sw-KE.yml +1 -0
  110. data/config/locales/ti-ER.yml +1 -0
  111. data/config/locales/tr-TR.yml +261 -0
  112. data/config/locales/vi-VN.yml +1 -0
  113. data/config/locales/vi.yml +1 -0
  114. data/config/locales/zh-CN.yml +254 -0
  115. data/config/locales/zh-TW.yml +1 -0
  116. data/db/migrate/20200601141412_add_published_at_to_elections.rb +7 -0
  117. data/db/migrate/20200807125040_remove_subtitle_from_decidim_elections.rb +7 -0
  118. data/db/migrate/20200910103648_add_min_selections_to_decidim_elections_questions.rb +7 -0
  119. data/lib/decidim/elections.rb +5 -0
  120. data/lib/decidim/elections/admin_engine.rb +7 -0
  121. data/lib/decidim/elections/bulletin_board_client.rb +35 -0
  122. data/lib/decidim/elections/component.rb +17 -12
  123. data/lib/decidim/elections/engine.rb +8 -1
  124. data/lib/decidim/elections/test/factories.rb +59 -6
  125. data/lib/decidim/elections/version.rb +1 -1
  126. data/lib/tasks/decidim_elections.rake +16 -0
  127. metadata +84 -16
@@ -27,13 +27,15 @@ ja:
27
27
  decidim/elections/answer:
28
28
  other: 回答
29
29
  decidim/elections/election:
30
- other: 選挙
30
+ other: <unk>
31
31
  decidim/elections/question:
32
32
  other: 質問
33
33
  decidim:
34
34
  components:
35
35
  elections:
36
- name: 選挙
36
+ actions:
37
+ vote: 投票
38
+ name: <unk>
37
39
  settings:
38
40
  global:
39
41
  announcement: お知らせ
@@ -44,9 +46,14 @@ ja:
44
46
  confirm_destroy: よろしいですか?
45
47
  destroy: 破壊
46
48
  edit: 編集
49
+ edit_answers: 回答を編集
50
+ edit_questions: 質問を編集
51
+ import: 提案を回答にインポート
47
52
  new: 新しい %{name}
48
53
  preview: プレビュー
54
+ publish: 公開
49
55
  title: アクション
56
+ unpublish: 公開しない
50
57
  admin:
51
58
  answers:
52
59
  create:
@@ -77,10 +84,14 @@ ja:
77
84
  title: 選挙を編集
78
85
  update: 選挙を更新
79
86
  index:
80
- title: 選挙
87
+ title: <unk>
81
88
  new:
82
- create: 選挙を作成
83
- title: 新しい選挙
89
+ create: 選択を作成
90
+ title: 新しい選択
91
+ publish:
92
+ success: 選挙は正常に公開されました。
93
+ unpublish:
94
+ success: 選挙は正常に非公開になりました。
84
95
  update:
85
96
  invalid: 選挙の更新中に問題が発生しました
86
97
  success: 選挙が正常に更新されました
@@ -88,9 +99,17 @@ ja:
88
99
  answer:
89
100
  name: 回答
90
101
  election:
91
- name: 選挙
102
+ name: <unk>
92
103
  question:
93
104
  name: 質問
105
+ proposals_imports:
106
+ create:
107
+ invalid: 提案を回答にインポートする際に問題が発生しました
108
+ success: "%{number} の提案が正常に回答にインポートされました"
109
+ new:
110
+ create: 提案を回答にインポート
111
+ no_components: この参加スペースには、回答に提案をインポートするための他の提案コンポーネントはありません。
112
+ select_component: コンポーネントを選択してください
94
113
  questions:
95
114
  create:
96
115
  invalid: この質問を作成中に問題が発生しました
@@ -109,6 +128,25 @@ ja:
109
128
  update:
110
129
  invalid: この質問の更新中に問題が発生しました
111
130
  success: 問題が正常に更新されました
131
+ admin_log:
132
+ election:
133
+ publish: "%{user_name} が %{resource_name} 選挙を公開しました"
134
+ unpublish: "%{user_name} が %{resource_name} 選挙を非公開にしました"
135
+ election_m:
136
+ footer:
137
+ take_part: 参加する
138
+ elections:
139
+ count:
140
+ elections_count:
141
+ other: "%{count} 選挙"
142
+ show:
143
+ back: すべての選挙
144
+ preview: プレビュー
145
+ vote: 投票
146
+ voting_period_status:
147
+ finished: '%{start_time} に投票が開始され、 %{end_time} に終了しました'
148
+ ongoing: '%{end_time} に投票が終了します'
149
+ upcoming: '%{start_time} に投票が終了します'
112
150
  models:
113
151
  answer:
114
152
  fields:
@@ -122,8 +160,57 @@ ja:
122
160
  question:
123
161
  fields:
124
162
  answers: 回答
125
- max_selections: 最大選挙数
163
+ max_selections: 最大選択
126
164
  title: タイトル
165
+ votes:
166
+ confirm:
167
+ answer: 回答
168
+ answer_number: 回答 %{number}
169
+ confirm: 確定
170
+ edit: 編集
171
+ header: 投票を確定
172
+ intro: あなたが投じようとしている投票の概要です。 <br> 投票を確定するか、回答を編集してください。
173
+ question: 質問 %{count}
174
+ confirmed:
175
+ back: 選挙に戻る
176
+ experience: ご利用いただき、どう思われますか?
177
+ feedback: フィードバックを送る
178
+ header: 投票が確定されました
179
+ lead: あなたの票は既に投じられました!
180
+ text: '投票が投票箱に正常に追加されたことを、次の識別子で確認できます: <strong class="evote__poll-id">%{e_vote_poll_id}</strong>'
181
+ verify_text: 確認するには、識別子をコピーして <a href="evote-verify">投票検証ページ</a> に貼り付けてください。
182
+ encrypting:
183
+ header: 投票の暗号化...
184
+ text: 投票は暗号化されており、匿名で投票することができます。
185
+ header:
186
+ confirm: 投票を確定
187
+ confirmed: 投票が確定されました
188
+ encrypting: 投票を確定
189
+ messages:
190
+ not_allowed: 現在、この選挙に投票することはできません。
191
+ modal:
192
+ close: 閉じる
193
+ proposal_header: '提案:'
194
+ new:
195
+ answer_choices: 最大 %{choices} 個の回答を選択できます。
196
+ more_information: 詳しい情報
197
+ preview_alert: これは投票ブースのプレビューです。
198
+ question_steps: '%{current_step} / %{total_steps} の質問'
199
+ selections: "%{selected} / %{max_selections}<br> の選択"
200
+ voting_step:
201
+ back: 戻る
202
+ continue: 次へ
203
+ events:
204
+ elections:
205
+ election_published:
206
+ email_intro: '%{resource_title} 選挙は %{participatory_space_title}に対して有効になりました。このページから見ることができます:'
207
+ email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
208
+ email_subject: '%{resource_title} の選挙は %{participatory_space_title} のために有効になりました。'
209
+ notification_title: <a href="%{resource_path}">%{resource_title}</a> の選挙が %{participatory_space_title} に有効になりました。
127
210
  participatory_processes:
128
211
  statistics:
129
- elections_count: 選挙
212
+ elections_count: <unk>
213
+ layouts:
214
+ decidim:
215
+ election_votes_header:
216
+ exit: 終了
@@ -0,0 +1,254 @@
1
+ ja:
2
+ activemodel:
3
+ attributes:
4
+ answer:
5
+ description: 説明
6
+ image: 画像
7
+ proposals: 関連する提案
8
+ title: タイトル
9
+ election:
10
+ description: 説明
11
+ end_time: 投票が終了します:
12
+ start_time: 投票開始
13
+ title: タイトル
14
+ question:
15
+ description: 説明
16
+ max_selections: 選択範囲の最大数
17
+ min_selections: 上記のどれでもない
18
+ title: タイトル
19
+ errors:
20
+ models:
21
+ answer:
22
+ attributes:
23
+ attachment:
24
+ needs_to_be_reattached: 再接続が必要
25
+ election:
26
+ attributes:
27
+ attachment:
28
+ needs_to_be_reattached: 再接続が必要
29
+ activerecord:
30
+ models:
31
+ decidim/elections/answer:
32
+ other: 回答
33
+ decidim/elections/election:
34
+ other: 選挙
35
+ decidim/elections/question:
36
+ other: 質問
37
+ decidim:
38
+ components:
39
+ elections:
40
+ actions:
41
+ vote: 投票
42
+ name: 選挙
43
+ settings:
44
+ global:
45
+ announcement: お知らせ
46
+ step:
47
+ announcement: お知らせ
48
+ elections:
49
+ actions:
50
+ confirm_destroy: よろしいですか?
51
+ destroy: 削除
52
+ edit: 編集
53
+ edit_answers: 回答を編集
54
+ edit_questions: 質問を編集
55
+ import: 提案を回答にインポート
56
+ new: 新しい %{name}
57
+ preview: プレビュー
58
+ publish: 公開
59
+ title: アクション
60
+ unpublish: 公開しない
61
+ admin:
62
+ answers:
63
+ create:
64
+ invalid: この回答を作成する際に問題が発生しました
65
+ success: 回答を作成しました
66
+ destroy:
67
+ invalid: この回答を削除する際に問題が発生しました
68
+ success: 正常に回答を削除しました
69
+ edit:
70
+ title: 回答を編集
71
+ update: 回答を更新
72
+ index:
73
+ invalid_max_selections: 最大選択数に届くには %{missing_answers} 個以上の回答が必要です
74
+ title: 回答
75
+ new:
76
+ create: 回答を作成
77
+ title: 新しい回答
78
+ update:
79
+ invalid: この回答の更新中に問題が発生しました
80
+ success: 回答が更新されました
81
+ elections:
82
+ create:
83
+ invalid: この選挙の作成中に問題が発生しました
84
+ success: 選挙が正常に作成されました
85
+ destroy:
86
+ invalid: この選挙を削除する際に問題が発生しました
87
+ success: 選挙は正常に削除されました
88
+ edit:
89
+ title: 選挙を編集
90
+ update: 選挙を更新
91
+ index:
92
+ no_bulletin_board: <a href="https://github.com/decidim/decidim-bulletin-board">BBS</a> が設定されていませんが、このモジュールを使用するためには必要です。このタスクはシステム管理者が行う必要があります。
93
+ title: 選挙
94
+ new:
95
+ create: 選挙を作成
96
+ title: 新しい選挙
97
+ publish:
98
+ success: 選挙は正常に公開されました。
99
+ unpublish:
100
+ success: 選挙は正常に非公開になりました。
101
+ update:
102
+ invalid: 選挙の更新中に問題が発生しました
103
+ success: 選挙が正常に更新されました
104
+ models:
105
+ answer:
106
+ name: 回答
107
+ election:
108
+ name: 選挙
109
+ question:
110
+ name: 質問
111
+ proposals_imports:
112
+ create:
113
+ invalid: 提案を回答にインポートする際に問題が発生しました
114
+ success: "%{number} の提案が正常に回答にインポートされました"
115
+ new:
116
+ create: 提案を回答にインポート
117
+ no_components: この参加スペースには、回答に提案をインポートするための他の提案コンポーネントはありません。
118
+ select_component: コンポーネントを選択してください
119
+ questions:
120
+ create:
121
+ invalid: この質問を作成中に問題が発生しました
122
+ success: 問題を作成しました
123
+ destroy:
124
+ invalid: この質問を削除する際に問題が発生しました
125
+ success: 問題が削除されました
126
+ edit:
127
+ title: 質問を編集
128
+ update: 質問を更新
129
+ index:
130
+ title: 質問
131
+ new:
132
+ create: 質問を作成
133
+ title: 新しい質問
134
+ update:
135
+ invalid: この質問の更新中に問題が発生しました
136
+ success: 問題が正常に更新されました
137
+ admin_log:
138
+ election:
139
+ publish: "%{user_name} が %{resource_name} 選挙を公開しました"
140
+ unpublish: "%{user_name} が %{resource_name} 選挙を非公開にしました"
141
+ election_m:
142
+ badge_name:
143
+ finished: 完了
144
+ ongoing: 有効
145
+ upcoming: 今後の予定
146
+ end_date: 終了
147
+ footer:
148
+ view: 表示
149
+ vote: 投票
150
+ label:
151
+ date: 日付
152
+ questions: 質問 %{count}
153
+ start_date: 開始
154
+ unspecified: 指定されていません
155
+ elections:
156
+ count:
157
+ elections_count:
158
+ other: "%{count} 選挙"
159
+ filters:
160
+ active: 有効
161
+ all: 全て
162
+ finished: 完了
163
+ search: 検索
164
+ state: 状態
165
+ upcoming: 今後の予定
166
+ filters_small_view:
167
+ close_modal: ウィンドウを閉じる
168
+ filter: 絞り込み
169
+ filter_by: 絞り込み条件
170
+ unfold: 展開
171
+ show:
172
+ back: すべての選挙
173
+ preview: プレビュー
174
+ vote: 投票
175
+ voting_period_status:
176
+ finished: '%{start_time} に投票が開始され、 %{end_time} に終了しました'
177
+ ongoing: '%{end_time} に投票が終了します'
178
+ upcoming: '%{start_time} に投票が終了します'
179
+ models:
180
+ answer:
181
+ fields:
182
+ proposals: 提案
183
+ title: タイトル
184
+ election:
185
+ fields:
186
+ end_time: 終了時刻
187
+ start_time: 開始
188
+ title: タイトル
189
+ question:
190
+ fields:
191
+ answers: 回答
192
+ max_selections: 最大選挙数
193
+ title: タイトル
194
+ orders:
195
+ label: 選挙の順序
196
+ older: 古い
197
+ recent: 新しい
198
+ votes:
199
+ confirm:
200
+ answer: 回答
201
+ answer_number: 回答 %{number}
202
+ confirm: 確定
203
+ edit: 編集
204
+ header: 投票を確定
205
+ intro: あなたが投じようとしている投票の概要です。 <br> 投票を確定するか、回答を編集してください。
206
+ nota_option: 空白
207
+ question: 質問 %{count}
208
+ confirmed:
209
+ back: 選挙に戻る
210
+ experience: ご利用いただき、どう思われますか?
211
+ feedback: フィードバックを送る
212
+ header: 投票が確定されました
213
+ lead: あなたの票は既に投じられました!
214
+ text: '投票が投票箱に正常に追加されたことを、次の識別子で確認できます: <strong class="evote__poll-id">%{e_vote_poll_id}</strong>'
215
+ verify_text: 確認するには、識別子をコピーして <a href="evote-verify">投票検証ページ</a> に貼り付けてください。
216
+ encrypting:
217
+ header: 投票の暗号化...
218
+ text: 投票は暗号化されており、匿名で投票することができます。
219
+ header:
220
+ confirm: 投票を確定
221
+ confirmed: 投票が確定されました
222
+ encrypting: 投票を確定
223
+ messages:
224
+ not_allowed: 現在、この選挙に投票することはできません。
225
+ modal:
226
+ close: 閉じる
227
+ proposal_header: '提案:'
228
+ new:
229
+ answer_choices: 最大 %{choices} 個の回答を選択できます
230
+ more_information: 詳しい情報
231
+ nota_option: 空白、もしくは上記のどれでもない
232
+ preview_alert: これは投票ブースのプレビューです。
233
+ question_steps: '%{current_step} / %{total_steps} の質問'
234
+ selections: "%{selected} / %{max_selections}<br> の選択"
235
+ voting_step:
236
+ back: 戻る
237
+ continue: 次へ
238
+ warnings:
239
+ no_elections_warning: 検索条件に一致する選挙がないか、または予定されている選挙がありません。
240
+ no_scheduled_elections_warning: 現在、予定された選挙はありませんが、ここでは記載されているすべての過去の選挙を見つけることができます。
241
+ events:
242
+ elections:
243
+ election_published:
244
+ email_intro: '%{resource_title} 選挙は %{participatory_space_title}に対して有効になりました。このページから見ることができます:'
245
+ email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。前のリンクに続く通知の受信を停止することができます。'
246
+ email_subject: '%{resource_title} の選挙は %{participatory_space_title} のために有効になりました。'
247
+ notification_title: <a href="%{resource_path}">%{resource_title}</a> の選挙が %{participatory_space_title} に有効になりました。
248
+ participatory_processes:
249
+ statistics:
250
+ elections_count: 選挙
251
+ layouts:
252
+ decidim:
253
+ election_votes_header:
254
+ exit: 終了
@@ -0,0 +1 @@
1
+ ko:
@@ -0,0 +1 @@
1
+ ko:
@@ -0,0 +1 @@
1
+ lt:
@@ -10,7 +10,6 @@ lv:
10
10
  description: Apraksts
11
11
  end_time: Balsošana beidzas plkst.
12
12
  start_time: Balsošanas sākas plkst.
13
- subtitle: Apakšvirsraksts
14
13
  title: Nosaukums
15
14
  question:
16
15
  description: Apraksts
@@ -50,6 +49,9 @@ lv:
50
49
  confirm_destroy: Vai esat pārliecināts?
51
50
  destroy: Dzēst
52
51
  edit: Labot
52
+ edit_answers: Rediģēt atbildes
53
+ edit_questions: Rediģēt jautājumus
54
+ import: Importēt priekšlikumus atbildēm
53
55
  new: Jauns %{name}
54
56
  preview: Priekšskatīt
55
57
  title: Darbības
@@ -97,6 +99,14 @@ lv:
97
99
  name: Vēlēšanas
98
100
  question:
99
101
  name: Jautājums
102
+ proposals_imports:
103
+ create:
104
+ invalid: Importējot priekšlikumus atbildēs, radās problēma
105
+ success: "%{number} priekšlikumi ir veiksmīgi importēti atbildēs"
106
+ new:
107
+ create: Importēt priekšlikumus atbildēm
108
+ no_components: Šajā līdzdalības telpā nav citu priekšlikumu komponentu, lai priekšlikumus importētu atbildēs.
109
+ select_component: Lūdzu, izvēlieties komponentu
100
110
  questions:
101
111
  create:
102
112
  invalid: Šī jautājuma izveides laikā radās problēma