decidim-accountability 0.28.5 → 0.29.0.rc1
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/accountability/highlighted_results_for_component_cell.rb +0 -3
- data/app/cells/decidim/accountability/project_cell.rb +1 -6
- data/app/cells/decidim/accountability/result_l_cell.rb +1 -2
- data/app/cells/decidim/accountability/result_metadata_cell.rb +0 -6
- data/app/cells/decidim/accountability/results_cell.rb +0 -2
- data/app/cells/decidim/accountability/status_cell.rb +11 -8
- data/app/commands/decidim/accountability/admin/create_imported_result.rb +18 -85
- data/app/commands/decidim/accountability/admin/create_result.rb +12 -86
- data/app/commands/decidim/accountability/admin/create_status.rb +3 -31
- data/app/commands/decidim/accountability/admin/create_timeline_entry.rb +3 -30
- data/app/commands/decidim/accountability/admin/has_result_command.rb +54 -0
- data/app/commands/decidim/accountability/admin/update_imported_result.rb +16 -70
- data/app/commands/decidim/accountability/admin/update_result.rb +10 -72
- data/app/commands/decidim/accountability/admin/update_status.rb +3 -39
- data/app/commands/decidim/accountability/admin/update_timeline_entry.rb +3 -38
- data/app/controllers/decidim/accountability/admin/results_controller.rb +1 -1
- data/app/controllers/decidim/accountability/admin/statuses_controller.rb +7 -8
- data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +8 -8
- data/app/controllers/decidim/accountability/results_controller.rb +1 -21
- data/app/forms/decidim/accountability/admin/result_form.rb +1 -1
- data/app/forms/decidim/accountability/admin/timeline_entry_form.rb +1 -1
- data/app/helpers/decidim/accountability/application_helper.rb +0 -34
- data/app/helpers/decidim/accountability/breadcrumb_helper.rb +0 -4
- data/app/mailers/decidim/accountability/import_projects_mailer.rb +0 -3
- data/app/models/decidim/accountability/result.rb +1 -1
- data/app/models/decidim/accountability/status.rb +1 -1
- data/app/packs/src/decidim/accountability/index.js +1 -1
- data/app/services/decidim/accountability/results_csv_importer.rb +1 -1
- data/app/views/decidim/accountability/admin/results/index.html.erb +7 -15
- data/app/views/decidim/accountability/admin/statuses/index.html.erb +2 -2
- data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +1 -1
- data/app/views/decidim/accountability/import_projects_mailer/import.html.erb +1 -1
- data/app/views/decidim/accountability/results/_home_categories.html.erb +2 -2
- data/app/views/decidim/accountability/results/_nav_breadcrumb.html.erb +8 -8
- data/app/views/decidim/accountability/results/_project.html.erb +1 -1
- data/app/views/decidim/accountability/results/_scope_filters.html.erb +3 -3
- data/app/views/decidim/participatory_spaces/_result.html.erb +3 -3
- data/config/locales/ar.yml +13 -90
- data/config/locales/bg.yml +10 -15
- data/config/locales/ca.yml +0 -12
- data/config/locales/cs.yml +0 -13
- data/config/locales/da.yml +4 -24
- data/config/locales/de.yml +3 -15
- data/config/locales/el.yml +8 -12
- data/config/locales/en.yml +0 -12
- data/config/locales/es-MX.yml +0 -12
- data/config/locales/es-PY.yml +0 -12
- data/config/locales/es.yml +0 -12
- data/config/locales/eu.yml +33 -45
- data/config/locales/fi-plain.yml +4 -16
- data/config/locales/fi.yml +15 -27
- data/config/locales/fr-CA.yml +8 -18
- data/config/locales/fr.yml +5 -15
- data/config/locales/ga-IE.yml +3 -11
- data/config/locales/gl.yml +6 -18
- data/config/locales/gn-PY.yml +0 -11
- data/config/locales/he-IL.yml +8 -14
- data/config/locales/hu.yml +11 -16
- data/config/locales/id-ID.yml +3 -21
- data/config/locales/is-IS.yml +6 -18
- data/config/locales/it.yml +6 -18
- data/config/locales/ja.yml +1 -13
- data/config/locales/kaa.yml +2 -2
- data/config/locales/ko.yml +6 -12
- data/config/locales/lb.yml +6 -18
- data/config/locales/lt.yml +10 -12
- data/config/locales/lv.yml +3 -24
- data/config/locales/nl.yml +3 -15
- data/config/locales/no.yml +3 -15
- data/config/locales/pl.yml +9 -12
- data/config/locales/pt-BR.yml +10 -16
- data/config/locales/pt.yml +0 -18
- data/config/locales/ro-RO.yml +14 -20
- data/config/locales/ru.yml +3 -21
- data/config/locales/si-LK.yml +0 -16
- data/config/locales/sk.yml +3 -24
- data/config/locales/sl.yml +3 -17
- data/config/locales/sq-AL.yml +7 -12
- data/config/locales/sr-CS.yml +3 -21
- data/config/locales/sv.yml +28 -79
- data/config/locales/th-TH.yml +6 -6
- data/config/locales/tr-TR.yml +7 -15
- data/config/locales/uk.yml +3 -21
- data/config/locales/zh-CN.yml +3 -23
- data/config/locales/zh-TW.yml +7 -12
- data/decidim-accountability.gemspec +2 -2
- data/lib/decidim/accountability/component.rb +0 -4
- data/lib/decidim/accountability/seeds.rb +76 -67
- data/lib/decidim/accountability/test/factories.rb +0 -4
- data/lib/decidim/accountability/version.rb +1 -1
- data/lib/decidim/api/accountability_type.rb +3 -1
- data/lib/decidim/api/result_type.rb +1 -1
- metadata +26 -30
- data/app/commands/decidim/accountability/admin/destroy_result.rb +0 -43
- data/app/services/decidim/accountability/result_stats_calculator.rb +0 -49
- data/app/views/decidim/accountability/results/_stats_box.html.erb +0 -79
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -175
data/config/locales/sv.yml
CHANGED
@@ -5,15 +5,14 @@ sv:
|
|
5
5
|
result:
|
6
6
|
decidim_accountability_status_id: Status
|
7
7
|
decidim_category_id: Kategori
|
8
|
-
decidim_scope_id:
|
8
|
+
decidim_scope_id: Omfattning
|
9
9
|
description: Beskrivning
|
10
10
|
end_date: Slutdatum
|
11
|
-
meetings_ids:
|
11
|
+
meetings_ids: Inkluderade möten
|
12
12
|
progress: Genomförande
|
13
13
|
project_ids: Projekt som omfattas
|
14
14
|
proposals: Förslag som omfattas
|
15
15
|
start_date: Startdatum
|
16
|
-
subresults: Delresultat
|
17
16
|
title: Titel
|
18
17
|
updated_at: Uppdaterad
|
19
18
|
status:
|
@@ -27,7 +26,7 @@ sv:
|
|
27
26
|
title: Titel
|
28
27
|
models:
|
29
28
|
decidim/accountability/proposal_linked_event: Förslag som ingår i ett resultat
|
30
|
-
decidim/accountability/result_progress_updated_event:
|
29
|
+
decidim/accountability/result_progress_updated_event: Uppdaterat resultatutvecklingen
|
31
30
|
activerecord:
|
32
31
|
models:
|
33
32
|
decidim/accountability/result:
|
@@ -41,11 +40,6 @@ sv:
|
|
41
40
|
confirm_destroy: Vill du radera detta %{name}?
|
42
41
|
destroy: Radera
|
43
42
|
edit: Redigera
|
44
|
-
import: Importera från en annan komponent
|
45
|
-
import_csv: Importera resultat från CSV-fil
|
46
|
-
new_result: Nytt resultat
|
47
|
-
new_status: Ny status
|
48
|
-
new_timeline_entry: Ny post i tidslinje
|
49
43
|
preview: Förhandsvisa
|
50
44
|
timeline_entries: Projektutveckling
|
51
45
|
title: Åtgärder
|
@@ -55,13 +49,13 @@ sv:
|
|
55
49
|
results: Resultat
|
56
50
|
import_results:
|
57
51
|
new:
|
58
|
-
download_export: Ladda ner exporten som CSV
|
52
|
+
download_export: Ladda ner exporten som CSV
|
59
53
|
import: Importera
|
60
54
|
info: |
|
61
|
-
<p>Vi rekommenderar att du följer
|
55
|
+
<p>Vi rekommenderar att du följer dessa steg:</p>
|
62
56
|
<ol>
|
63
|
-
<li><a href='%{link_new_status}' target='_blank'>Skapa
|
64
|
-
<li><a href='%{link_new_result}' target='_blank'>Skapa minst ett resultat manuellt</a>
|
57
|
+
<li><a href='%{link_new_status}' target='_blank'>Skapa statusarna för de resultat</a> som du vill lägga till</li>
|
58
|
+
<li><a href='%{link_new_result}' target='_blank'>Skapa minst ett resultat manuellt</a> via denna administratörspanel innan du använder Import, för att få en bättre förståelse för formatet och vad du behöver fylla i.</li>
|
65
59
|
<li>%{link_export_csv}</li>
|
66
60
|
<li>Genomför ändringarna lokalt. Du kan endast ändra följande kolumner i CSV-filen:
|
67
61
|
<ul>
|
@@ -78,10 +72,8 @@ sv:
|
|
78
72
|
</ul>
|
79
73
|
</li>
|
80
74
|
</ol>
|
81
|
-
title: Importera resultat från CSV-fil
|
82
75
|
imports:
|
83
76
|
create:
|
84
|
-
invalid: Det gick inte att importera resultaten.
|
85
77
|
success: Importen av filen har påbörjats. Inom några minuter kommer du att få ett e-postmeddelande med importresultatet.
|
86
78
|
models:
|
87
79
|
result:
|
@@ -97,19 +89,10 @@ sv:
|
|
97
89
|
new_items:
|
98
90
|
one: 1 valt projekt kommer att importeras
|
99
91
|
other: "%{count} valda projekt kommer att importeras"
|
100
|
-
no_components: Det finns
|
92
|
+
no_components: Det finns inga budgetkomponenter i detta deltagande utrymme för att exportera projekt till resultat.
|
101
93
|
origin_component_id: Ursprungskomponent
|
102
94
|
select_component: Välj en komponent
|
103
|
-
success:
|
104
|
-
one: 1 projekt väntar på att importeras. Du får ett e-postmeddelande när det är klart.
|
105
|
-
other: "%{count} projekt väntar på att importeras. Du får ett e-postmeddelande när det är klart."
|
106
|
-
title: Importera från en annan komponent
|
107
95
|
results:
|
108
|
-
create:
|
109
|
-
invalid: Det gick inte att skapa resultatet.
|
110
|
-
success: Resultatet har skapats.
|
111
|
-
destroy:
|
112
|
-
success: Resultatet har raderats.
|
113
96
|
edit:
|
114
97
|
title: Redigera resultat
|
115
98
|
update: Uppdatera resultat
|
@@ -118,18 +101,10 @@ sv:
|
|
118
101
|
new:
|
119
102
|
create: Skapa resultat
|
120
103
|
title: Nytt resultat
|
121
|
-
update:
|
122
|
-
invalid: Det gick inte att uppdatera resultatet.
|
123
|
-
success: Resultatet har uppdaterats.
|
124
104
|
shared:
|
125
105
|
subnav:
|
126
106
|
statuses: Status
|
127
107
|
statuses:
|
128
|
-
create:
|
129
|
-
invalid: Det gick inte att skapa statusen.
|
130
|
-
success: Statusen har skapats.
|
131
|
-
destroy:
|
132
|
-
success: Statusen har raderats.
|
133
108
|
edit:
|
134
109
|
title: Redigera status
|
135
110
|
update: Uppdatera status
|
@@ -138,15 +113,7 @@ sv:
|
|
138
113
|
new:
|
139
114
|
create: Skapa status
|
140
115
|
title: Ny status
|
141
|
-
update:
|
142
|
-
invalid: Det gick inte att uppdatera statusen.
|
143
|
-
success: Statusen har uppdaterats.
|
144
116
|
timeline_entries:
|
145
|
-
create:
|
146
|
-
invalid: Det gick inte att skapa den här posten.
|
147
|
-
success: Posten har skapats.
|
148
|
-
destroy:
|
149
|
-
success: Posten har raderats.
|
150
117
|
edit:
|
151
118
|
title: Redigera post
|
152
119
|
update: Uppdatera post
|
@@ -155,9 +122,6 @@ sv:
|
|
155
122
|
new:
|
156
123
|
create: Skapa post
|
157
124
|
title: Ny post
|
158
|
-
update:
|
159
|
-
invalid: Det gick inte att uppdatera den här posten.
|
160
|
-
success: Posten har uppdaterats.
|
161
125
|
admin_log:
|
162
126
|
result:
|
163
127
|
create: "%{user_name} skapade resultatet %{resource_name} i %{space_name}"
|
@@ -180,17 +144,16 @@ sv:
|
|
180
144
|
import_mailer:
|
181
145
|
import:
|
182
146
|
errors: Fel
|
183
|
-
errors_present: Det gick inte att importera resultaten.
|
184
147
|
row_number: Rad
|
185
|
-
subject:
|
186
|
-
success:
|
148
|
+
subject: Lyckad import av resultat
|
149
|
+
success: Lyckad import av resultat. Du kan granska resultaten i administrationsgränssnittet.
|
187
150
|
import_projects_mailer:
|
188
151
|
import:
|
189
152
|
added_projects:
|
190
153
|
one: Ett resultat importerades från projekt.
|
191
154
|
other: "%{count} resultat importerades från projekt."
|
192
155
|
subject: Projekten har importerats
|
193
|
-
success: Projekten har importerats till resultat
|
156
|
+
success: Projekten har importerats till resultat. Du kan se resultaten i administrationsgränssnittet.
|
194
157
|
last_activity:
|
195
158
|
new_result: 'Nytt resultat:'
|
196
159
|
models:
|
@@ -201,7 +164,7 @@ sv:
|
|
201
164
|
end_date: Slutdatum
|
202
165
|
id: ID
|
203
166
|
progress: Genomförande
|
204
|
-
scope:
|
167
|
+
scope: Omfång
|
205
168
|
start_date: Startdatum
|
206
169
|
status: Status
|
207
170
|
title: Titel
|
@@ -210,7 +173,7 @@ sv:
|
|
210
173
|
description: Beskrivning
|
211
174
|
key: Nyckel
|
212
175
|
name: Namn
|
213
|
-
progress:
|
176
|
+
progress: Behandling
|
214
177
|
timeline_entry:
|
215
178
|
fields:
|
216
179
|
entry_date: Datum
|
@@ -224,11 +187,9 @@ sv:
|
|
224
187
|
all: Alla
|
225
188
|
home:
|
226
189
|
categories_label: Kategorier
|
227
|
-
empty: Det finns inget resultat ännu.
|
228
|
-
empty_filters: Det finns inget resultat med de här kriterierna.
|
229
190
|
subcategories_label: Underkategorier
|
230
191
|
home_header:
|
231
|
-
global_status:
|
192
|
+
global_status: Global genomförandestatus
|
232
193
|
nav_breadcrumb:
|
233
194
|
global: Globalt genomförande
|
234
195
|
no_results: Det finns inga projekt
|
@@ -236,15 +197,7 @@ sv:
|
|
236
197
|
search: Sök efter åtgärder
|
237
198
|
show:
|
238
199
|
stats:
|
239
|
-
attendees: Deltagare
|
240
200
|
back_to_resource: Gå tillbaka till resultatet
|
241
|
-
comments: Kommentarer
|
242
|
-
contributions: Insatser
|
243
|
-
last_edited_by: Senast ändrad av
|
244
|
-
last_updated_at: Senast uppdaterad
|
245
|
-
meetings: Möten
|
246
|
-
proposals: Förslag
|
247
|
-
votes: Stöd
|
248
201
|
timeline:
|
249
202
|
title: Projektutveckling
|
250
203
|
admin:
|
@@ -253,39 +206,35 @@ sv:
|
|
253
206
|
category_id_eq:
|
254
207
|
label: Kategori
|
255
208
|
scope_id_eq:
|
256
|
-
label:
|
209
|
+
label: Omfång
|
257
210
|
status_id_eq:
|
258
211
|
label: Status
|
259
212
|
components:
|
260
213
|
accountability:
|
261
214
|
actions:
|
262
|
-
comment:
|
263
|
-
name:
|
215
|
+
comment: Kommentar
|
216
|
+
name: Ansvarsskyldighet
|
264
217
|
settings:
|
265
218
|
global:
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
intro: Introduktion
|
273
|
-
scope_id: Indelning
|
274
|
-
scopes_enabled: Aktivera indelningar
|
275
|
-
subcategories_label: Namn på "Underkategorier"
|
219
|
+
comments_enabled: Kommentarer på
|
220
|
+
comments_max_length: Maximal längd för kommentarer (Lämna 0 för standardvärde)
|
221
|
+
display_progress_enabled: Visa behandling
|
222
|
+
intro: Intro
|
223
|
+
scope_id: Omfång
|
224
|
+
scopes_enabled: Omfång aktiverade
|
276
225
|
step:
|
277
|
-
comments_blocked:
|
226
|
+
comments_blocked: Kommentarer blockerade
|
278
227
|
events:
|
279
228
|
accountability:
|
280
229
|
proposal_linked:
|
281
230
|
email_intro: 'Förslaget "%{proposal_title}" har tagits med i ett resultat. Visa det från den här sidan:'
|
282
|
-
email_outro: Du har fått det här meddelandet eftersom du följer "%{proposal_title}". Du kan sluta att ta emot meddelanden genom att
|
283
|
-
email_subject: En uppdatering
|
231
|
+
email_outro: Du har fått det här meddelandet eftersom du följer "%{proposal_title}". Du kan sluta att ta emot meddelanden genom att följa föregående länk.
|
232
|
+
email_subject: En uppdatering till %{proposal_title}
|
284
233
|
notification_title: Förslaget <a href="%{proposal_path}">%{proposal_title}</a> har tagits med i resultatet <a href="%{resource_path}">%{resource_title}</a>.
|
285
234
|
result_progress_updated:
|
286
235
|
email_intro: 'Resultatet "%{resource_title}", som omfattar förslaget "%{proposal_title}", är nu %{progress}% färdigt. Du kan se det från den här sidan:'
|
287
|
-
email_outro: Du har fått
|
288
|
-
email_subject: En uppdatering
|
236
|
+
email_outro: Du har fått detta meddelande eftersom du följer "%{proposal_title}", och detta förslag ingår i resultatet "%{resource_title}". Du kan sluta ta emot meddelanden genom att följa föregående länk.
|
237
|
+
email_subject: En uppdatering till behandlingen av %{resource_title}
|
289
238
|
notification_title: Resultatet <a href="%{resource_path}">%{resource_title}</a>, som ingår i förslaget <a href="%{proposal_path}">%{proposal_title}</a>, är nu %{progress}% färdigt.
|
290
239
|
metrics:
|
291
240
|
results:
|
data/config/locales/th-TH.yml
CHANGED
@@ -92,7 +92,11 @@ th:
|
|
92
92
|
new:
|
93
93
|
create: นำเข้า
|
94
94
|
import_all_selected_projects: นำเข้าโครงการทั้งหมดที่เลือกเพื่อนำไปใช้งาน
|
95
|
+
new_items:
|
96
|
+
other: "โครงการที่เลือกจะถูกนำเข้า"
|
95
97
|
no_components: ไม่มีองค์ประกอบด้านงบประมาณในพื้นที่แบบมีส่วนร่วมนี้เพื่อนำเข้าโครงการเข้าสู่ผลลัพธ์d
|
98
|
+
origin_component_id: ส่วนประกอบต้นกำเนิด
|
99
|
+
select_component: เลือกส่วนประกอบ
|
96
100
|
success:
|
97
101
|
other: "มี 1 โปรเจ็กต์อยู่ในคิวที่จะนำเข้า คุณจะได้รับแจ้งทางอีเมลเมื่อดำเนินการเสร็จสิ้น"
|
98
102
|
title: นำเข้าโครงการจากส่วนประกอบอื่น
|
@@ -139,15 +143,12 @@ th:
|
|
139
143
|
success: สร้างรายการสําเร็จแล้ว
|
140
144
|
destroy:
|
141
145
|
success: ลบรายการเรียบร้อยแล้ว
|
142
|
-
models:
|
143
|
-
result:
|
144
|
-
fields:
|
145
|
-
category: หมวดหมู่
|
146
|
-
scope: ขอบเขต
|
147
146
|
results:
|
148
147
|
home:
|
148
|
+
categories_label: หมวดหมู่
|
149
149
|
empty: ยังไม่มีผลลัพธ์
|
150
150
|
empty_filters: ไม่มีผลลัพธ์ตามเกณฑ์นี้
|
151
|
+
subcategories_label: หมวดหมู่ย่อย
|
151
152
|
home_header:
|
152
153
|
global_status: สถานะการดำเนินการทั่วโลก
|
153
154
|
nav_breadcrumb:
|
@@ -158,7 +159,6 @@ th:
|
|
158
159
|
show:
|
159
160
|
stats:
|
160
161
|
back_to_resource: กลับไปหาผลลัพธ์
|
161
|
-
comments: ความคิดเห็น
|
162
162
|
timeline:
|
163
163
|
title: วิวัฒนาการของโครงการ
|
164
164
|
admin:
|
data/config/locales/tr-TR.yml
CHANGED
@@ -94,6 +94,8 @@ tr:
|
|
94
94
|
create: İçe aktar
|
95
95
|
import_all_selected_projects: Seçilen tüm projeleri içe aktarın
|
96
96
|
no_components: Bu katılımcı alanda projeleri sonuçlara dönüştürecek bütçe bileşenleri yoktur.
|
97
|
+
origin_component_id: Asıl bileşen
|
98
|
+
select_component: Bir bileşen seç
|
97
99
|
title: Projeleri başka bir bileşenden içe aktarın
|
98
100
|
results:
|
99
101
|
create:
|
@@ -189,7 +191,7 @@ tr:
|
|
189
191
|
end_date: Bitiş tarihi
|
190
192
|
id: ID
|
191
193
|
progress: İlerleme
|
192
|
-
scope:
|
194
|
+
scope: Kapsam
|
193
195
|
start_date: Başlangıç tarihi
|
194
196
|
status: durum
|
195
197
|
title: Başlık
|
@@ -211,8 +213,10 @@ tr:
|
|
211
213
|
filters:
|
212
214
|
all: Herşey
|
213
215
|
home:
|
216
|
+
categories_label: Kategoriler
|
214
217
|
empty: Henüz sonuç yok.
|
215
218
|
empty_filters: Bu kriterlere uyan sonuç bulunamamıştır.
|
219
|
+
subcategories_label: Alt Kategoriler
|
216
220
|
home_header:
|
217
221
|
global_status: Genel yürütme durumu
|
218
222
|
nav_breadcrumb:
|
@@ -222,15 +226,7 @@ tr:
|
|
222
226
|
search: İşlemleri ara
|
223
227
|
show:
|
224
228
|
stats:
|
225
|
-
attendees: Katılımcılar
|
226
229
|
back_to_resource: Sonuca geri dön
|
227
|
-
comments: Yorumlar
|
228
|
-
contributions: Katılımlar
|
229
|
-
last_edited_by: Son düzenleyen
|
230
|
-
last_updated_at: Son güncelleme
|
231
|
-
meetings: Toplantılar
|
232
|
-
proposals: Teklifler
|
233
|
-
votes: Destekler
|
234
230
|
timeline:
|
235
231
|
title: Proje gelişimi
|
236
232
|
admin:
|
@@ -239,7 +235,7 @@ tr:
|
|
239
235
|
category_id_eq:
|
240
236
|
label: Kategori
|
241
237
|
scope_id_eq:
|
242
|
-
label:
|
238
|
+
label: Kapsam
|
243
239
|
status_id_eq:
|
244
240
|
label: Durum
|
245
241
|
components:
|
@@ -249,16 +245,12 @@ tr:
|
|
249
245
|
name: Sorumluluk
|
250
246
|
settings:
|
251
247
|
global:
|
252
|
-
categories_label: '"Kategoriler" için isim'
|
253
248
|
comments_enabled: Yorumlar etkin
|
254
249
|
comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
|
255
250
|
display_progress_enabled: İlerlemeyi göster
|
256
|
-
heading_leaf_level_results: '"Projeler" için isim'
|
257
|
-
heading_parent_level_results: '"Sonuçların" Adı'
|
258
251
|
intro: Tanıtım
|
259
|
-
scope_id:
|
252
|
+
scope_id: Kapsam
|
260
253
|
scopes_enabled: Kapsamlar etkinleştirildi
|
261
|
-
subcategories_label: '"Alt kategoriler" için isim'
|
262
254
|
step:
|
263
255
|
comments_blocked: Yorumlar engellendi
|
264
256
|
events:
|
data/config/locales/uk.yml
CHANGED
@@ -89,10 +89,8 @@ uk:
|
|
89
89
|
models:
|
90
90
|
result:
|
91
91
|
fields:
|
92
|
-
category: Категорія
|
93
92
|
end_date: Дата закінчення
|
94
93
|
progress: Перебіг
|
95
|
-
scope: Обсяг
|
96
94
|
start_date: Дата початку
|
97
95
|
status: Стан
|
98
96
|
title: Назва
|
@@ -114,6 +112,9 @@ uk:
|
|
114
112
|
other: "%{count} підсумків"
|
115
113
|
filters:
|
116
114
|
all: Усі
|
115
|
+
home:
|
116
|
+
categories_label: Категорії
|
117
|
+
subcategories_label: Підкатегорії
|
117
118
|
home_header:
|
118
119
|
global_status: Загальний стан виконання
|
119
120
|
nav_breadcrumb:
|
@@ -122,36 +123,17 @@ uk:
|
|
122
123
|
search: Пошук дій
|
123
124
|
show:
|
124
125
|
stats:
|
125
|
-
attendees: Учасники
|
126
126
|
back_to_resource: Повернутися до підсумків
|
127
|
-
contributions: Внесені пропозиції
|
128
|
-
last_edited_by: Останній раз редагувалося
|
129
|
-
last_updated_at: Останній раз оновлювалося
|
130
|
-
meetings: Зустрічі
|
131
|
-
proposals: Пропозиції
|
132
|
-
votes: Підтримує
|
133
127
|
timeline:
|
134
128
|
title: Розвиток проекту
|
135
|
-
admin:
|
136
|
-
filters:
|
137
|
-
results:
|
138
|
-
category_id_eq:
|
139
|
-
label: Категорія
|
140
|
-
scope_id_eq:
|
141
|
-
label: Обсяг
|
142
129
|
components:
|
143
130
|
accountability:
|
144
131
|
name: Звітність
|
145
132
|
settings:
|
146
133
|
global:
|
147
|
-
categories_label: Назва для "Категорії"
|
148
134
|
comments_enabled: Коментарі увімкнено
|
149
135
|
display_progress_enabled: Показувати перебіг
|
150
|
-
heading_leaf_level_results: Назва для "Проекти"
|
151
|
-
heading_parent_level_results: Назва для "Підсумки"
|
152
136
|
intro: Вступ
|
153
|
-
scope_id: Обсяг
|
154
|
-
subcategories_label: Назва для "Підкатегорії"
|
155
137
|
step:
|
156
138
|
comments_blocked: Коментарі вимкнено
|
157
139
|
events:
|
data/config/locales/zh-CN.yml
CHANGED
@@ -49,9 +49,6 @@ zh-CN:
|
|
49
49
|
name: 结果
|
50
50
|
status:
|
51
51
|
name: 状态
|
52
|
-
projects_import:
|
53
|
-
new:
|
54
|
-
create: 导入
|
55
52
|
results:
|
56
53
|
edit:
|
57
54
|
title: 编辑结果
|
@@ -99,10 +96,8 @@ zh-CN:
|
|
99
96
|
models:
|
100
97
|
result:
|
101
98
|
fields:
|
102
|
-
category: 类别
|
103
99
|
end_date: 结束日期
|
104
100
|
progress: 进展情况
|
105
|
-
scope: 范围
|
106
101
|
start_date: 开始日期
|
107
102
|
status: 状态
|
108
103
|
title: 标题
|
@@ -121,6 +116,9 @@ zh-CN:
|
|
121
116
|
other: "%{count} 个结果"
|
122
117
|
filters:
|
123
118
|
all: 所有的
|
119
|
+
home:
|
120
|
+
categories_label: 类别管理
|
121
|
+
subcategories_label: 子类别
|
124
122
|
home_header:
|
125
123
|
global_status: 全局执行状态
|
126
124
|
nav_breadcrumb:
|
@@ -129,38 +127,20 @@ zh-CN:
|
|
129
127
|
search: 搜索操作
|
130
128
|
show:
|
131
129
|
stats:
|
132
|
-
attendees: 参与者
|
133
130
|
back_to_resource: 返回结果
|
134
|
-
contributions: 二. 捐款
|
135
|
-
last_edited_by: 最后编辑者
|
136
|
-
last_updated_at: 最后更新于
|
137
|
-
meetings: 会议
|
138
|
-
proposals: 建议
|
139
|
-
votes: 支持
|
140
131
|
timeline:
|
141
132
|
title: 项目进化
|
142
|
-
admin:
|
143
|
-
filters:
|
144
|
-
results:
|
145
|
-
category_id_eq:
|
146
|
-
label: 类别
|
147
|
-
scope_id_eq:
|
148
|
-
label: 范围
|
149
133
|
components:
|
150
134
|
accountability:
|
151
135
|
name: 问责制
|
152
136
|
settings:
|
153
137
|
global:
|
154
|
-
categories_label: '"类别"的名称'
|
155
138
|
comments_enabled: 评论已启用
|
156
139
|
comments_max_length: 评论最大长度 (默认值留0)
|
157
140
|
display_progress_enabled: 显示进度
|
158
|
-
heading_leaf_level_results: '“项目”的名称'
|
159
|
-
heading_parent_level_results: '"结果"的名称'
|
160
141
|
intro: 简介
|
161
142
|
scope_id: 范围
|
162
143
|
scopes_enabled: 范围已启用
|
163
|
-
subcategories_label: '"子类别"的名称'
|
164
144
|
step:
|
165
145
|
comments_blocked: 评论已阻止
|
166
146
|
events:
|
data/config/locales/zh-TW.yml
CHANGED
@@ -85,7 +85,11 @@ zh-TW:
|
|
85
85
|
new:
|
86
86
|
create: 匯入
|
87
87
|
import_all_selected_projects: 匯入所有選擇的專案來實現
|
88
|
+
new_items:
|
89
|
+
other: "%{count} 個專案將匯入"
|
88
90
|
no_components: 在這個參與空間沒有預算元件來匯入專案到結果
|
91
|
+
origin_component_id: 原始元件
|
92
|
+
select_component: 選擇一個元件
|
89
93
|
success:
|
90
94
|
other: "%{count} 個專案已經排程匯入,完成後會寄送 email 通知."
|
91
95
|
results:
|
@@ -204,6 +208,9 @@ zh-TW:
|
|
204
208
|
other: "%{count} 個結果"
|
205
209
|
filters:
|
206
210
|
all: 全部
|
211
|
+
home:
|
212
|
+
categories_label: 類別
|
213
|
+
subcategories_label: 子類別
|
207
214
|
home_header:
|
208
215
|
global_status: 全域執行狀態
|
209
216
|
nav_breadcrumb:
|
@@ -212,15 +219,7 @@ zh-TW:
|
|
212
219
|
search: 搜尋操作
|
213
220
|
show:
|
214
221
|
stats:
|
215
|
-
attendees: 與會者
|
216
222
|
back_to_resource: 返回至結果
|
217
|
-
comments: 評論
|
218
|
-
contributions: 貢獻
|
219
|
-
last_edited_by: 最後編輯者
|
220
|
-
last_updated_at: 更新時間
|
221
|
-
meetings: 會議
|
222
|
-
proposals: 提案
|
223
|
-
votes: 支援
|
224
223
|
timeline:
|
225
224
|
title: 專案評估
|
226
225
|
admin:
|
@@ -239,16 +238,12 @@ zh-TW:
|
|
239
238
|
name: 問責
|
240
239
|
settings:
|
241
240
|
global:
|
242
|
-
categories_label: 類別名稱
|
243
241
|
comments_enabled: 已啟用留言
|
244
242
|
comments_max_length: 留言字數上限 (0 表示使用預設)
|
245
243
|
display_progress_enabled: 顯示進度
|
246
|
-
heading_leaf_level_results: 專案名稱
|
247
|
-
heading_parent_level_results: 結果名稱
|
248
244
|
intro: 介紹
|
249
245
|
scope_id: 範圍
|
250
246
|
scopes_enabled: 啟用的範圍
|
251
|
-
subcategories_label: 子類別名稱
|
252
247
|
step:
|
253
248
|
comments_blocked: 留言已封鎖
|
254
249
|
events:
|
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.version = Decidim::Accountability.version
|
11
11
|
s.authors = ["Josep Jaume Rey Peroy", "Marc Riera Casals", "Oriol Gual Oliva"]
|
12
12
|
s.email = ["josepjaume@gmail.com", "mrc2407@gmail.com", "oriolgual@gmail.com"]
|
13
|
-
s.license = "AGPL-3.0
|
13
|
+
s.license = "AGPL-3.0"
|
14
14
|
s.homepage = "https://decidim.org"
|
15
15
|
s.metadata = {
|
16
16
|
"bug_tracker_uri" => "https://github.com/decidim/decidim/issues",
|
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
|
|
19
19
|
"homepage_uri" => "https://decidim.org",
|
20
20
|
"source_code_uri" => "https://github.com/decidim/decidim"
|
21
21
|
}
|
22
|
-
s.required_ruby_version = "~> 3.
|
22
|
+
s.required_ruby_version = "~> 3.2.0"
|
23
23
|
|
24
24
|
s.name = "decidim-accountability"
|
25
25
|
s.summary = "Decidim accountability module"
|
@@ -30,10 +30,6 @@ Decidim.register_component(:accountability) do |component|
|
|
30
30
|
settings.attribute :comments_enabled, type: :boolean, default: true
|
31
31
|
settings.attribute :comments_max_length, type: :integer, required: true
|
32
32
|
settings.attribute :intro, type: :text, translated: true, editor: true
|
33
|
-
settings.attribute :categories_label, type: :string, translated: true, editor: true
|
34
|
-
settings.attribute :subcategories_label, type: :string, translated: true, editor: true
|
35
|
-
settings.attribute :heading_parent_level_results, type: :string, translated: true, editor: true
|
36
|
-
settings.attribute :heading_leaf_level_results, type: :string, translated: true, editor: true
|
37
33
|
settings.attribute :display_progress_enabled, type: :boolean, default: true
|
38
34
|
end
|
39
35
|
|