decidim-accountability 0.27.10 → 0.28.0.rc4
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/accountability/content_blocks/highlighted_results_cell.rb +3 -8
- data/app/cells/decidim/accountability/highlighted_results/show.erb +3 -1
- data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +19 -19
- data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +29 -6
- data/app/cells/decidim/accountability/project/show.erb +11 -0
- data/app/cells/decidim/accountability/project/timeline.erb +22 -0
- data/app/cells/decidim/accountability/project_cell.rb +75 -0
- data/app/cells/decidim/accountability/result_activity_cell.rb +1 -4
- data/app/cells/decidim/accountability/result_card_cell.rb +21 -0
- data/app/cells/decidim/accountability/result_cell.rb +2 -2
- data/app/cells/decidim/accountability/result_l/extra_data.erb +3 -0
- data/app/cells/decidim/accountability/result_l_cell.rb +30 -0
- data/app/cells/decidim/accountability/result_metadata/project_aside.erb +6 -0
- data/app/cells/decidim/accountability/result_metadata/show_footer.erb +11 -0
- data/app/cells/decidim/accountability/result_metadata/versions.erb +1 -0
- data/app/cells/decidim/accountability/result_metadata_cell.rb +136 -0
- data/app/cells/decidim/accountability/results/show.erb +7 -0
- data/app/cells/decidim/accountability/results_cell.rb +14 -0
- data/app/cells/decidim/accountability/status/show.erb +9 -0
- data/app/cells/decidim/accountability/status/status.erb +16 -0
- data/app/cells/decidim/accountability/status_cell.rb +91 -0
- data/app/commands/decidim/accountability/admin/import_projects_to_accountability.rb +37 -0
- data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +2 -2
- data/app/controllers/decidim/accountability/admin/import_results_controller.rb +18 -6
- data/app/controllers/decidim/accountability/admin/projects_import_controller.rb +31 -0
- data/app/controllers/decidim/accountability/admin/results_controller.rb +4 -5
- data/app/controllers/decidim/accountability/admin/statuses_controller.rb +3 -3
- data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +3 -3
- data/app/controllers/decidim/accountability/results_controller.rb +20 -2
- data/app/events/decidim/accountability/proposal_linked_event.rb +18 -1
- data/app/events/decidim/accountability/result_progress_updated_event.rb +18 -2
- data/app/forms/decidim/accountability/admin/import_results_form.rb +22 -0
- data/app/forms/decidim/accountability/admin/result_import_projects_form.rb +51 -0
- data/app/helpers/decidim/accountability/admin/application_helper.rb +1 -0
- data/app/helpers/decidim/accountability/application_helper.rb +43 -2
- data/app/helpers/decidim/accountability/breadcrumb_helper.rb +10 -0
- data/app/jobs/decidim/accountability/admin/import_projects_job.rb +72 -0
- data/app/mailers/decidim/accountability/import_projects_mailer.rb +25 -0
- data/app/models/decidim/accountability/result.rb +1 -1
- data/app/packs/entrypoints/decidim_accountability.js +4 -1
- data/app/packs/entrypoints/decidim_accountability_admin_imports.js +3 -0
- data/app/packs/images/decidim/accountability/breadcrumb_arrow.svg +3 -0
- data/app/packs/src/decidim/accountability/admin/imports.js +15 -0
- data/app/packs/stylesheets/accountability.scss +169 -0
- data/app/permissions/decidim/accountability/admin/permissions.rb +17 -6
- data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +2 -2
- data/app/presenters/decidim/accountability/admin_log/status_presenter.rb +2 -2
- data/app/presenters/decidim/accountability/admin_log/timeline_entry_presenter.rb +2 -2
- data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +1 -1
- data/app/services/decidim/accountability/results_calculator.rb +1 -1
- data/app/services/decidim/accountability/results_csv_importer.rb +2 -2
- data/app/views/decidim/accountability/admin/import_results/new.html.erb +27 -23
- data/app/views/decidim/accountability/admin/projects_import/new.html.erb +45 -0
- data/app/views/decidim/accountability/admin/results/_form.html.erb +46 -46
- data/app/views/decidim/accountability/admin/results/edit.html.erb +18 -7
- data/app/views/decidim/accountability/admin/results/index.html.erb +102 -91
- data/app/views/decidim/accountability/admin/results/new.html.erb +18 -8
- data/app/views/decidim/accountability/admin/shared/_subnav.html.erb +1 -1
- data/app/views/decidim/accountability/admin/statuses/_form.html.erb +15 -17
- data/app/views/decidim/accountability/admin/statuses/edit.html.erb +16 -6
- data/app/views/decidim/accountability/admin/statuses/index.html.erb +33 -36
- data/app/views/decidim/accountability/admin/statuses/new.html.erb +16 -6
- data/app/views/decidim/accountability/admin/timeline_entries/_form.html.erb +12 -14
- data/app/views/decidim/accountability/admin/timeline_entries/edit.html.erb +17 -6
- data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +35 -34
- data/app/views/decidim/accountability/admin/timeline_entries/new.html.erb +17 -6
- data/app/views/decidim/accountability/import_projects_mailer/import.html.erb +2 -0
- data/app/views/decidim/accountability/results/_home_categories.html.erb +28 -73
- data/app/views/decidim/accountability/results/_linked_results.html.erb +3 -12
- data/app/views/decidim/accountability/results/_project.html.erb +29 -0
- data/app/views/decidim/accountability/results/_projects_aside.html.erb +40 -0
- data/app/views/decidim/accountability/results/_scope_filters.html.erb +27 -27
- data/app/views/decidim/accountability/results/_search.html.erb +15 -9
- data/app/views/decidim/accountability/results/_stats_box.html.erb +3 -3
- data/app/views/decidim/accountability/results/home.html.erb +34 -8
- data/app/views/decidim/accountability/results/index.html.erb +15 -15
- data/app/views/decidim/accountability/results/index.js.erb +3 -0
- data/app/views/decidim/accountability/results/show.html.erb +9 -10
- data/app/views/decidim/accountability/versions/show.html.erb +13 -10
- data/app/views/decidim/participatory_spaces/_result.html.erb +4 -4
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +23 -61
- data/config/locales/bg.yml +0 -96
- data/config/locales/ca.yml +54 -31
- data/config/locales/cs.yml +58 -29
- data/config/locales/da.yml +1 -36
- data/config/locales/de.yml +59 -36
- data/config/locales/el.yml +62 -29
- data/config/locales/en.yml +55 -31
- data/config/locales/es-MX.yml +52 -29
- data/config/locales/es-PY.yml +52 -29
- data/config/locales/es.yml +55 -32
- data/config/locales/eu.yml +53 -30
- data/config/locales/fi-plain.yml +51 -28
- data/config/locales/fi.yml +54 -31
- data/config/locales/fr-CA.yml +51 -28
- data/config/locales/fr.yml +52 -29
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -41
- data/config/locales/hu.yml +41 -29
- data/config/locales/id-ID.yml +1 -30
- data/config/locales/is-IS.yml +0 -32
- data/config/locales/it.yml +0 -43
- data/config/locales/ja.yml +55 -39
- data/config/locales/kaa.yml +20 -1
- data/config/locales/ko.yml +0 -188
- data/config/locales/lb.yml +1 -42
- data/config/locales/lt.yml +60 -41
- data/config/locales/lv.yml +1 -36
- data/config/locales/nl.yml +0 -41
- data/config/locales/no.yml +8 -49
- data/config/locales/pl.yml +17 -61
- data/config/locales/pt-BR.yml +41 -29
- data/config/locales/pt.yml +0 -42
- data/config/locales/ro-RO.yml +39 -66
- data/config/locales/ru.yml +1 -30
- data/config/locales/si-LK.yml +0 -4
- data/config/locales/sk.yml +1 -40
- data/config/locales/sl.yml +0 -11
- data/config/locales/sq-AL.yml +82 -7
- data/config/locales/sr-CS.yml +1 -30
- data/config/locales/sv.yml +36 -51
- data/config/locales/th-TH.yml +0 -140
- data/config/locales/tr-TR.yml +9 -75
- data/config/locales/uk.yml +1 -28
- data/config/locales/zh-CN.yml +1 -36
- data/config/locales/zh-TW.yml +52 -43
- data/lib/decidim/accountability/admin_engine.rb +3 -2
- data/lib/decidim/accountability/component.rb +4 -99
- data/lib/decidim/accountability/engine.rb +9 -1
- data/lib/decidim/accountability/result_serializer.rb +1 -1
- data/lib/decidim/accountability/seeds.rb +115 -0
- data/lib/decidim/accountability/test/factories.rb +18 -29
- data/lib/decidim/accountability/version.rb +1 -1
- data/lib/decidim/api/result_type.rb +1 -0
- metadata +62 -51
- data/app/cells/decidim/accountability/content_blocks/highlighted_results/elements.erb +0 -5
- data/app/cells/decidim/accountability/content_blocks/highlighted_results/heading.erb +0 -1
- data/app/cells/decidim/accountability/result_m/data.erb +0 -23
- data/app/cells/decidim/accountability/result_m/footer.erb +0 -22
- data/app/cells/decidim/accountability/result_m/tags.erb +0 -1
- data/app/cells/decidim/accountability/result_m_cell.rb +0 -37
- data/app/events/decidim/accountability/base_result_event.rb +0 -29
- data/app/packs/stylesheets/decidim/accountability/_accountability.scss +0 -4
- data/app/packs/stylesheets/decidim/accountability/accountability/_cards.scss +0 -11
- data/app/packs/stylesheets/decidim/accountability/accountability/_categories.scss +0 -121
- data/app/packs/stylesheets/decidim/accountability/accountability/_lines_breadcrumb.scss +0 -37
- data/app/packs/stylesheets/decidim/accountability/accountability/_results.scss +0 -148
- data/app/views/decidim/accountability/admin/results/proposals_picker.html.erb +0 -1
- data/app/views/decidim/accountability/result_widgets/show.html.erb +0 -2
- data/app/views/decidim/accountability/results/_home_header.html.erb +0 -23
- data/app/views/decidim/accountability/results/_results_leaf.html.erb +0 -47
- data/app/views/decidim/accountability/results/_results_parent.html.erb +0 -32
- data/app/views/decidim/accountability/results/_show_leaf.html.erb +0 -81
- data/app/views/decidim/accountability/results/_show_parent.html.erb +0 -30
- data/app/views/decidim/accountability/results/_stats.html.erb +0 -15
- data/app/views/decidim/accountability/results/_timeline.html.erb +0 -30
- data/app/views/decidim/accountability/versions/index.html.erb +0 -12
- data/config/locales/he-IL.yml +0 -219
- data/decidim-accountability.gemspec +0 -38
data/config/locales/it.yml
CHANGED
@@ -22,7 +22,6 @@ it:
|
|
22
22
|
timeline_entry:
|
23
23
|
description: Descrizione
|
24
24
|
entry_date: Data
|
25
|
-
title: Titolo
|
26
25
|
models:
|
27
26
|
decidim/accountability/proposal_linked_event: Proposta inclusa in un risultato
|
28
27
|
decidim/accountability/result_progress_updated_event: Avanzamento dei risultati aggiornato
|
@@ -39,8 +38,6 @@ it:
|
|
39
38
|
confirm_destroy: Sei sicuro di voler eliminare questo %{name}?
|
40
39
|
destroy: Cancella
|
41
40
|
edit: Modifica
|
42
|
-
import_csv: Importa da file CSV
|
43
|
-
new: Nuovo %{name}
|
44
41
|
preview: Anteprima
|
45
42
|
timeline_entries: Evoluzione del progetto
|
46
43
|
title: Azioni
|
@@ -51,23 +48,12 @@ it:
|
|
51
48
|
import_results:
|
52
49
|
new:
|
53
50
|
import: Importa
|
54
|
-
title: Importa risultati da CSV
|
55
|
-
imports:
|
56
|
-
create:
|
57
|
-
success: L'importazione del file è iniziata. Riceverai un'email nei prossimi minuti con l'esito
|
58
51
|
models:
|
59
52
|
result:
|
60
53
|
name: Risultato
|
61
54
|
status:
|
62
55
|
name: Stato
|
63
|
-
timeline_entry:
|
64
|
-
name: Voce della cronologia
|
65
56
|
results:
|
66
|
-
create:
|
67
|
-
invalid: C'è stato un problema durante la creazione di questo risultato
|
68
|
-
success: Risultato creato con successo
|
69
|
-
destroy:
|
70
|
-
success: Risultato eliminato con successo
|
71
57
|
edit:
|
72
58
|
title: Modifica il risultato
|
73
59
|
update: Aggiorna il risultato
|
@@ -76,18 +62,10 @@ it:
|
|
76
62
|
new:
|
77
63
|
create: Crea un risultato
|
78
64
|
title: Nuovo risultato
|
79
|
-
update:
|
80
|
-
invalid: C'è stato un problema durante l'aggiornamento di questo risultato
|
81
|
-
success: Risultato modificato con successo
|
82
65
|
shared:
|
83
66
|
subnav:
|
84
67
|
statuses: Stati
|
85
68
|
statuses:
|
86
|
-
create:
|
87
|
-
invalid: C'è stato un problema nella creazione di questo stato
|
88
|
-
success: Stato creato con successo
|
89
|
-
destroy:
|
90
|
-
success: Stato eliminato con successo
|
91
69
|
edit:
|
92
70
|
title: Modifica lo stato
|
93
71
|
update: Aggiorna lo stato
|
@@ -96,15 +74,7 @@ it:
|
|
96
74
|
new:
|
97
75
|
create: Crea stato
|
98
76
|
title: Nuovo stato
|
99
|
-
update:
|
100
|
-
invalid: C'è stato un problema nel aggiornamento di questo stato
|
101
|
-
success: Stato aggiornato con successo
|
102
77
|
timeline_entries:
|
103
|
-
create:
|
104
|
-
invalid: C'è stato un problema nella creazione di questa voce
|
105
|
-
success: Voce creata con successo
|
106
|
-
destroy:
|
107
|
-
success: La voce è stata eliminata correttamente
|
108
78
|
edit:
|
109
79
|
title: Modifica la voce
|
110
80
|
update: Aggiorna la voce
|
@@ -113,9 +83,6 @@ it:
|
|
113
83
|
new:
|
114
84
|
create: Crea una voce
|
115
85
|
title: Nuova voce
|
116
|
-
update:
|
117
|
-
invalid: C'è stato un problema nel aggiornamento di questa voce
|
118
|
-
success: Voce aggiornata con successo
|
119
86
|
admin_log:
|
120
87
|
result:
|
121
88
|
create: "%{user_name} ha creato il risultato %{resource_name} in %{space_name}"
|
@@ -126,18 +93,13 @@ it:
|
|
126
93
|
not_found: 'Il genitore non è stato trovato sul database (ID: %{id})'
|
127
94
|
content_blocks:
|
128
95
|
highlighted_results:
|
129
|
-
dates: Date
|
130
96
|
results: Risultati
|
131
|
-
unspecified: Non specificato
|
132
97
|
import_mailer:
|
133
98
|
import:
|
134
99
|
errors: Errori
|
135
|
-
errors_present: Si è verificato un problema durante l'importazione dei risultati
|
136
100
|
row_number: Riga
|
137
101
|
subject: Importazione dei risultati riuscita
|
138
102
|
success: Importazione riuscita dei risultati. È possibile rivedere i risultati nell'interfaccia di amministrazione.
|
139
|
-
last_activity:
|
140
|
-
new_result_at_html: "<span>Nuovo risultato a %{link}</span>"
|
141
103
|
models:
|
142
104
|
result:
|
143
105
|
fields:
|
@@ -159,10 +121,6 @@ it:
|
|
159
121
|
timeline_entry:
|
160
122
|
fields:
|
161
123
|
entry_date: Data
|
162
|
-
title: Titolo
|
163
|
-
result_m:
|
164
|
-
executed: Eseguito
|
165
|
-
view: Visualizza
|
166
124
|
results:
|
167
125
|
count:
|
168
126
|
results_count:
|
@@ -170,7 +128,6 @@ it:
|
|
170
128
|
other: "%{count} risultati"
|
171
129
|
filters:
|
172
130
|
all: Tutti
|
173
|
-
scopes: Ambiti
|
174
131
|
home:
|
175
132
|
categories_label: Categorie
|
176
133
|
subcategories_label: Sottocategorie
|
data/config/locales/ja.yml
CHANGED
@@ -8,6 +8,7 @@ ja:
|
|
8
8
|
decidim_scope_id: スコープ
|
9
9
|
description: 説明
|
10
10
|
end_date: 終了日
|
11
|
+
meetings_ids: 含まれるミーティング
|
11
12
|
progress: 進捗状況
|
12
13
|
project_ids: 含まれるプロジェクト
|
13
14
|
proposals: 含まれる提案
|
@@ -38,8 +39,9 @@ ja:
|
|
38
39
|
confirm_destroy: この %{name} を削除してもよろしいですか?
|
39
40
|
destroy: 削除
|
40
41
|
edit: 編集
|
41
|
-
|
42
|
-
|
42
|
+
new_result: 新しい結果
|
43
|
+
new_status: 新しいステータス
|
44
|
+
new_timeline_entry: 新しいタイムラインのエントリ
|
43
45
|
preview: プレビュー
|
44
46
|
timeline_entries: プロジェクトの進化
|
45
47
|
title: アクション
|
@@ -54,41 +56,52 @@ ja:
|
|
54
56
|
info: |
|
55
57
|
<p>以下の手順をお勧めします:</p>
|
56
58
|
<ol>
|
57
|
-
<li
|
58
|
-
<li
|
59
|
+
<li>追加したい<a href='%{link_new_status}' target='_blank'>結果のステータスを作成</a>してください。</li>
|
60
|
+
<li>インポートを使用する前に、この管理画面を通じて<a href='%{link_new_result}' target='_blank'>少なくとも1つの結果を手動で作成</a>し、フォーマットと必要な入力内容をより理解してください。</li>
|
59
61
|
<li>%{link_export_csv}</li>
|
60
|
-
<li
|
62
|
+
<li>ローカルで変更を加えてください。次の列のみ変更可能です。
|
61
63
|
<ul>
|
62
64
|
<li><b>category/id:</b> カテゴリのID</li>
|
63
65
|
<li><b>scope/id:</b> スコープのID</li>
|
64
|
-
<li><b>parent/id:</b>
|
65
|
-
<li><b>title/en:</b>
|
66
|
-
<li><b>description/en:</b>
|
67
|
-
<li><b>start_date:</b>
|
68
|
-
<li><b>end_date:</b>
|
69
|
-
<li><b>status/id:</b>
|
70
|
-
<li><b>progress:</b>
|
71
|
-
<li><b>proposals_ids:</b> 関連する提案の内部ID
|
66
|
+
<li><b>parent/id:</b> 関連する結果のID(オプション)</li>
|
67
|
+
<li><b>title/en:</b> 英語のタイトル。プラットフォームの言語設定に依存します。</li>
|
68
|
+
<li><b>description/en:</b> 英語の説明。プラットフォームの言語設定に依存します。</li>
|
69
|
+
<li><b>start_date:</b> 結果が実行を開始する日付(形式:YYYY-MM-DD)</li>
|
70
|
+
<li><b>end_date:</b> 結果が実行を終了する日付(形式:YYYY-MM-DD)</li>
|
71
|
+
<li><b>status/id:</b> この結果のステータスのID</li>
|
72
|
+
<li><b>progress:</b> 実行の進捗率(0〜100のパーセント)</li>
|
73
|
+
<li><b>proposals_ids:</b> 関連する提案の内部ID(コンマで区切られています)。自動的に<span class='attribute-name'>proposal_url</span>に変換されます。</li>
|
72
74
|
</ul>
|
73
75
|
</li>
|
74
76
|
</ol>
|
75
|
-
title: CSVから結果をインポート
|
76
77
|
imports:
|
77
78
|
create:
|
78
|
-
|
79
|
+
invalid: 結果のインポート中に問題が発生しました。
|
80
|
+
success: ファイルのインポートが開始されました。インポートの結果は、数分後にメールで届きます。
|
79
81
|
models:
|
80
82
|
result:
|
81
83
|
name: 結果
|
82
84
|
status:
|
83
85
|
name: ステータス
|
84
|
-
|
85
|
-
|
86
|
+
projects_import:
|
87
|
+
create:
|
88
|
+
invalid: プロジェクトを結果にインポートする際に問題が発生しました。指示に従い、実装のためにプロジェクトを選択していることを確認してください。
|
89
|
+
new:
|
90
|
+
create: インポート
|
91
|
+
import_all_selected_projects: 実装のために選択されたすべてのプロジェクトをインポート
|
92
|
+
new_items:
|
93
|
+
other: "選択した %{count} 件のプロジェクトがインポートされます"
|
94
|
+
no_components: この参加スペースにはプロジェクトを結果にインポートするための予算コンポーネントはありません。
|
95
|
+
origin_component_id: 元のコンポーネント
|
96
|
+
select_component: コンポーネントを選択
|
97
|
+
success:
|
98
|
+
other: "%{count} 件のプロジェクトがインポートする準備を行いました。完了次第、メールで通知します。"
|
86
99
|
results:
|
87
100
|
create:
|
88
|
-
invalid:
|
89
|
-
success:
|
101
|
+
invalid: 結果の作成中に問題がありました。
|
102
|
+
success: 結果が正常に作成されました。
|
90
103
|
destroy:
|
91
|
-
success:
|
104
|
+
success: 結果を削除しました。
|
92
105
|
edit:
|
93
106
|
title: 結果を編集
|
94
107
|
update: 結果を更新
|
@@ -98,17 +111,17 @@ ja:
|
|
98
111
|
create: 結果を作成
|
99
112
|
title: 新しい結果
|
100
113
|
update:
|
101
|
-
invalid:
|
102
|
-
success:
|
114
|
+
invalid: 結果の更新中に問題が発生しました。
|
115
|
+
success: 結果を更新しました。
|
103
116
|
shared:
|
104
117
|
subnav:
|
105
118
|
statuses: ステータス
|
106
119
|
statuses:
|
107
120
|
create:
|
108
|
-
invalid:
|
109
|
-
success:
|
121
|
+
invalid: ステータスの作成中に問題が発生しました。
|
122
|
+
success: ステータスが正常に作成されました。
|
110
123
|
destroy:
|
111
|
-
success:
|
124
|
+
success: ステータスを削除しました。
|
112
125
|
edit:
|
113
126
|
title: ステータスの編集
|
114
127
|
update: ステータスを更新
|
@@ -118,14 +131,14 @@ ja:
|
|
118
131
|
create: ステータスを作成
|
119
132
|
title: 新しいステータス
|
120
133
|
update:
|
121
|
-
invalid:
|
122
|
-
success:
|
134
|
+
invalid: ステータスの更新中に問題が発生しました。
|
135
|
+
success: ステータスが正常に更新されました。
|
123
136
|
timeline_entries:
|
124
137
|
create:
|
125
|
-
invalid:
|
138
|
+
invalid: エントリの作成中に問題が発生しました。
|
126
139
|
success: エントリが正常に作成されました。
|
127
140
|
destroy:
|
128
|
-
success:
|
141
|
+
success: エントリを削除しました。
|
129
142
|
edit:
|
130
143
|
title: エントリを編集
|
131
144
|
update: エントリを更新
|
@@ -135,8 +148,8 @@ ja:
|
|
135
148
|
create: エントリを作成
|
136
149
|
title: 新しいエントリ
|
137
150
|
update:
|
138
|
-
invalid:
|
139
|
-
success:
|
151
|
+
invalid: エントリの更新中に問題が発生しました。
|
152
|
+
success: エントリを更新しました。
|
140
153
|
admin_log:
|
141
154
|
result:
|
142
155
|
create: "%{user_name} が結果 %{resource_name} を %{space_name} に作成しました"
|
@@ -155,18 +168,22 @@ ja:
|
|
155
168
|
not_found: '親がデータベース上に見つかりませんでした (ID: %{id})'
|
156
169
|
content_blocks:
|
157
170
|
highlighted_results:
|
158
|
-
dates: 日付
|
159
171
|
results: 結果
|
160
|
-
unspecified: 指定なし
|
161
172
|
import_mailer:
|
162
173
|
import:
|
163
174
|
errors: エラー
|
164
|
-
errors_present:
|
175
|
+
errors_present: 結果のインポート中に問題が発生しました。
|
165
176
|
row_number: 行
|
166
177
|
subject: 結果のインポートに成功しました
|
167
178
|
success: 結果のインポートに成功しました。管理画面で結果を確認できます。
|
179
|
+
import_projects_mailer:
|
180
|
+
import:
|
181
|
+
added_projects:
|
182
|
+
other: "%{count} 件の結果がプロジェクトからインポートされました。"
|
183
|
+
subject: プロジェクトのインポートに成功しました
|
184
|
+
success: '%{component_name} コンポーネントに結果をインポートしました。管理インターフェイスで結果を確認できます。'
|
168
185
|
last_activity:
|
169
|
-
|
186
|
+
new_result: '新しい結果:'
|
170
187
|
models:
|
171
188
|
result:
|
172
189
|
fields:
|
@@ -189,23 +206,22 @@ ja:
|
|
189
206
|
fields:
|
190
207
|
entry_date: 日付
|
191
208
|
title: タイトル
|
192
|
-
result_m:
|
193
|
-
executed: 実行日時
|
194
|
-
view: 表示
|
195
209
|
results:
|
196
210
|
count:
|
197
211
|
results_count:
|
198
212
|
other: "%{count} 件の結果"
|
199
213
|
filters:
|
200
214
|
all: すべて
|
201
|
-
scopes: スコープ
|
202
215
|
home:
|
203
216
|
categories_label: カテゴリ
|
217
|
+
empty: まだ結果はありません。
|
218
|
+
empty_filters: この条件の結果はありません。
|
204
219
|
subcategories_label: サブカテゴリ
|
205
220
|
home_header:
|
206
221
|
global_status: グローバル実行状況
|
207
222
|
nav_breadcrumb:
|
208
223
|
global: グローバル実行
|
224
|
+
no_results: プロジェクトがありません
|
209
225
|
search:
|
210
226
|
search: アクションを検索
|
211
227
|
show:
|
data/config/locales/kaa.yml
CHANGED
@@ -33,7 +33,14 @@ kaa:
|
|
33
33
|
name: Nátiyje
|
34
34
|
status:
|
35
35
|
name: Jaǵday
|
36
|
+
projects_import:
|
37
|
+
new:
|
38
|
+
create: Importlaw
|
36
39
|
results:
|
40
|
+
create:
|
41
|
+
success: Nátiyje tabıslı jaratıldı.
|
42
|
+
destroy:
|
43
|
+
success: Nátiyje tabıslı óshirildi.
|
37
44
|
edit:
|
38
45
|
title: Nátiyjeni ózgertiw
|
39
46
|
update: Nátiyjeni jańalaw
|
@@ -42,10 +49,16 @@ kaa:
|
|
42
49
|
new:
|
43
50
|
create: Nátiyje jaratıw
|
44
51
|
title: Jańa nátiyje
|
52
|
+
update:
|
53
|
+
success: Nátiyje tabıslı jańalandı.
|
45
54
|
shared:
|
46
55
|
subnav:
|
47
56
|
statuses: Jaǵdaylar
|
48
57
|
statuses:
|
58
|
+
create:
|
59
|
+
success: Jaǵday tabıslı jaratıldı.
|
60
|
+
destroy:
|
61
|
+
success: Jaǵday tabıslı óshirildi.
|
49
62
|
edit:
|
50
63
|
title: Jaǵdaydı ózgertiw
|
51
64
|
update: Jaǵdaydı jańalaw
|
@@ -54,13 +67,16 @@ kaa:
|
|
54
67
|
new:
|
55
68
|
create: Jaǵday jaratıw
|
56
69
|
title: Jańa jaǵday
|
70
|
+
update:
|
71
|
+
success: Jaǵday tabıslı jańalandı.
|
57
72
|
content_blocks:
|
58
73
|
highlighted_results:
|
59
74
|
results: Nátiyjeler
|
60
|
-
unspecified: Kórsetilmegen
|
61
75
|
import_mailer:
|
62
76
|
import:
|
63
77
|
errors: Qátelikler
|
78
|
+
last_activity:
|
79
|
+
new_result: 'Jańa nátiyje:'
|
64
80
|
models:
|
65
81
|
result:
|
66
82
|
fields:
|
@@ -86,5 +102,8 @@ kaa:
|
|
86
102
|
results:
|
87
103
|
object: nátiyjeler
|
88
104
|
title: Nátiyjeler
|
105
|
+
participatory_spaces:
|
106
|
+
highlighted_results:
|
107
|
+
see_all: Barlıq nátiyjelerdi kóriw
|
89
108
|
statistics:
|
90
109
|
results_count: Nátiyjeler
|
data/config/locales/ko.yml
CHANGED
@@ -1,189 +1 @@
|
|
1
|
-
---
|
2
1
|
ko:
|
3
|
-
activemodel:
|
4
|
-
attributes:
|
5
|
-
result:
|
6
|
-
decidim_accountability_status_id: 상태
|
7
|
-
decidim_category_id: 분류
|
8
|
-
decidim_scope_id: 범위
|
9
|
-
description: 상세정보
|
10
|
-
end_date: 종료 날짜
|
11
|
-
progress: 진행 상황
|
12
|
-
project_ids: 포함된 프로젝트
|
13
|
-
proposals: 포함된 제안
|
14
|
-
start_date: 시작 날짜
|
15
|
-
title: 제목
|
16
|
-
updated_at: 수정일
|
17
|
-
status:
|
18
|
-
description: 상세정보
|
19
|
-
key: 키
|
20
|
-
name: 이름
|
21
|
-
progress: 진행 상황
|
22
|
-
timeline_entry:
|
23
|
-
description: 상세정보
|
24
|
-
entry_date: 날짜
|
25
|
-
title: 제목
|
26
|
-
models:
|
27
|
-
decidim/accountability/proposal_linked_event: 결과에 포함된 제안
|
28
|
-
decidim/accountability/result_progress_updated_event: 결과 진행이 업데이트되었습니다
|
29
|
-
activerecord:
|
30
|
-
models:
|
31
|
-
decidim/accountability/result:
|
32
|
-
other: 결과
|
33
|
-
decidim:
|
34
|
-
accountability:
|
35
|
-
actions:
|
36
|
-
attachment_collections: 폴더
|
37
|
-
attachments: 첨부 파일
|
38
|
-
confirm_destroy: 정말로 %{name} 를 삭제하시겠습니까?
|
39
|
-
destroy: 삭제
|
40
|
-
edit: 편집
|
41
|
-
preview: 미리보기
|
42
|
-
title: 작업
|
43
|
-
admin:
|
44
|
-
exports:
|
45
|
-
result_comments: 댓글
|
46
|
-
results: 결과
|
47
|
-
import_results:
|
48
|
-
new:
|
49
|
-
download_export: CSV 포맷으로 다운로드
|
50
|
-
import: 가져오기
|
51
|
-
models:
|
52
|
-
result:
|
53
|
-
name: 결과
|
54
|
-
status:
|
55
|
-
name: 상태
|
56
|
-
results:
|
57
|
-
edit:
|
58
|
-
title: 결과 수정
|
59
|
-
update: 결과 업데이트
|
60
|
-
index:
|
61
|
-
title: 결과
|
62
|
-
new:
|
63
|
-
create: 결과 생성
|
64
|
-
title: 새 결과
|
65
|
-
shared:
|
66
|
-
subnav:
|
67
|
-
statuses: 상태
|
68
|
-
statuses:
|
69
|
-
edit:
|
70
|
-
title: 상태 수정하기
|
71
|
-
update: 상태 업데이트
|
72
|
-
index:
|
73
|
-
title: 상태
|
74
|
-
new:
|
75
|
-
create: 상태 생성하기
|
76
|
-
title: 새 상태
|
77
|
-
admin_log:
|
78
|
-
result:
|
79
|
-
create: "%{user_name} 이(가) %{space_name} 에서 %{resource_name} 결과를 생성했습니다"
|
80
|
-
delete: "%{user_name} 이(가) %{space_name} 에서 %{resource_name} 결과를 삭제했습니다"
|
81
|
-
update: "%{user_name} 이(가) %{space_name} 에서 %{resource_name} 결과를 업데이트했습니다"
|
82
|
-
status:
|
83
|
-
create: "%{user_name} 이(가) %{resource_name} 상태를 생성했습니다"
|
84
|
-
delete: "%{user_name} 이(가) %{resource_name} 상태를 삭제했습니다"
|
85
|
-
update: "%{user_name} 이(가) %{resource_name} 상태를 업데이트했습니다"
|
86
|
-
content_blocks:
|
87
|
-
highlighted_results:
|
88
|
-
results: 결과
|
89
|
-
import_mailer:
|
90
|
-
import:
|
91
|
-
errors: 오류
|
92
|
-
row_number: 열
|
93
|
-
subject: 결과 가져오기 성공
|
94
|
-
success: 결과 가져오기 성공. 관리자 화면에서 결과를 볼 수 있습니다.
|
95
|
-
models:
|
96
|
-
result:
|
97
|
-
fields:
|
98
|
-
category: 분류
|
99
|
-
created_at: 생성됨
|
100
|
-
end_date: 종료 날짜
|
101
|
-
id: 아이디
|
102
|
-
progress: 진행 상황
|
103
|
-
scope: 범위
|
104
|
-
start_date: 시작 날짜
|
105
|
-
status: 상태
|
106
|
-
title: 제목
|
107
|
-
status:
|
108
|
-
fields:
|
109
|
-
description: 상세정보
|
110
|
-
key: 키
|
111
|
-
name: 이름
|
112
|
-
progress: 진행 상황
|
113
|
-
timeline_entry:
|
114
|
-
fields:
|
115
|
-
entry_date: 날짜
|
116
|
-
title: 제목
|
117
|
-
results:
|
118
|
-
count:
|
119
|
-
results_count:
|
120
|
-
other: "%{count} 개의 결과"
|
121
|
-
filters:
|
122
|
-
all: 전체
|
123
|
-
home:
|
124
|
-
categories_label: 분류
|
125
|
-
subcategories_label: '하위 분류:'
|
126
|
-
search:
|
127
|
-
search: 작업 검색
|
128
|
-
show:
|
129
|
-
stats:
|
130
|
-
attendees: 참여자
|
131
|
-
back_to_resource: 결과로 돌아가기
|
132
|
-
comments: 댓글
|
133
|
-
contributions: 기여
|
134
|
-
last_edited_by: 최근 편집자
|
135
|
-
last_updated_at: 마지막 업데이트
|
136
|
-
meetings: 회의
|
137
|
-
proposals: 제안
|
138
|
-
votes: 지원
|
139
|
-
admin:
|
140
|
-
filters:
|
141
|
-
results:
|
142
|
-
category_id_eq:
|
143
|
-
label: 분류
|
144
|
-
scope_id_eq:
|
145
|
-
label: 범위
|
146
|
-
status_id_eq:
|
147
|
-
label: 상태
|
148
|
-
components:
|
149
|
-
accountability:
|
150
|
-
actions:
|
151
|
-
comment: 댓글 달기
|
152
|
-
name: 책임
|
153
|
-
settings:
|
154
|
-
global:
|
155
|
-
categories_label: '"카테고리" 이름'
|
156
|
-
comments_enabled: 댓글 활성화됨
|
157
|
-
comments_max_length: 댓글 최대 길이(기본값은 0으로 남김)
|
158
|
-
display_progress_enabled: 진행사항 보기
|
159
|
-
heading_leaf_level_results: '"프로젝트" 이름'
|
160
|
-
heading_parent_level_results: '"결과" 이름'
|
161
|
-
intro: 소개
|
162
|
-
scope_id: 범위
|
163
|
-
scopes_enabled: 범위 활성화됨
|
164
|
-
subcategories_label: '"카테고리" 이름'
|
165
|
-
step:
|
166
|
-
comments_blocked: 댓글 차단됨
|
167
|
-
events:
|
168
|
-
accountability:
|
169
|
-
proposal_linked:
|
170
|
-
email_intro: '%{proposal_title} 제안이 결과에 포함되었습니다. 이 페이지에서 확인할 수 있습니다:'
|
171
|
-
email_outro: '%{proposal_title} 을(를) 팔로우하고 있으므로 이 알림을 받았습니다. 이전 링크를 클릭해 알림 수신을 중지할 수 있습니다.'
|
172
|
-
email_subject: '%{proposal_title} 업데이트'
|
173
|
-
notification_title: <a href="% {proposal_path}">% {proposal_title}/a> 제안이 <a href="% {resource_path}">% {resource_title}/a> 결과에 포함되었습니다.
|
174
|
-
result_progress_updated:
|
175
|
-
email_intro: '%{proposal_title} 제안을 포함하는 %{resource_title} 결과가 %{progress}% 완료되었습니다. 이 페이지에서 확인할 수 있습니다:'
|
176
|
-
email_outro: '%{proposal_title} 을(를) 팔로우중이어서 이 알림을 받게되었고, %{resource_title} 에 이 의도가 포함되어 있습니다. 이전 링크를 팔로우해서 알림을 받지 않으실 수 있습니다.'
|
177
|
-
email_subject: '%{resource_title} 과정에 업데이트 발생'
|
178
|
-
notification_title: 제안 <a href="% {resource_path}">% {resource_path}">% {proposal_title}/a>를 포함하는 <a href="% {resource_title}/a> 결과는 이제 %{progress}% 완료되었습니다.
|
179
|
-
metrics:
|
180
|
-
results:
|
181
|
-
object: 결과
|
182
|
-
title: 결과
|
183
|
-
resource_links:
|
184
|
-
included_projects:
|
185
|
-
result_project: 본 결과에 포함된 프로젝트
|
186
|
-
included_proposals:
|
187
|
-
result_proposal: 본 결과에 포함된 제안
|
188
|
-
statistics:
|
189
|
-
results_count: 결과
|
data/config/locales/lb.yml
CHANGED
@@ -38,8 +38,6 @@ lb:
|
|
38
38
|
confirm_destroy: Sidd Dir sécher datt Dir dësen %{name} läsche wëllt?
|
39
39
|
destroy: Läschen
|
40
40
|
edit: Editéieren
|
41
|
-
import_csv: CSV importéieren
|
42
|
-
new: Néi %{name}
|
43
41
|
preview: Preview
|
44
42
|
timeline_entries: Projektentwécklung
|
45
43
|
title: Aktiounen
|
@@ -50,23 +48,12 @@ lb:
|
|
50
48
|
import_results:
|
51
49
|
new:
|
52
50
|
import: Import
|
53
|
-
title: Resultater aus engem CSV-Fichier importéieren
|
54
|
-
imports:
|
55
|
-
create:
|
56
|
-
success: Den Import vum Fichier huet ugefaang. Dir kritt eng Email an den nächste puer Minutte mam Resultat vum Import
|
57
51
|
models:
|
58
52
|
result:
|
59
53
|
name: Resultat
|
60
54
|
status:
|
61
55
|
name: Status
|
62
|
-
timeline_entry:
|
63
|
-
name: Zeitachseneintrag
|
64
56
|
results:
|
65
|
-
create:
|
66
|
-
invalid: Beim Erstellen dieses Ergebnisses ist ein Problem aufgetreten
|
67
|
-
success: Ergebnis erfolgreich erstellt
|
68
|
-
destroy:
|
69
|
-
success: Ergebnis erfolgreich gelöscht
|
70
57
|
edit:
|
71
58
|
title: Ergebnis bearbeiten
|
72
59
|
update: Ergebnis aktualisieren
|
@@ -75,18 +62,10 @@ lb:
|
|
75
62
|
new:
|
76
63
|
create: Ergebnis erstellen
|
77
64
|
title: Neues Ergebnis
|
78
|
-
update:
|
79
|
-
invalid: Beim Aktualisieren dieses Ergebnisses ist ein Problem aufgetreten
|
80
|
-
success: Ergebnis erfolgreich aktualisiert
|
81
65
|
shared:
|
82
66
|
subnav:
|
83
67
|
statuses: Status
|
84
68
|
statuses:
|
85
|
-
create:
|
86
|
-
invalid: Beim Erstellen dieses Status ist ein Problem aufgetreten
|
87
|
-
success: Status erfolgreich erstellt
|
88
|
-
destroy:
|
89
|
-
success: Status erfolgreich gelöscht
|
90
69
|
edit:
|
91
70
|
title: Status bearbeiten
|
92
71
|
update: Update Status
|
@@ -95,15 +74,7 @@ lb:
|
|
95
74
|
new:
|
96
75
|
create: Status erstellen
|
97
76
|
title: Neuer Status
|
98
|
-
update:
|
99
|
-
invalid: Beim Aktualisieren dieses Status ist ein Problem aufgetreten
|
100
|
-
success: Status erfolgreich aktualisiert
|
101
77
|
timeline_entries:
|
102
|
-
create:
|
103
|
-
invalid: Beim Erstellen dieses Eintrags ist ein Problem aufgetreten
|
104
|
-
success: Der Eintrag wurde erfolgreich erstellt
|
105
|
-
destroy:
|
106
|
-
success: Der Eintrag wurde erfolgreich gelöscht
|
107
78
|
edit:
|
108
79
|
title: Eintrag bearbeiten
|
109
80
|
update: Eintrag aktualisieren
|
@@ -112,9 +83,6 @@ lb:
|
|
112
83
|
new:
|
113
84
|
create: Eintrag erstellen
|
114
85
|
title: Neuer Eintrag
|
115
|
-
update:
|
116
|
-
invalid: Beim Aktualisieren dieses Eintrags ist ein Problem aufgetreten
|
117
|
-
success: Eintrag erfolgreich aktualisiert
|
118
86
|
admin_log:
|
119
87
|
result:
|
120
88
|
create: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} erstellt"
|
@@ -125,18 +93,13 @@ lb:
|
|
125
93
|
not_found: 'Das übergeordnete Objekt wurde nicht in der Datenbank gefunden (ID: %{id})'
|
126
94
|
content_blocks:
|
127
95
|
highlighted_results:
|
128
|
-
dates: Daten
|
129
96
|
results: Ergebnisse
|
130
|
-
unspecified: Keine Angabe
|
131
97
|
import_mailer:
|
132
98
|
import:
|
133
99
|
errors: Fehler
|
134
|
-
errors_present: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten
|
135
100
|
row_number: Zeile
|
136
101
|
subject: Ergebnisse wurden erfolgreich importiert
|
137
102
|
success: Ergebnisse wurden erfolgreich importiert. Sie können die Ergebnisse über die Administrationsoberfläche aufrufen.
|
138
|
-
last_activity:
|
139
|
-
new_result_at_html: "<span>Neues Ergebnis bei %{link}</span>"
|
140
103
|
models:
|
141
104
|
result:
|
142
105
|
fields:
|
@@ -158,9 +121,6 @@ lb:
|
|
158
121
|
timeline_entry:
|
159
122
|
fields:
|
160
123
|
entry_date: Datum
|
161
|
-
result_m:
|
162
|
-
executed: Ausgeführt
|
163
|
-
view: Ansicht
|
164
124
|
results:
|
165
125
|
count:
|
166
126
|
results_count:
|
@@ -168,7 +128,6 @@ lb:
|
|
168
128
|
other: "%{count} Ergebnisse"
|
169
129
|
filters:
|
170
130
|
all: Alle
|
171
|
-
scopes: Bereiche
|
172
131
|
home:
|
173
132
|
categories_label: Kategorien
|
174
133
|
subcategories_label: Unterkategorien
|
@@ -182,7 +141,7 @@ lb:
|
|
182
141
|
stats:
|
183
142
|
attendees: Teilnehmer
|
184
143
|
back_to_resource: Gehe zurück zum Ergebnis
|
185
|
-
comments:
|
144
|
+
comments: Bemerkungen
|
186
145
|
contributions: Beiträge
|
187
146
|
last_edited_by: Zuletzt bearbeitet von
|
188
147
|
last_updated_at: Zuletzt aktualisiert am
|