decidim-debates 0.29.2 → 0.30.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/debates/content_blocks/highlighted_debates/content.erb +16 -0
- data/app/cells/decidim/debates/content_blocks/highlighted_debates_cell.rb +49 -0
- data/app/cells/decidim/debates/debate_card_metadata_cell.rb +2 -11
- data/app/cells/decidim/debates/debate_g/show.erb +12 -0
- data/app/cells/decidim/debates/debate_g_cell.rb +23 -0
- data/app/cells/decidim/debates/debate_metadata_g_cell.rb +14 -0
- data/app/commands/decidim/debates/admin/create_debate.rb +25 -2
- data/app/commands/decidim/debates/admin/update_debate.rb +34 -5
- data/app/commands/decidim/debates/create_debate.rb +22 -1
- data/app/commands/decidim/debates/update_debate.rb +26 -2
- data/app/controllers/decidim/debates/admin/debates_controller.rb +17 -14
- data/app/controllers/decidim/debates/debates_controller.rb +8 -4
- data/app/forms/decidim/debates/admin/debate_form.rb +34 -26
- data/app/forms/decidim/debates/debate_form.rb +12 -29
- data/app/helpers/decidim/debates/application_helper.rb +8 -8
- data/app/models/decidim/debates/debate.rb +23 -1
- data/app/permissions/decidim/debates/admin/permissions.rb +5 -5
- data/app/presenters/decidim/debates/admin_log/debate_presenter.rb +1 -1
- data/app/presenters/decidim/debates/debate_presenter.rb +1 -1
- data/app/queries/decidim/debates/metrics/debate_followers_metric_measure.rb +2 -2
- data/app/queries/decidim/debates/metrics/debate_participants_metric_measure.rb +2 -2
- data/app/queries/decidim/debates/metrics/debates_metric_manage.rb +6 -6
- data/app/serializers/decidim/debates/download_your_data_debate_serializer.rb +6 -13
- data/app/views/decidim/debates/admin/debates/_actions.html.erb +27 -0
- data/app/views/decidim/debates/admin/debates/_debate-tr.html.erb +25 -0
- data/app/views/decidim/debates/admin/debates/_debates-thead.html.erb +9 -0
- data/app/views/decidim/debates/admin/debates/_form.html.erb +27 -6
- data/app/views/decidim/debates/admin/debates/index.html.erb +17 -55
- data/app/views/decidim/debates/admin/debates/manage_trash.html.erb +19 -0
- data/app/views/decidim/debates/debates/_debate_actions.html.erb +33 -0
- data/app/views/decidim/debates/debates/_form.html.erb +19 -6
- data/app/views/decidim/debates/debates/index.html.erb +10 -1
- data/app/views/decidim/debates/debates/show.html.erb +31 -44
- data/config/locales/ar.yml +9 -12
- data/config/locales/bg.yml +1 -15
- data/config/locales/ca.yml +79 -16
- data/config/locales/cs.yml +79 -16
- data/config/locales/de.yml +79 -16
- data/config/locales/el.yml +1 -15
- data/config/locales/en.yml +78 -15
- data/config/locales/es-MX.yml +79 -16
- data/config/locales/es-PY.yml +79 -16
- data/config/locales/es.yml +79 -16
- data/config/locales/eu.yml +79 -16
- data/config/locales/fi-plain.yml +79 -16
- data/config/locales/fi.yml +79 -16
- data/config/locales/fr-CA.yml +41 -16
- data/config/locales/fr.yml +41 -16
- data/config/locales/ga-IE.yml +0 -10
- data/config/locales/gl.yml +1 -13
- data/config/locales/hu.yml +1 -15
- data/config/locales/id-ID.yml +1 -13
- data/config/locales/is-IS.yml +0 -10
- data/config/locales/it.yml +1 -15
- data/config/locales/ja.yml +79 -16
- data/config/locales/lb.yml +0 -6
- data/config/locales/lt.yml +1 -15
- data/config/locales/lv.yml +1 -11
- data/config/locales/nl.yml +1 -14
- data/config/locales/no.yml +1 -15
- data/config/locales/pl.yml +1 -15
- data/config/locales/pt-BR.yml +1 -15
- data/config/locales/pt.yml +1 -15
- data/config/locales/ro-RO.yml +32 -46
- data/config/locales/ru.yml +0 -12
- data/config/locales/sk.yml +1 -13
- data/config/locales/sl.yml +0 -2
- data/config/locales/sv.yml +1 -15
- data/config/locales/tr-TR.yml +1 -15
- data/config/locales/uk.yml +0 -12
- data/config/locales/zh-CN.yml +1 -13
- data/config/locales/zh-TW.yml +1 -15
- data/db/migrate/20200827154116_add_commentable_counter_cache_to_debates.rb +1 -1
- data/db/migrate/20200902133452_add_cached_comment_metadata_to_debates.rb +1 -1
- data/db/migrate/20210310120652_add_followable_counter_cache_to_debates.rb +1 -1
- data/db/migrate/20240828103648_add_deleted_at_to_decidim_debates_debates.rb +8 -0
- data/db/migrate/20241017153555_add_comments_layout_to_debates.rb +7 -0
- data/decidim-debates.gemspec +1 -1
- data/lib/decidim/api/debate_type.rb +6 -8
- data/lib/decidim/api/debates_type.rb +4 -5
- data/lib/decidim/debates/admin_engine.rb +7 -0
- data/lib/decidim/debates/component.rb +19 -4
- data/lib/decidim/debates/debate_serializer.rb +83 -0
- data/lib/decidim/debates/seeds.rb +1 -8
- data/lib/decidim/debates/test/factories.rb +2 -0
- data/lib/decidim/debates/version.rb +1 -1
- data/lib/decidim/debates.rb +1 -0
- metadata +27 -15
- data/app/helpers/decidim/debates/admin/application_helper.rb +0 -13
data/config/locales/ja.yml
CHANGED
@@ -3,15 +3,12 @@ ja:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: カテゴリ
|
7
6
|
closed_at: 終了日時
|
8
7
|
conclusions: まとめ
|
9
|
-
decidim_category_id: カテゴリ
|
10
8
|
description: 説明
|
11
9
|
end_time: 終了時刻
|
12
10
|
information_updates: 情報の更新
|
13
11
|
instructions: 参加方法
|
14
|
-
scope_id: スコープ
|
15
12
|
start_time: 開始
|
16
13
|
title: タイトル
|
17
14
|
user_group_id: ディベートを作成
|
@@ -25,20 +22,28 @@ ja:
|
|
25
22
|
decidim/debates/debate:
|
26
23
|
other: ディベート数
|
27
24
|
decidim:
|
25
|
+
admin:
|
26
|
+
admin_log:
|
27
|
+
changeset:
|
28
|
+
debates: ディベート
|
28
29
|
components:
|
29
30
|
debates:
|
30
31
|
actions:
|
31
32
|
comment: コメント
|
32
|
-
create:
|
33
|
+
create: ディベートを作成
|
33
34
|
endorse: オススメ
|
34
35
|
name: ディベート
|
35
36
|
settings:
|
36
37
|
global:
|
37
38
|
announcement: お知らせ
|
39
|
+
attachments_allowed: 添付ファイルを許可
|
40
|
+
clear_all: すべてクリア
|
38
41
|
comments_enabled: コメントを有効にする
|
39
42
|
comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
|
40
|
-
|
41
|
-
|
43
|
+
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
44
|
+
no_taxonomy_filters_found: タクソノミーフィルタが見つかりません。
|
45
|
+
taxonomy_filters: コンポーネントのフィルタを選択
|
46
|
+
taxonomy_filters_add: フィルターを追加
|
42
47
|
step:
|
43
48
|
announcement: お知らせ
|
44
49
|
comments_blocked: コメントをブロック
|
@@ -48,11 +53,12 @@ ja:
|
|
48
53
|
debates:
|
49
54
|
actions:
|
50
55
|
close: 閉じる
|
51
|
-
|
52
|
-
|
56
|
+
confirm_delete_debate: このディベートを削除してもよろしいですか?
|
57
|
+
deleted_debate_info: 削除された議論はゴミ箱から復元できます。
|
53
58
|
edit: 編集
|
54
59
|
new: 新しいディベート
|
55
60
|
title: アクション
|
61
|
+
view_deleted_debates: 削除されたディベートを表示
|
56
62
|
admin:
|
57
63
|
debate_closes:
|
58
64
|
edit:
|
@@ -62,17 +68,26 @@ ja:
|
|
62
68
|
create:
|
63
69
|
invalid: ディベートの作成で不具合が発生しました。
|
64
70
|
success: ディベートが正常に作成されました。
|
65
|
-
destroy:
|
66
|
-
success: ディベートを削除しました。
|
67
71
|
edit:
|
68
72
|
title: ディベートを編集
|
69
73
|
update: ディベートを更新
|
70
74
|
form:
|
75
|
+
add_attachments: 添付ファイルを追加
|
76
|
+
attachment_legend: ドキュメントまたは画像を追加
|
77
|
+
comments_visualization: コメントの視覚化
|
78
|
+
comments_warning: 最初のコメントが投稿されると、選択した表示オプションは変更できません。
|
71
79
|
debate_type: ディベートタイプ
|
80
|
+
edit_attachments: 添付ファイルを編集
|
81
|
+
errors:
|
82
|
+
comments_layout_locked: コメントが投稿されると、コメントレイアウトを変更することはできません。
|
72
83
|
finite: 期間限定 (開始時刻と終了時刻あり)
|
73
84
|
open: 無期限 (開始時刻または終了時刻なし)
|
85
|
+
single_column: '1カラム: コメントは時系列で表示され、返信を持つことができます。'
|
86
|
+
two_columns: '2カラム: コメントは「賛成」と「反対」の列の下に表示され、返信を持つことはできません。'
|
74
87
|
index:
|
75
88
|
title: ディベート
|
89
|
+
manage_trash:
|
90
|
+
title: ディベートを削除しました
|
76
91
|
new:
|
77
92
|
create: ディベートを作成
|
78
93
|
title: 新しいディベート
|
@@ -80,12 +95,19 @@ ja:
|
|
80
95
|
invalid: このディベートを更新する際に問題が発生しました。
|
81
96
|
success: ディベートが正常に更新されました。
|
82
97
|
exports:
|
83
|
-
|
98
|
+
debate_comments: コメント
|
99
|
+
debates: ディベート
|
84
100
|
admin_log:
|
85
101
|
debate:
|
86
102
|
close: "%{user_name} は、 %{resource_name} スペースの %{space_name} ディベートを終了しました"
|
87
103
|
create: "%{user_name} が %{resource_name} スペースで %{space_name} ディベートを作成しました"
|
104
|
+
restore: "%{user_name} は %{space_name} スペースでの議論 %{resource_name} を復元しました"
|
105
|
+
soft_delete: "%{user_name} は %{space_name} スペースでのディベート %{resource_name} をゴミ箱に移動しました"
|
88
106
|
update: "%{user_name} が %{resource_name} スペースの %{space_name} ディベートを更新しました"
|
107
|
+
content_blocks:
|
108
|
+
highlighted_debates:
|
109
|
+
name: ディベート
|
110
|
+
see_all: すべてのディベートを見る
|
89
111
|
debate_m:
|
90
112
|
commented_time_ago: コメント %{time} 前
|
91
113
|
debates:
|
@@ -125,8 +147,6 @@ ja:
|
|
125
147
|
closed: 終了
|
126
148
|
open: 公開
|
127
149
|
user_group: グループ
|
128
|
-
form:
|
129
|
-
select_a_category: カテゴリを選択してください
|
130
150
|
index:
|
131
151
|
new_debate: 新しいディベート
|
132
152
|
new:
|
@@ -140,11 +160,11 @@ ja:
|
|
140
160
|
recent: 新着順
|
141
161
|
updated: 更新が新しい順
|
142
162
|
show:
|
143
|
-
close_debate:
|
163
|
+
close_debate: 閉じる
|
144
164
|
debate_closed: 終了
|
145
165
|
debate_conclusions_are: 'ディベートは %{date} に、以下の結論を持って終了しました。'
|
146
166
|
edit_conclusions: 結論を編集
|
147
|
-
edit_debate:
|
167
|
+
edit_debate: 編集
|
148
168
|
groups_count: グループ
|
149
169
|
open: 公開ディベート
|
150
170
|
participants_count: 参加者
|
@@ -162,7 +182,12 @@ ja:
|
|
162
182
|
official_debate: 公式のディベート
|
163
183
|
start: 開始
|
164
184
|
start_time: 開始日
|
185
|
+
taxonomies: タクソノミー
|
165
186
|
title: タイトル
|
187
|
+
download_your_data:
|
188
|
+
show:
|
189
|
+
debate_comments: ディベートのコメントのエクスポート
|
190
|
+
debates: ディベートのエクスポート
|
166
191
|
events:
|
167
192
|
debates:
|
168
193
|
create_debate_event:
|
@@ -205,7 +230,7 @@ ja:
|
|
205
230
|
badges:
|
206
231
|
commented_debates:
|
207
232
|
conditions:
|
208
|
-
|
233
|
+
- 参加する公開ディベートを選択する
|
209
234
|
description: このバッジは、コメントを残してさまざまなディベートに積極的に参加するときに付与されます。
|
210
235
|
description_another: この参加者は %{score} ディベートに参加しました。
|
211
236
|
description_own: '%{score} 件のディベートに参加しました。'
|
@@ -218,5 +243,43 @@ ja:
|
|
218
243
|
description: 作成されたディベート数
|
219
244
|
object: ディベート
|
220
245
|
title: ディベート
|
246
|
+
open_data:
|
247
|
+
help:
|
248
|
+
debate_comments:
|
249
|
+
alignment: このコメントが好意的、敵対的、中立的であった場合
|
250
|
+
author: このコメントを作成した参加者の名前
|
251
|
+
body: コメント本文
|
252
|
+
commentable_id: コメント対象の固有ID
|
253
|
+
commentable_type: コメント対象の種別 (結果、提案など)
|
254
|
+
created_at: コメントの作成日時
|
255
|
+
depth: コメントがコメントツリーのどこに位置しているか(回答、または回答の回答である場合)
|
256
|
+
id: コメントのID
|
257
|
+
locale: コメントを残した参加者の使っていたロケール(言語)
|
258
|
+
root_commentable_url: コメントに関連するリソースの URL
|
259
|
+
user_group: コメントを作成したユーザーグループの名前 (もしあれば)
|
260
|
+
debates:
|
261
|
+
author: ディベートの作者に関するデータ
|
262
|
+
closed_at: ディベートの終了日時
|
263
|
+
comments: ディベートのコメント数
|
264
|
+
comments_enabled: ディベートのコメントを有効にするか無効にするか
|
265
|
+
component: ディベートが属するコンポーネント
|
266
|
+
conclusions: 終了している場合のディベートの結論
|
267
|
+
created_at: ディベートの作成日時
|
268
|
+
description: ディベートの説明
|
269
|
+
end_time: ディベートの終了予定日時(公開討論で時間が限られている場合)
|
270
|
+
endorsements_count: ディベートのオススメ数
|
271
|
+
follows_count: この議論のフォロワー数
|
272
|
+
id: ディベートの固有ID
|
273
|
+
information_updates: 作者がディベートに加えた更新
|
274
|
+
instructions: ディベートにコメントするための指示
|
275
|
+
last_comment_at: ディベートが最後にコメントされた日時
|
276
|
+
last_comment_by: ディベート内コメントの最終作成日時
|
277
|
+
participatory_space: このディベートが属するスペース(参加型プロセス、参加スペースなど)
|
278
|
+
reference: このプラットフォームでのリソースの固有ID
|
279
|
+
start_time: ディベートの開始予定日時(公開討論で時間が限られている場合)
|
280
|
+
taxonomies: このプロジェクトのタクソノミー
|
281
|
+
title: ディベートのタイトル
|
282
|
+
updated_at: ディベートの最終更新日時
|
283
|
+
url: このディベートが見つかるURL
|
221
284
|
statistics:
|
222
285
|
debates_count: ディベート
|
data/config/locales/lb.yml
CHANGED
@@ -9,7 +9,6 @@ lb:
|
|
9
9
|
end_time: Endet am
|
10
10
|
information_updates: Informationsaktualisierungen
|
11
11
|
instructions: Anweisungen zur Teilnahme
|
12
|
-
scope_id: Bereich
|
13
12
|
start_time: Startet um
|
14
13
|
title: Titel
|
15
14
|
user_group_id: Debatte erstellen als
|
@@ -27,7 +26,6 @@ lb:
|
|
27
26
|
debates:
|
28
27
|
actions:
|
29
28
|
comment: Kommentar
|
30
|
-
create: Erstellen
|
31
29
|
endorse: Bestätigen
|
32
30
|
name: Debatten
|
33
31
|
settings:
|
@@ -35,8 +33,6 @@ lb:
|
|
35
33
|
announcement: Ankündigung
|
36
34
|
comments_enabled: Kommentare aktiviert
|
37
35
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
38
|
-
scope_id: Bereich
|
39
|
-
scopes_enabled: Bereiche aktiviert
|
40
36
|
step:
|
41
37
|
announcement: Ankündigung
|
42
38
|
comments_blocked: Kommentare blockiert
|
@@ -54,8 +50,6 @@ lb:
|
|
54
50
|
state_values:
|
55
51
|
closed: Geschlossen
|
56
52
|
open: Offen
|
57
|
-
form:
|
58
|
-
select_a_category: Bitte wählen sie eine Kategorie
|
59
53
|
index:
|
60
54
|
new_debate: Neue Debatte
|
61
55
|
new:
|
data/config/locales/lt.yml
CHANGED
@@ -3,15 +3,12 @@ lt:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: Kategorija
|
7
6
|
closed_at: Uždaryta
|
8
7
|
conclusions: Išvados
|
9
|
-
decidim_category_id: Kategorija
|
10
8
|
description: Aprašymas
|
11
9
|
end_time: Biagiasi
|
12
10
|
information_updates: Informacijos atnaujinimai
|
13
11
|
instructions: Dalyvavimo instrukcija
|
14
|
-
scope_id: Apimtis
|
15
12
|
start_time: Prasideda
|
16
13
|
title: Pavadinimas
|
17
14
|
user_group_id: Sukurti diskusiją kaip
|
@@ -32,7 +29,6 @@ lt:
|
|
32
29
|
debates:
|
33
30
|
actions:
|
34
31
|
comment: Komentaras
|
35
|
-
create: Sukurti
|
36
32
|
endorse: Pritarti
|
37
33
|
name: Diskusijos
|
38
34
|
settings:
|
@@ -40,8 +36,6 @@ lt:
|
|
40
36
|
announcement: Pranešimas
|
41
37
|
comments_enabled: Komentarai įjungti
|
42
38
|
comments_max_length: Maksimalus komentarų ilgis (numatytoji vertė – 0)
|
43
|
-
scope_id: Apimtis
|
44
|
-
scopes_enabled: Sritys įjungtos
|
45
39
|
step:
|
46
40
|
announcement: Pranešimas
|
47
41
|
comments_blocked: Komentarai užblokuoti
|
@@ -51,8 +45,6 @@ lt:
|
|
51
45
|
debates:
|
52
46
|
actions:
|
53
47
|
close: Uždaryti
|
54
|
-
confirm_destroy: Ar esate tikri?
|
55
|
-
destroy: Ištrinti
|
56
48
|
edit: Redaguoti
|
57
49
|
title: Veiksmai
|
58
50
|
admin:
|
@@ -64,8 +56,6 @@ lt:
|
|
64
56
|
create:
|
65
57
|
invalid: Kuriant diskusiją iškilo problema.
|
66
58
|
success: Diskusija sukurta.
|
67
|
-
destroy:
|
68
|
-
success: Diskusija pašalinta.
|
69
59
|
edit:
|
70
60
|
title: Redaguoti diskusiją
|
71
61
|
update: Atnaujinti diskusiją
|
@@ -125,8 +115,6 @@ lt:
|
|
125
115
|
closed: Uždaryta
|
126
116
|
open: Atidaryta
|
127
117
|
user_group: Grupės
|
128
|
-
form:
|
129
|
-
select_a_category: Pasirinkite kategoriją
|
130
118
|
index:
|
131
119
|
new_debate: Nauja diskusija
|
132
120
|
new:
|
@@ -140,11 +128,9 @@ lt:
|
|
140
128
|
recent: Naujausia
|
141
129
|
updated: Neseniai atnaujinta
|
142
130
|
show:
|
143
|
-
close_debate: Uždaryti diskusiją
|
144
131
|
debate_closed: Uždaryta
|
145
132
|
debate_conclusions_are: 'Diskusija uždaryta %{date} ir padarytos šios išvados:'
|
146
133
|
edit_conclusions: Keisti išvadas
|
147
|
-
edit_debate: Redaguoti diskusiją
|
148
134
|
groups_count: Grupės
|
149
135
|
open: Atverti diskusiją
|
150
136
|
participants_count: Dalyviai
|
@@ -198,7 +184,7 @@ lt:
|
|
198
184
|
badges:
|
199
185
|
commented_debates:
|
200
186
|
conditions:
|
201
|
-
|
187
|
+
- Pasirinkite atvirą diskusiją ir dalyvaukite
|
202
188
|
description: Šis ženklelis suteikiamas, kai aktyviai dalyvaujate įvairiose diskusijose pateikdami komentarus.
|
203
189
|
description_another: Šis dalyvis dalyvavo %{score} diskusijose.
|
204
190
|
description_own: Jūs dalyvavote %{score} diskusijose.
|
data/config/locales/lv.yml
CHANGED
@@ -3,8 +3,6 @@ lv:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: Kategorija
|
7
|
-
decidim_category_id: Kategorija
|
8
6
|
description: Apraksts
|
9
7
|
end_time: Beidzas plkst.
|
10
8
|
information_updates: Informācijas atjauninājumi
|
@@ -18,8 +16,6 @@ lv:
|
|
18
16
|
decidim:
|
19
17
|
components:
|
20
18
|
debates:
|
21
|
-
actions:
|
22
|
-
create: Izveidot
|
23
19
|
settings:
|
24
20
|
global:
|
25
21
|
announcement: Paziņojums
|
@@ -29,8 +25,6 @@ lv:
|
|
29
25
|
comments_blocked: Komentāri ir bloķēti
|
30
26
|
debates:
|
31
27
|
actions:
|
32
|
-
confirm_destroy: Vai esat pārliecināts?
|
33
|
-
destroy: Dzēst
|
34
28
|
edit: Labot
|
35
29
|
title: Darbības
|
36
30
|
admin:
|
@@ -38,8 +32,6 @@ lv:
|
|
38
32
|
create:
|
39
33
|
invalid: Debašu izveides laikā radās problēma.
|
40
34
|
success: Debates ir veiksmīgi izveidotas.
|
41
|
-
destroy:
|
42
|
-
success: Debates ir veiksmīgi dzēstas.
|
43
35
|
edit:
|
44
36
|
title: Rediģēt debates
|
45
37
|
update: Atjaunināt debates
|
@@ -70,8 +62,6 @@ lv:
|
|
70
62
|
back: Atpakaļ
|
71
63
|
create: Izveidot
|
72
64
|
title: Jaunas debates
|
73
|
-
show:
|
74
|
-
edit_debate: Rediģēt debates
|
75
65
|
models:
|
76
66
|
debate:
|
77
67
|
fields:
|
@@ -101,7 +91,7 @@ lv:
|
|
101
91
|
badges:
|
102
92
|
commented_debates:
|
103
93
|
conditions:
|
104
|
-
|
94
|
+
- Izvēlieties kādas no atvērtajām debatēm, lai piedalītos
|
105
95
|
description: Šis žetons tiek piešķirts, kad jūs aktīvi piedalāties dažādās debatēs, ievietojot tajās komentārus.
|
106
96
|
description_another: Šis dalībnieks ir piedalījies %{score} debatēs.
|
107
97
|
description_own: Jūs esat piedalījies %{score} debatēs.
|
data/config/locales/nl.yml
CHANGED
@@ -3,15 +3,12 @@ nl:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: Categorie
|
7
6
|
closed_at: Gesloten op
|
8
7
|
conclusions: Besluit
|
9
|
-
decidim_category_id: Categorie
|
10
8
|
description: Omschrijving
|
11
9
|
end_time: Eindigt op
|
12
10
|
information_updates: Informatie updates
|
13
11
|
instructions: Instructies om deel te nemen
|
14
|
-
scope_id: Scope
|
15
12
|
start_time: Begint om
|
16
13
|
title: Titel
|
17
14
|
user_group_id: Maak een debat als
|
@@ -30,15 +27,12 @@ nl:
|
|
30
27
|
debates:
|
31
28
|
actions:
|
32
29
|
comment: Reactie
|
33
|
-
create: Aanmaken
|
34
30
|
name: Debatten
|
35
31
|
settings:
|
36
32
|
global:
|
37
33
|
announcement: Aankondiging
|
38
34
|
comments_enabled: Reacties ingeschakeld
|
39
35
|
comments_max_length: Commentaar maximale lengte (laat 0 voor standaard waarde)
|
40
|
-
scope_id: Scope
|
41
|
-
scopes_enabled: Scopes ingeschakeld
|
42
36
|
step:
|
43
37
|
announcement: Aankondiging
|
44
38
|
comments_blocked: Reacties geblokkeerd
|
@@ -46,8 +40,6 @@ nl:
|
|
46
40
|
debates:
|
47
41
|
actions:
|
48
42
|
close: Sluiten
|
49
|
-
confirm_destroy: Ben je zeker?
|
50
|
-
destroy: Verwijder
|
51
43
|
edit: Bewerk
|
52
44
|
title: acties
|
53
45
|
admin:
|
@@ -55,8 +47,6 @@ nl:
|
|
55
47
|
create:
|
56
48
|
invalid: Er is een probleem opgetreden tijdens het maken van het debat.
|
57
49
|
success: Debat succesvol aangemaakt.
|
58
|
-
destroy:
|
59
|
-
success: Debat succesvol verwijderd.
|
60
50
|
edit:
|
61
51
|
title: Bewerk debat
|
62
52
|
update: Update debat
|
@@ -105,8 +95,6 @@ nl:
|
|
105
95
|
state_values:
|
106
96
|
closed: Gesloten
|
107
97
|
open: Open
|
108
|
-
form:
|
109
|
-
select_a_category: Selecteer een categorie
|
110
98
|
index:
|
111
99
|
new_debate: Nieuw debat
|
112
100
|
new:
|
@@ -120,7 +108,6 @@ nl:
|
|
120
108
|
recent: Meest recent
|
121
109
|
updated: Onlangs bijgewerkt
|
122
110
|
show:
|
123
|
-
edit_debate: Bewerk debat
|
124
111
|
open: Debat openen
|
125
112
|
update:
|
126
113
|
invalid: Er is een fout opgetreden bij het bijwerken van het debat.
|
@@ -166,7 +153,7 @@ nl:
|
|
166
153
|
badges:
|
167
154
|
commented_debates:
|
168
155
|
conditions:
|
169
|
-
|
156
|
+
- Kies een open debat om deel te nemen
|
170
157
|
description: Deze badge wordt toegekend wanneer u actief deelneemt aan de verschillende debatten door uw reacties achter te laten.
|
171
158
|
description_another: Deze gebruiker heeft deelgenomen aan %{score} debatten.
|
172
159
|
description_own: Je hebt deelgenomen aan %{score} debatten.
|
data/config/locales/no.yml
CHANGED
@@ -3,15 +3,12 @@
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: Kategori
|
7
6
|
closed_at: Stengt
|
8
7
|
conclusions: Konklusjoner
|
9
|
-
decidim_category_id: Kategori
|
10
8
|
description: Beskrivelse
|
11
9
|
end_time: Avsluttes den
|
12
10
|
information_updates: Oppdateringer
|
13
11
|
instructions: Instruksjoner for å delta
|
14
|
-
scope_id: Tema
|
15
12
|
start_time: Starter den
|
16
13
|
title: Tittel
|
17
14
|
user_group_id: Opprett innspillstråd som
|
@@ -30,7 +27,6 @@
|
|
30
27
|
debates:
|
31
28
|
actions:
|
32
29
|
comment: Kommenter
|
33
|
-
create: Opprett
|
34
30
|
endorse: Påtegne
|
35
31
|
name: Innspillstråder
|
36
32
|
settings:
|
@@ -38,8 +34,6 @@
|
|
38
34
|
announcement: Kunngjøring
|
39
35
|
comments_enabled: Kommentarer er aktivert
|
40
36
|
comments_max_length: Maks kommentarlengde
|
41
|
-
scope_id: Tema
|
42
|
-
scopes_enabled: Aktiverte temaer
|
43
37
|
step:
|
44
38
|
announcement: Kunngjøring
|
45
39
|
comments_blocked: Kommentarer er blokkert
|
@@ -49,8 +43,6 @@
|
|
49
43
|
debates:
|
50
44
|
actions:
|
51
45
|
close: Lukk
|
52
|
-
confirm_destroy: Er du sikker?
|
53
|
-
destroy: Slett
|
54
46
|
edit: Rediger
|
55
47
|
title: Handling
|
56
48
|
admin:
|
@@ -62,8 +54,6 @@
|
|
62
54
|
create:
|
63
55
|
invalid: Det oppstod et problem med å opprette innspillstråden.
|
64
56
|
success: Innspillstråden ble opprettet.
|
65
|
-
destroy:
|
66
|
-
success: Innspillstråden ble slettet.
|
67
57
|
edit:
|
68
58
|
title: Rediger innspillstråd
|
69
59
|
update: Oppdater innspillstråd
|
@@ -119,8 +109,6 @@
|
|
119
109
|
state_values:
|
120
110
|
closed: Lukket
|
121
111
|
open: Åpen
|
122
|
-
form:
|
123
|
-
select_a_category: Velg en kategori
|
124
112
|
index:
|
125
113
|
new_debate: Ny innspillstråd
|
126
114
|
new:
|
@@ -134,11 +122,9 @@
|
|
134
122
|
recent: Nyeste
|
135
123
|
updated: Sist oppdatert
|
136
124
|
show:
|
137
|
-
close_debate: Lukk innspillstråd
|
138
125
|
debate_closed: Lukket
|
139
126
|
debate_conclusions_are: 'Innspillstråden er avsluttet den %{date}, med denne oppsummeringen:'
|
140
127
|
edit_conclusions: Rediger oppsummering
|
141
|
-
edit_debate: Rediger innspillstråd
|
142
128
|
groups_count: Grupper
|
143
129
|
open: Åpen debatt
|
144
130
|
participants_count: Deltakere
|
@@ -186,7 +172,7 @@
|
|
186
172
|
badges:
|
187
173
|
commented_debates:
|
188
174
|
conditions:
|
189
|
-
|
175
|
+
- Velg en åpen innspillstråd å delta i
|
190
176
|
description: Dette merket tildeles når du aktivt deltar i de forskjellige innspillstrådene ved å legge inn dine innspill.
|
191
177
|
description_another: Denne deltakeren har deltatt i %{score} innspillstråder.
|
192
178
|
description_own: Du har deltatt i %{score} innspillstråder.
|
data/config/locales/pl.yml
CHANGED
@@ -3,15 +3,12 @@ pl:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: Kategoria
|
7
6
|
closed_at: Zamknięto
|
8
7
|
conclusions: Wnioski
|
9
|
-
decidim_category_id: Kategoria
|
10
8
|
description: Opis
|
11
9
|
end_time: Skończy się
|
12
10
|
information_updates: Aktualizacje informacji
|
13
11
|
instructions: Instrukcje uczestnictwa
|
14
|
-
scope_id: Zakres
|
15
12
|
start_time: Zaczyna się
|
16
13
|
title: Tytuł
|
17
14
|
user_group_id: Utwórz debatę jako
|
@@ -32,7 +29,6 @@ pl:
|
|
32
29
|
debates:
|
33
30
|
actions:
|
34
31
|
comment: Skomentuj
|
35
|
-
create: Utwórz
|
36
32
|
endorse: Rekomendacje
|
37
33
|
name: Debaty
|
38
34
|
settings:
|
@@ -40,8 +36,6 @@ pl:
|
|
40
36
|
announcement: Ogłoszenie
|
41
37
|
comments_enabled: Komentarze włączone
|
42
38
|
comments_max_length: Maksymalna długość komentarzy (Pozostaw 0 dla wartości domyślnej)
|
43
|
-
scope_id: Zakres
|
44
|
-
scopes_enabled: Zakresy włączone
|
45
39
|
step:
|
46
40
|
announcement: Ogłoszenie
|
47
41
|
comments_blocked: Komentarze zablokowane
|
@@ -51,8 +45,6 @@ pl:
|
|
51
45
|
debates:
|
52
46
|
actions:
|
53
47
|
close: Zamknij
|
54
|
-
confirm_destroy: Jesteś pewny?
|
55
|
-
destroy: Usuń
|
56
48
|
edit: Edytuj
|
57
49
|
new: Nowa debata
|
58
50
|
title: Działania
|
@@ -65,8 +57,6 @@ pl:
|
|
65
57
|
create:
|
66
58
|
invalid: Podczas tworzenia debaty wystąpił błąd.
|
67
59
|
success: Debata została utworzona pomyślnie.
|
68
|
-
destroy:
|
69
|
-
success: Debata została usunięta.
|
70
60
|
edit:
|
71
61
|
title: Edytuj debatę
|
72
62
|
update: Zaktualizuj debatę
|
@@ -129,8 +119,6 @@ pl:
|
|
129
119
|
closed: Zakończone
|
130
120
|
open: Otwarte
|
131
121
|
user_group: Grupy
|
132
|
-
form:
|
133
|
-
select_a_category: Wybierz kategorię
|
134
122
|
index:
|
135
123
|
new_debate: Nowa debata
|
136
124
|
new:
|
@@ -144,11 +132,9 @@ pl:
|
|
144
132
|
recent: Najnowsze
|
145
133
|
updated: Ostatnio aktualizowane
|
146
134
|
show:
|
147
|
-
close_debate: Zamknij debatę
|
148
135
|
debate_closed: Zamknięta
|
149
136
|
debate_conclusions_are: 'Debata została zamknięta %{date} z następującymi wnioskami:'
|
150
137
|
edit_conclusions: Edytuj wnioski
|
151
|
-
edit_debate: Edytuj debatę
|
152
138
|
groups_count: Grupy
|
153
139
|
open: Otwarta
|
154
140
|
participants_count: Użytkownicy
|
@@ -209,7 +195,7 @@ pl:
|
|
209
195
|
badges:
|
210
196
|
commented_debates:
|
211
197
|
conditions:
|
212
|
-
|
198
|
+
- Wybierz otwartą debatę, w której możesz wziąć udział
|
213
199
|
description: Ta odznaka jest przyznawana, gdy aktywnie uczestniczysz w różnych debatach, pozostawiając komentarze.
|
214
200
|
description_another: Ten użytkownik uczestniczył w %{score} debatach.
|
215
201
|
description_own: Brałeś udział w %{score} debatach.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -3,15 +3,12 @@ pt-BR:
|
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
5
|
debate:
|
6
|
-
category_id: Categoria
|
7
6
|
closed_at: Fechado em
|
8
7
|
conclusions: Conclusões
|
9
|
-
decidim_category_id: Categoria
|
10
8
|
description: Descrição
|
11
9
|
end_time: Termina em
|
12
10
|
information_updates: Atualizações de informações
|
13
11
|
instructions: Instruções para participar
|
14
|
-
scope_id: Escopo
|
15
12
|
start_time: Começa em
|
16
13
|
title: Título
|
17
14
|
user_group_id: Criar debate como
|
@@ -30,7 +27,6 @@ pt-BR:
|
|
30
27
|
debates:
|
31
28
|
actions:
|
32
29
|
comment: Comentário
|
33
|
-
create: Criar
|
34
30
|
endorse: Endossar
|
35
31
|
name: Debates
|
36
32
|
settings:
|
@@ -38,8 +34,6 @@ pt-BR:
|
|
38
34
|
announcement: Anúncio
|
39
35
|
comments_enabled: Comentários ativados
|
40
36
|
comments_max_length: Tamanho máximo de comentários (deixe 0 para o valor padrão)
|
41
|
-
scope_id: Escopo
|
42
|
-
scopes_enabled: Escopos habilitados
|
43
37
|
step:
|
44
38
|
announcement: Anúncio
|
45
39
|
comments_blocked: Comentários bloqueados
|
@@ -49,8 +43,6 @@ pt-BR:
|
|
49
43
|
debates:
|
50
44
|
actions:
|
51
45
|
close: Fechar
|
52
|
-
confirm_destroy: Você tem certeza?
|
53
|
-
destroy: Excluir
|
54
46
|
edit: Editar
|
55
47
|
new: Novo debate
|
56
48
|
title: Ações
|
@@ -63,8 +55,6 @@ pt-BR:
|
|
63
55
|
create:
|
64
56
|
invalid: Houve um problema ao criar o debate.
|
65
57
|
success: Debate criado com sucesso.
|
66
|
-
destroy:
|
67
|
-
success: Debate excluído com sucesso.
|
68
58
|
edit:
|
69
59
|
title: Editar debate
|
70
60
|
update: Atualização do debate
|
@@ -125,8 +115,6 @@ pt-BR:
|
|
125
115
|
closed: Fechado
|
126
116
|
open: Aberto
|
127
117
|
user_group: Grupos
|
128
|
-
form:
|
129
|
-
select_a_category: Selecione uma categoria
|
130
118
|
index:
|
131
119
|
new_debate: Novo debate
|
132
120
|
new:
|
@@ -140,11 +128,9 @@ pt-BR:
|
|
140
128
|
recent: Mais recente
|
141
129
|
updated: Atualizado recentemente
|
142
130
|
show:
|
143
|
-
close_debate: Fechar debate
|
144
131
|
debate_closed: Fechado
|
145
132
|
debate_conclusions_are: 'O debate foi encerrado em %{date} com estas conclusões:'
|
146
133
|
edit_conclusions: Editar conclusões
|
147
|
-
edit_debate: Editar debate
|
148
134
|
groups_count: Grupos
|
149
135
|
open: Debate aberto
|
150
136
|
participants_count: Participantes
|
@@ -205,7 +191,7 @@ pt-BR:
|
|
205
191
|
badges:
|
206
192
|
commented_debates:
|
207
193
|
conditions:
|
208
|
-
|
194
|
+
- Escolha um debate aberto para participar
|
209
195
|
description: Este emblema é concedido quando você participa ativamente nos debates diferentes deixando seus comentários.
|
210
196
|
description_another: Este usuário participou em %{score} debates.
|
211
197
|
description_own: Você participou de %{score} debates.
|