decidim-consultations 0.26.5 → 0.26.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/consultations/consultation_m_cell.rb +1 -3
- data/app/scrubbers/decidim/consultations/question_title_scrubber.rb +17 -0
- data/app/views/decidim/consultations/admin/consultations/_form.html.erb +1 -1
- data/app/views/decidim/consultations/admin/question_configuration/_form.html.erb +1 -1
- data/app/views/decidim/consultations/admin/questions/_form.html.erb +3 -3
- data/app/views/decidim/consultations/consultations/_consultation_details.html.erb +1 -1
- data/app/views/decidim/consultations/consultations/_question.html.erb +1 -1
- data/app/views/decidim/consultations/questions/_vote_modal.html.erb +1 -1
- data/app/views/decidim/consultations/questions/show.html.erb +3 -3
- data/app/views/layouts/decidim/_question_header.html.erb +1 -1
- data/config/locales/ar.yml +21 -0
- data/config/locales/ca.yml +4 -0
- data/config/locales/cs.yml +4 -0
- data/config/locales/en.yml +4 -0
- data/config/locales/es-MX.yml +4 -0
- data/config/locales/es-PY.yml +4 -0
- data/config/locales/es.yml +4 -0
- data/config/locales/eu.yml +1 -1
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +4 -0
- data/config/locales/fi.yml +4 -0
- data/config/locales/fr-CA.yml +4 -0
- data/config/locales/fr.yml +4 -0
- data/config/locales/ja.yml +4 -0
- data/config/locales/kaa.yml +1 -0
- data/config/locales/sv.yml +4 -0
- data/config/locales/zh-TW.yml +368 -0
- data/lib/decidim/consultations/version.rb +1 -1
- metadata +13 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3252cf74e156e4d0a68e2e936c4e85b0efedba9d73ed72188da57bc6be1871d1
|
4
|
+
data.tar.gz: a6a629dc2499762e424098d04e22b1e347cd09c9baf652d7ff211bf4e355a41c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19b300e48483f343161bb6d543660aab316f7fb387bc4de166c6130f2efd128f94921bc37607993a7ad0e6f9e1dc2fbe073142ba91155ef42f32848d2f3baeb3
|
7
|
+
data.tar.gz: 98dde2f169bc050e857f7fc1c8672f3c9c416124997e8ee7f33932eaf75510eefaaa5559e5fc3c493f482096452686ec613a69e8a79216702bb77542771b74f4
|
@@ -34,9 +34,7 @@ module Decidim
|
|
34
34
|
# find the opening `<p>` tag and include the badge right after it. This
|
35
35
|
# makes the layout look good.
|
36
36
|
def description
|
37
|
-
|
38
|
-
text.sub!(/<p>/, "<p>#{render :badge}")
|
39
|
-
html_truncate(text, length: 100)
|
37
|
+
render(:badge) + truncate(strip_tags(super), length: 100)
|
40
38
|
end
|
41
39
|
|
42
40
|
def resource_path
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module Consultations
|
5
|
+
class QuestionTitleScrubber < Decidim::UserInputScrubber
|
6
|
+
private
|
7
|
+
|
8
|
+
def custom_allowed_tags
|
9
|
+
%w(strong em u b i br ul ol li p a code)
|
10
|
+
end
|
11
|
+
|
12
|
+
def custom_allowed_attributes
|
13
|
+
%w(class href target rel)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<div class="row column">
|
14
14
|
<%= form.number_field :max_votes, step: 1, min: 1 %>
|
15
15
|
<%= form.number_field :min_votes, step: 1, min: 1 %>
|
16
|
-
<%= form.translated :editor, :instructions,
|
16
|
+
<%= form.translated :editor, :instructions, lines: 5, toolbar: :content %>
|
17
17
|
</div>
|
18
18
|
</div>
|
19
19
|
</div>
|
@@ -7,7 +7,7 @@
|
|
7
7
|
|
8
8
|
<div class="card-section">
|
9
9
|
<div class="row column">
|
10
|
-
<%= form.translated :editor, :title,
|
10
|
+
<%= form.translated :editor, :title, lines: 5, autofocus: true, toolbar: :basic %>
|
11
11
|
</div>
|
12
12
|
|
13
13
|
<div class="row column">
|
@@ -23,11 +23,11 @@
|
|
23
23
|
</div>
|
24
24
|
|
25
25
|
<div class="row column">
|
26
|
-
<%= form.translated :editor, :question_context
|
26
|
+
<%= form.translated :editor, :question_context %>
|
27
27
|
</div>
|
28
28
|
|
29
29
|
<div class="row column">
|
30
|
-
<%= form.translated :editor, :what_is_decided
|
30
|
+
<%= form.translated :editor, :what_is_decided %>
|
31
31
|
</div>
|
32
32
|
|
33
33
|
<div class="row column">
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<div class="row section" id="consultation-details">
|
2
2
|
<div class="columns medium-6 large-5 large-push-1">
|
3
|
-
<p class="lead"><%=
|
3
|
+
<p class="lead"><%= decidim_sanitize_editor_admin translated_attribute(consultation.description) %></p>
|
4
4
|
</div>
|
5
5
|
<div class="columns medium-6 large-5 large-pull-1">
|
6
6
|
<% if consultation.introductory_video_url.blank? %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<div class="columns mediumlarge-8 large-9 card--process__column">
|
4
4
|
<div class="card__content">
|
5
5
|
<%= link_to decidim_consultations.question_path(question), class: "card__link" do %>
|
6
|
-
<h2 class="heading5"><%= decidim_sanitize translated_attribute
|
6
|
+
<h2 class="heading5"><%= decidim_sanitize translated_attribute(question.title), strip_tags: true %></h2>
|
7
7
|
<% end %>
|
8
8
|
<p><%= translated_attribute question.subtitle %></p>
|
9
9
|
</div>
|
@@ -10,7 +10,7 @@
|
|
10
10
|
<p><%= t "questions.vote_modal.contextual_help", scope: "decidim" %></p>
|
11
11
|
<div class="card card--secondary">
|
12
12
|
<div class="card__content">
|
13
|
-
<h4 class="heading5 text-center"><%= translated_attribute(question.title).
|
13
|
+
<h4 class="heading5 text-center"><%= decidim_sanitize translated_attribute(question.title), scrubber: Decidim::Consultations::QuestionTitleScrubber.new %></h4>
|
14
14
|
</div>
|
15
15
|
</div>
|
16
16
|
|
@@ -2,7 +2,7 @@
|
|
2
2
|
<div class="row">
|
3
3
|
<div class="columns medium-7 mediumlarge-8">
|
4
4
|
<div class="section">
|
5
|
-
<%=
|
5
|
+
<%= decidim_sanitize_editor_admin translated_attribute current_question.question_context %>
|
6
6
|
|
7
7
|
<div class="show-more">
|
8
8
|
<button class="button hollow small"><%= t "read_more", scope: "decidim.questions.show" %></button>
|
@@ -13,12 +13,12 @@
|
|
13
13
|
|
14
14
|
<div class="section">
|
15
15
|
<h2 class=section-heading><%= t "question.what_is_decided", scope: "activemodel.attributes" %></h2>
|
16
|
-
<p><%=
|
16
|
+
<p><%= decidim_sanitize_editor_admin translated_attribute(current_question.what_is_decided) %></p>
|
17
17
|
</div>
|
18
18
|
|
19
19
|
<div class="section">
|
20
20
|
<h2 class=section-heading><%= t "question.question_context", scope: "activemodel.attributes" %></h2>
|
21
|
-
<p><%=
|
21
|
+
<p><%= decidim_sanitize_editor_admin translated_attribute(current_question.question_context) %></p>
|
22
22
|
</div>
|
23
23
|
</div>
|
24
24
|
</div>
|
@@ -23,7 +23,7 @@
|
|
23
23
|
<%= yield :question_header_instructions if content_for? :question_header_instructions %>
|
24
24
|
|
25
25
|
<div class="row column consultations-title">
|
26
|
-
<h2 class="heading2"><%= decidim_sanitize translated_attribute
|
26
|
+
<h2 class="heading2"><%= decidim_sanitize translated_attribute(question.title), scrubber: Decidim::Consultations::QuestionTitleScrubber.new %></h2>
|
27
27
|
<% unless question.hashtag.blank? %>
|
28
28
|
<div class="text-center">
|
29
29
|
<%= link_to "##{question.hashtag}", twitter_hashtag_url(question.hashtag), target: "_blank" %>
|
data/config/locales/ar.yml
CHANGED
@@ -110,6 +110,7 @@ ar:
|
|
110
110
|
create:
|
111
111
|
error: كانت هناك مشكلة في إنشاء استشارة جديدة.
|
112
112
|
success: تم إنشاء التشاور بنجاح.
|
113
|
+
deprecation_warning: سيتم إهمال وحدة المشاورات في المستقبل القريب. نحن قيد العمل على نسخة جديدة آمنة تشفيرياً والمسماة التصويتات.
|
113
114
|
edit:
|
114
115
|
update: تحديث
|
115
116
|
form:
|
@@ -122,6 +123,7 @@ ar:
|
|
122
123
|
create: إنشاء
|
123
124
|
title: استشارة جديدة
|
124
125
|
results:
|
126
|
+
not_visible: وستكون النتائج متاحة لدى إغلاق المشاورات
|
125
127
|
participants: "%{count} مشارِكين"
|
126
128
|
total_votes: 'المجموع: %{count} أصوات'
|
127
129
|
update:
|
@@ -179,7 +181,9 @@ ar:
|
|
179
181
|
many: استجابات
|
180
182
|
other: استجابات
|
181
183
|
question_configuration:
|
184
|
+
disable_external_voting: الرجاء تعطيل التصويت الخارجي للتكوينات المتقدمة
|
182
185
|
form:
|
186
|
+
help: يمكن بإعداد أسئلة خيارات متعددة عن طريق زيادة الحد الأقصى لعدد الردود التي يمكن أن يختارها المشارك. القيمة القصوى الافتراضية هي 1، بمعنى أنه يمكن التصويت على رد واحد فقط.
|
183
187
|
title: الإعداد المتقدّم
|
184
188
|
question_publications:
|
185
189
|
create:
|
@@ -208,12 +212,20 @@ ar:
|
|
208
212
|
error: حدثت مشكلة أثناء تحديث هذا السؤال.
|
209
213
|
success: تم تحديث السؤال بنجاح.
|
210
214
|
response_groups:
|
215
|
+
create:
|
216
|
+
error: طرأت مشكلة خلال إنشاء مجموعة رد جديدة.
|
217
|
+
success: تم إنشاء مجموعة رد جديدة بنجاح.
|
218
|
+
destroy:
|
219
|
+
error: طرأت مشكلة خلال إزالة مجموعة الاستجابة. يتوجب التحقق من أنه لا توجد ردود تعتمد عليها.
|
220
|
+
success: تم إلغاء مجموعة الرد بنجاح.
|
211
221
|
edit:
|
212
222
|
update: تحديث
|
213
223
|
form:
|
214
224
|
title: معلومات عامة
|
225
|
+
help: يمكن استخدام المجموعات لتنظيم أسئلة خيارات متعددة ضمن حزم.
|
215
226
|
new:
|
216
227
|
create: إنشاء
|
228
|
+
title: مجموعة رد جديدة
|
217
229
|
update:
|
218
230
|
error: وقعت هناك مشكلة عند تحديث هذه الإجابة.
|
219
231
|
success: تم تحديث الإجابة بنجاح.
|
@@ -237,6 +249,7 @@ ar:
|
|
237
249
|
titles:
|
238
250
|
consultations: المشاورات
|
239
251
|
questions: الأسئلة
|
252
|
+
response_groups: مجموعات الرد
|
240
253
|
responses: استجابات
|
241
254
|
results: النتائج
|
242
255
|
consultations:
|
@@ -311,11 +324,15 @@ ar:
|
|
311
324
|
other: يصوت من
|
312
325
|
question_multiple_votes:
|
313
326
|
results_rules:
|
327
|
+
minimum_votes_per_user:
|
328
|
+
description: يمكن للمشاركين توزيع %{votes} أصوات كحد أدنى من ضمن خيارات مختلفة.
|
314
329
|
title: خيارات عديدة متاحة مسموحة للإجابة على هذا السؤال
|
315
330
|
total_participants: لقد شارك مجموع يقدّر بـ %{count} أشخاص في التصويت.
|
316
331
|
vote_limit:
|
317
332
|
description: يمكن للمشارِكين التصويت على %{limit} خيارات كأقصى حد.
|
318
333
|
voting_rules:
|
334
|
+
minimum_votes_per_user:
|
335
|
+
description: يتوجب عليم توزيع %{votes} أصوات كحد أدنى من ضمن خيارات مختلفة.
|
319
336
|
title: 'التصويت خاضع للقواعد التالية:'
|
320
337
|
vote_limit:
|
321
338
|
description: يمكنك التصويت إلى غاية %{limit} خيارات.
|
@@ -324,6 +341,7 @@ ar:
|
|
324
341
|
question_votes:
|
325
342
|
create:
|
326
343
|
error: كانت هناك مشكلة في التصويت على السؤال
|
344
|
+
success: يمكنك تغيير ذلك حتى نهاية المشاورة. سيتم قبول التصويت الأخير فقط.
|
327
345
|
title_error: خطأ في التصويت!
|
328
346
|
title_success: تم تسجيل التصويت بنجاح
|
329
347
|
regular_questions:
|
@@ -343,6 +361,8 @@ ar:
|
|
343
361
|
help:
|
344
362
|
participatory_spaces:
|
345
363
|
consultations:
|
364
|
+
contextual: "<p>المشاورة <strong></strong> هي مساحة تسمح لك بتوجيه سؤال واضح إلى جميع الأشخاص الذين يشكلون منظمة، وبتوجيه دعوة للمشاركة في المشاورة وإشعال شرارة وتنظيم النقاش لصالح الرد أو ضده. وعند حلول الاستشارة، يمكنك التصويت ونشر نتائج الأصوات.</p> <p>أمثلة: يمكن أن تكون المشاورات حول أي جانب يؤثر على منظمة ما: على سبيل المثال تغير اسم أو شعار المنظمة عن طريق طرح البدائل، تقرير بنعم أو لا لصالح المشاركة أو عدمها في منظمة أكبر، تصديق أو رفض خطة استراتيجية جديدة أو نتيجة فريق عامل، أو تحديد ما إذا كانت الوظائف ينبغي أن تظل ولايات واحدة أو 2 أو 3 كحد أقصى.</p>\n"
|
365
|
+
page: "<p>المشاورة <strong></strong> هي مساحة تسمح لك بتوجيه سؤال واضح إلى جميع الأشخاص الذين يشكلون منظمة، وبتوجيه دعوة للمشاركة في المشاورة وإشعال شرارة وتنظيم النقاش لصالح الرد أو ضده. وعند حلول الاستشارة، يمكنك التصويت ونشر نتائج الأصوات.</p> <p>أمثلة: يمكن أن تكون المشاورات حول أي جانب يؤثر على منظمة ما: على سبيل المثال تغير اسم أو شعار المنظمة عن طريق طرح البدائل، تقرير بنعم أو لا لصالح المشاركة أو عدمها في منظمة أكبر، تصديق أو رفض خطة استراتيجية جديدة أو نتيجة فريق عامل، أو تحديد ما إذا كانت الوظائف ينبغي أن تظل ولايات واحدة أو 2 أو 3 كحد أقصى.</p>\n"
|
346
366
|
title: ما هي المشاورات؟
|
347
367
|
menu:
|
348
368
|
consultations: المشاورات
|
@@ -382,6 +402,7 @@ ar:
|
|
382
402
|
comment: تعليق
|
383
403
|
vote: صوِّت
|
384
404
|
statistics:
|
405
|
+
consultations_count: المشاورات
|
385
406
|
votes_count: الأصوات
|
386
407
|
layouts:
|
387
408
|
decidim:
|
data/config/locales/ca.yml
CHANGED
data/config/locales/cs.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
data/config/locales/es-PY.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/eu.yml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr-CA.yml
CHANGED
data/config/locales/fr.yml
CHANGED
data/config/locales/ja.yml
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
kaa:
|
data/config/locales/sv.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
@@ -1 +1,369 @@
|
|
1
1
|
zh-TW:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
consultation:
|
5
|
+
banner_image: 橫幅圖片
|
6
|
+
decidim_highlighted_scope_id: 重點關注範圍
|
7
|
+
description: 說明
|
8
|
+
end_voting_date: 投票截止
|
9
|
+
introductory_image: 介紹圖片
|
10
|
+
introductory_video_url: 介紹視訊URL
|
11
|
+
questions: 問題
|
12
|
+
slug: URL網址別名
|
13
|
+
start_voting_date: 開始投票
|
14
|
+
subtitle: 子標題
|
15
|
+
title: 標題
|
16
|
+
question:
|
17
|
+
banner_image: 橫幅圖片
|
18
|
+
decidim_scope_id: 市政區域
|
19
|
+
hashtag: 主題標籤
|
20
|
+
hero_image: 首頁圖片
|
21
|
+
i_frame_url: 外部投票系統網址
|
22
|
+
instructions: 投票的附加說明
|
23
|
+
max_votes: 最大投票數量
|
24
|
+
min_votes: 最小投票數量
|
25
|
+
origin_scope: 範圍
|
26
|
+
origin_title: 起源
|
27
|
+
origin_url: 原始網址
|
28
|
+
participatory_scope: 參與範圍
|
29
|
+
promoter_group: 促銷團隊
|
30
|
+
question_context: 上下文
|
31
|
+
reference: 參考
|
32
|
+
scope: 市政區域
|
33
|
+
slug: URL網址別名
|
34
|
+
subtitle: 子標題
|
35
|
+
vote: 外部投票系統
|
36
|
+
what_is_decided: 決定了什麼
|
37
|
+
response:
|
38
|
+
decidim_consultations_response_group_id: 群組
|
39
|
+
errors:
|
40
|
+
models:
|
41
|
+
question:
|
42
|
+
attributes:
|
43
|
+
max_votes:
|
44
|
+
lower_than_min: 最大投票數量應該高於或等於最小投票數量。
|
45
|
+
vote:
|
46
|
+
decidim_consultations_response_id:
|
47
|
+
not_found: 找不到回應。
|
48
|
+
activerecord:
|
49
|
+
errors:
|
50
|
+
models:
|
51
|
+
decidim/consultations/vote:
|
52
|
+
attributes:
|
53
|
+
question:
|
54
|
+
invalid_num_votes: 投票數無效。
|
55
|
+
models:
|
56
|
+
decidim/consultation:
|
57
|
+
other: 諮詢
|
58
|
+
decidim/consultations/question:
|
59
|
+
other: 問題
|
60
|
+
decidim/consultations/response:
|
61
|
+
other: "One\n回應\n\nOther\n回應"
|
62
|
+
decidim/consultations/vote:
|
63
|
+
other: 投票
|
64
|
+
decidim:
|
65
|
+
admin:
|
66
|
+
actions:
|
67
|
+
back_to_responses: 返回回覆
|
68
|
+
new_consultation: 新諮詢
|
69
|
+
new_question: 新問題
|
70
|
+
new_response: 新回覆
|
71
|
+
new_response_group: 新群組
|
72
|
+
publish_results: 發佈結果
|
73
|
+
response_groups: 管理回應群組
|
74
|
+
unpublish_results: 取消發佈結果
|
75
|
+
consultation_publications:
|
76
|
+
create:
|
77
|
+
error: 發布此諮詢時出現問題。
|
78
|
+
success: 諮詢成功發佈。
|
79
|
+
destroy:
|
80
|
+
error: 取消發佈此諮詢出現問題。
|
81
|
+
success: 諮詢已成功取消發布。
|
82
|
+
consultation_results_publications:
|
83
|
+
create:
|
84
|
+
error: 發佈此諮詢的結果時出現問題。
|
85
|
+
success: 諮詢結果成功發佈。
|
86
|
+
destroy:
|
87
|
+
error: 取消發佈此諮詢的結果出現問題。
|
88
|
+
success: 諮詢結果已成功取消發布。
|
89
|
+
consultations:
|
90
|
+
create:
|
91
|
+
error: 建立新諮詢時出現問題。
|
92
|
+
success: 諮詢已成功建立。
|
93
|
+
deprecation_warning: 諮詢模組將在不久的將來被棄用。我們正在開發下一個加密安全版本,名為 Votings。
|
94
|
+
edit:
|
95
|
+
update: 更新
|
96
|
+
form:
|
97
|
+
slug_help: 'URL slugs 用於產生指向此諮詢的網址。它只接受字母、數字和連字符,且必須以字母開頭。例如: %{url}'
|
98
|
+
title: 一般資訊
|
99
|
+
index:
|
100
|
+
not_published: 未發佈
|
101
|
+
published: 已發佈
|
102
|
+
new:
|
103
|
+
create: 建立
|
104
|
+
title: 新諮詢
|
105
|
+
results:
|
106
|
+
not_visible: 結果將在諮詢結束後公佈。
|
107
|
+
participants: "%{count} 位參與者"
|
108
|
+
total_votes: '總共:%{count} 票'
|
109
|
+
update:
|
110
|
+
error: 更新此諮詢時出現問題.
|
111
|
+
success: 諮詢更新成功
|
112
|
+
menu:
|
113
|
+
consultations: 諮詢
|
114
|
+
consultations_submenu:
|
115
|
+
info: 資訊
|
116
|
+
questions: 問題
|
117
|
+
results: 結果
|
118
|
+
questions_submenu:
|
119
|
+
attachments: 附件
|
120
|
+
categories: 類別
|
121
|
+
components: 组件
|
122
|
+
configuration: 配置
|
123
|
+
consultation: 諮詢
|
124
|
+
info: 資訊
|
125
|
+
responses: 回應
|
126
|
+
models:
|
127
|
+
consultation:
|
128
|
+
fields:
|
129
|
+
created_at: 建立於
|
130
|
+
published: 已發佈
|
131
|
+
title: 標題
|
132
|
+
name:
|
133
|
+
other: "One\n諮詢\n\nOther\n諮詢"
|
134
|
+
question:
|
135
|
+
fields:
|
136
|
+
created_at: 建立於
|
137
|
+
published: 已發佈
|
138
|
+
title: 標題
|
139
|
+
name:
|
140
|
+
other: 問題
|
141
|
+
response:
|
142
|
+
fields:
|
143
|
+
created_at: 建立於
|
144
|
+
response_group: 群組
|
145
|
+
title: 標題
|
146
|
+
name:
|
147
|
+
other: 回應
|
148
|
+
question_configuration:
|
149
|
+
disable_external_voting: 請在進階配置中禁用外部投票功能。
|
150
|
+
form:
|
151
|
+
help: 通過增加參與者可以選擇的最大回應數量,來設置多選題。預設的最大值為1,意味著只能選擇一個回應進行投票。
|
152
|
+
title: 進階配置
|
153
|
+
question_publications:
|
154
|
+
create:
|
155
|
+
error: 發佈此問題時出現問題。
|
156
|
+
success: 問題成功發佈.
|
157
|
+
destroy:
|
158
|
+
error: 取消發佈問題時出了問題.
|
159
|
+
success: 問題已成功取消發佈。
|
160
|
+
questions:
|
161
|
+
create:
|
162
|
+
error: 建立新問題時出現問題。
|
163
|
+
success: 問題成功建立。
|
164
|
+
destroy:
|
165
|
+
success: 問題已成功刪除.
|
166
|
+
edit:
|
167
|
+
update: 更新
|
168
|
+
form:
|
169
|
+
title: 一般資訊
|
170
|
+
index:
|
171
|
+
not_published: 未發佈
|
172
|
+
published: 已發佈
|
173
|
+
new:
|
174
|
+
create: 建立
|
175
|
+
title: 新問題
|
176
|
+
update:
|
177
|
+
error: 更新問題時出現問題。
|
178
|
+
success: 問題成功更新.
|
179
|
+
response_groups:
|
180
|
+
create:
|
181
|
+
error: 建立新回應群組時發生問題。
|
182
|
+
success: 回應群組已成功創建.
|
183
|
+
destroy:
|
184
|
+
error: 移除回應群組時發生問題。請確認沒有任何回應依賴於該群組。
|
185
|
+
success: 回應群組已成功刪除
|
186
|
+
edit:
|
187
|
+
update: 更新
|
188
|
+
form:
|
189
|
+
title: 一般資訊
|
190
|
+
help: 使用群組來組織多個選擇題目,將其分成套裝。
|
191
|
+
new:
|
192
|
+
create: 建立
|
193
|
+
title: 新回應群組
|
194
|
+
update:
|
195
|
+
error: 更新此回應時出現問題。
|
196
|
+
success: 回應成功更新.
|
197
|
+
responses:
|
198
|
+
create:
|
199
|
+
error: 建立新回應時發生問題。
|
200
|
+
success: 回應已成功創建.
|
201
|
+
destroy:
|
202
|
+
error: 移除回應時發生問題。
|
203
|
+
success: 回應已成功刪除。
|
204
|
+
edit:
|
205
|
+
update: 更新
|
206
|
+
form:
|
207
|
+
title: 一般資訊
|
208
|
+
new:
|
209
|
+
create: 建立
|
210
|
+
title: 新回應
|
211
|
+
update:
|
212
|
+
error: 更新此回應時出現問題。
|
213
|
+
success: 回應成功更新.
|
214
|
+
titles:
|
215
|
+
consultations: 諮詢
|
216
|
+
questions: 問題
|
217
|
+
response_groups: 回應群組
|
218
|
+
responses: 回應
|
219
|
+
results: 結果
|
220
|
+
consultations:
|
221
|
+
admin:
|
222
|
+
content_blocks:
|
223
|
+
highlighted_consultations:
|
224
|
+
max_results: 顯示的最大元素數量
|
225
|
+
consultation:
|
226
|
+
start_voting_date: 開始投票
|
227
|
+
view_results: 顯示結果
|
228
|
+
consultation_card:
|
229
|
+
view_results: 顯示結果
|
230
|
+
consultations:
|
231
|
+
orders:
|
232
|
+
label: '按照以下方式對諮詢進行排序:'
|
233
|
+
random: 隨機
|
234
|
+
recent: 最近
|
235
|
+
show:
|
236
|
+
dates: 日期
|
237
|
+
content_blocks:
|
238
|
+
highlighted_consultations:
|
239
|
+
name: 重點關注諮詢
|
240
|
+
count:
|
241
|
+
title:
|
242
|
+
other: "One\n%{count} 個諮詢\nOther\n%{count} 個諮詢"
|
243
|
+
filters:
|
244
|
+
active: 生效
|
245
|
+
all: 全部
|
246
|
+
finished: 已完成
|
247
|
+
search: 搜尋
|
248
|
+
state: 狀態
|
249
|
+
upcoming: 即將舉行
|
250
|
+
filters_small_view:
|
251
|
+
close_modal: 關閉視窗
|
252
|
+
filter: 篩選器
|
253
|
+
filter_by: 篩選條件
|
254
|
+
unfold: 展開
|
255
|
+
highlighted_questions:
|
256
|
+
title: 來自於 %{scope_name} 的問題
|
257
|
+
index:
|
258
|
+
title: 諮詢
|
259
|
+
last_activity:
|
260
|
+
new_consultation: 新諮詢
|
261
|
+
new_question_at_html: "<span>有新問題,連結網址為 %{link}</span>"
|
262
|
+
pages:
|
263
|
+
home:
|
264
|
+
highlighted_consultations:
|
265
|
+
active_consultations: 進行中的諮詢
|
266
|
+
see_all_consultations: 查看所有諮詢
|
267
|
+
voting_ends_in:
|
268
|
+
other: "One\n投票截止日期:<strong>明天</strong>\n\nOther\n投票截止日期:<strong>%{count} 天後</strong>"
|
269
|
+
voting_ends_today: 投票截止日期:<strong>今天</strong>
|
270
|
+
question:
|
271
|
+
take_part: 參與
|
272
|
+
view_results: 顯示結果
|
273
|
+
votes_out_of:
|
274
|
+
other: "one\n票中的一個\n\nOther\n票中的數個"
|
275
|
+
question_multiple_votes:
|
276
|
+
results_rules:
|
277
|
+
minimum_votes_per_user:
|
278
|
+
description: 參與者可以將最少 %{votes} 票分配給不同的選項。
|
279
|
+
title: 在這個問題中,允許多個選擇。
|
280
|
+
total_participants: 總共有 %{count} 人參與了投票。
|
281
|
+
vote_limit:
|
282
|
+
description: 參與者最多可以投票給 %{limit} 個選項。
|
283
|
+
voting_rules:
|
284
|
+
minimum_votes_per_user:
|
285
|
+
description: 您必須將最少 %{votes} 票分配給不同的選項。
|
286
|
+
title: '投票受以下規則約束:'
|
287
|
+
vote_limit:
|
288
|
+
description: 您最多可以對 %{limit} 個選項進行投票。
|
289
|
+
left: 剩餘
|
290
|
+
votes: 投票
|
291
|
+
question_votes:
|
292
|
+
create:
|
293
|
+
error: 投票此問題時出現問題。
|
294
|
+
success: 您可以在諮詢結束之前更改投票。只有最後一次投票將被接受。
|
295
|
+
title_error: 投票錯誤!
|
296
|
+
title_success: 投票成功註冊。
|
297
|
+
regular_questions:
|
298
|
+
title: 此諮詢的問題
|
299
|
+
show:
|
300
|
+
badge_name:
|
301
|
+
finished: 已完成
|
302
|
+
open: 開啟
|
303
|
+
open_votes: 開放投票
|
304
|
+
published_results: 公佈結果
|
305
|
+
footer_button_text:
|
306
|
+
debate: 辯論
|
307
|
+
view: 檢視
|
308
|
+
view_results: 顯示結果
|
309
|
+
vote: 投票
|
310
|
+
unspecified: 未指定
|
311
|
+
help:
|
312
|
+
participatory_spaces:
|
313
|
+
consultations:
|
314
|
+
contextual: "<p>一個<strong>諮詢</strong>是一個空間,讓您向組織的所有成員提出明確的問題,呼籲參與諮詢,引發並組織支持或反對某個回應的討論。當諮詢日期到來時,您可以進行投票並公佈投票結果。</p> <p>例子:諮詢可以涉及影響組織的幾乎所有方面:例如,更改組織的名稱或標誌,提供多個選項,決定是否加入一個更大的組織,驗證或拒絕新的戰略計劃或工作小組的結果,或確定職位是否應該有最多 1、2 或 3 個任期。</p>\n"
|
315
|
+
page: "<p>一個<strong>諮詢</strong>是一個空間,讓您向組織的所有成員提出明確的問題,呼籲參與諮詢,引發並組織支持或反對某個回應的討論。當諮詢日期到來時,您可以進行投票並公佈投票結果。</p> <p>例子:諮詢可以涉及影響組織的幾乎任何方面:例如,更改組織的名稱或標誌,提供多個替代方案,決定是否加入一個更大的組織,驗證或拒絕新的戰略計劃或工作小組的結果,或確定組織中的職位是否應保持最多 1、2 或 3 個任期。</p>\n"
|
316
|
+
title: 什麼是諮詢?
|
317
|
+
menu:
|
318
|
+
consultations: 諮詢
|
319
|
+
questions:
|
320
|
+
next_button: 下一個問題
|
321
|
+
previous_button: 上一個問題
|
322
|
+
results:
|
323
|
+
title: 結果
|
324
|
+
show:
|
325
|
+
read_more: 顯示較多
|
326
|
+
statistics:
|
327
|
+
assistants_count_title: 助理
|
328
|
+
comments_count_title: 評論
|
329
|
+
meetings_count_title: 會議
|
330
|
+
supports_count_title: 投票
|
331
|
+
technical_info:
|
332
|
+
technical_data: 技術數據
|
333
|
+
vote_button:
|
334
|
+
already_voted: 已經投票
|
335
|
+
already_voted_hover: 撤銷投票
|
336
|
+
starting_from: 起始日期:%{date}
|
337
|
+
verification_required: 驗證您的帳戶以進行投票。
|
338
|
+
vote: 投票
|
339
|
+
vote_modal:
|
340
|
+
close_modal: 關閉視窗
|
341
|
+
contextual_help: 請, 選擇一個選項。
|
342
|
+
title: '諮詢:問題投票'
|
343
|
+
vote_modal_confirm:
|
344
|
+
change: 更改
|
345
|
+
close_modal: 關閉視窗
|
346
|
+
confirm: 確認
|
347
|
+
contextual_help: 請確認所選的選項。
|
348
|
+
title: '諮詢:確認投票'
|
349
|
+
resources:
|
350
|
+
consultations:
|
351
|
+
actions:
|
352
|
+
comment: 評論
|
353
|
+
vote: 投票
|
354
|
+
question:
|
355
|
+
actions:
|
356
|
+
comment: 評論
|
357
|
+
vote: 投票
|
358
|
+
statistics:
|
359
|
+
consultations_count: 諮詢
|
360
|
+
votes_count: 投票
|
361
|
+
layouts:
|
362
|
+
decidim:
|
363
|
+
consultation_voting_data:
|
364
|
+
start_voting_date: 開始投票
|
365
|
+
question_components:
|
366
|
+
question_menu_item: 問題
|
367
|
+
question_header:
|
368
|
+
back_to_consultation: 查看所有諮詢
|
369
|
+
back_to_question: 返回問題
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-consultations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Juan Salvador Perez Garcia
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: decidim-admin
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.26.
|
19
|
+
version: 0.26.7
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.26.
|
26
|
+
version: 0.26.7
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: decidim-comments
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.26.
|
33
|
+
version: 0.26.7
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.26.
|
40
|
+
version: 0.26.7
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: decidim-core
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.26.
|
47
|
+
version: 0.26.7
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.26.
|
54
|
+
version: 0.26.7
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: decidim-dev
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.26.
|
61
|
+
version: 0.26.7
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.26.
|
68
|
+
version: 0.26.7
|
69
69
|
description: Extends Decidim adding a first level public consultation component
|
70
70
|
email:
|
71
71
|
- jsperezg@gmail.com
|
@@ -182,6 +182,7 @@ files:
|
|
182
182
|
- app/queries/decidim/consultations/organization_active_consultations.rb
|
183
183
|
- app/queries/decidim/consultations/organization_consultations.rb
|
184
184
|
- app/queries/decidim/consultations/organization_questions.rb
|
185
|
+
- app/scrubbers/decidim/consultations/question_title_scrubber.rb
|
185
186
|
- app/services/decidim/consultations/consultation_search.rb
|
186
187
|
- app/views/decidim/consultations/_consultation.html.erb
|
187
188
|
- app/views/decidim/consultations/admin/consultations/_form.html.erb
|
@@ -265,6 +266,7 @@ files:
|
|
265
266
|
- config/locales/et-EE.yml
|
266
267
|
- config/locales/et.yml
|
267
268
|
- config/locales/eu.yml
|
269
|
+
- config/locales/fa-IR.yml
|
268
270
|
- config/locales/fi-pl.yml
|
269
271
|
- config/locales/fi-plain.yml
|
270
272
|
- config/locales/fi.yml
|
@@ -283,6 +285,7 @@ files:
|
|
283
285
|
- config/locales/it.yml
|
284
286
|
- config/locales/ja.yml
|
285
287
|
- config/locales/ka-GE.yml
|
288
|
+
- config/locales/kaa.yml
|
286
289
|
- config/locales/ko-KR.yml
|
287
290
|
- config/locales/ko.yml
|
288
291
|
- config/locales/lb-LU.yml
|