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/sv.yml
CHANGED
@@ -5,9 +5,10 @@ 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: Inkluderade möten
|
11
12
|
progress: Genomförande
|
12
13
|
project_ids: Projekt som omfattas
|
13
14
|
proposals: Förslag som omfattas
|
@@ -39,8 +40,6 @@ sv:
|
|
39
40
|
confirm_destroy: Vill du radera detta %{name}?
|
40
41
|
destroy: Radera
|
41
42
|
edit: Redigera
|
42
|
-
import_csv: Importera CSV
|
43
|
-
new: Ny %{name}
|
44
43
|
preview: Förhandsvisa
|
45
44
|
timeline_entries: Projektutveckling
|
46
45
|
title: Åtgärder
|
@@ -50,13 +49,13 @@ sv:
|
|
50
49
|
results: Resultat
|
51
50
|
import_results:
|
52
51
|
new:
|
53
|
-
download_export: Ladda ner exporten som CSV
|
52
|
+
download_export: Ladda ner exporten som CSV
|
54
53
|
import: Importera
|
55
54
|
info: |
|
56
|
-
<p>Vi rekommenderar att du följer
|
55
|
+
<p>Vi rekommenderar att du följer dessa steg:</p>
|
57
56
|
<ol>
|
58
|
-
<li><a href='%{link_new_status}' target='_blank'>Skapa
|
59
|
-
<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>
|
60
59
|
<li>%{link_export_csv}</li>
|
61
60
|
<li>Genomför ändringarna lokalt. Du kan endast ändra följande kolumner i CSV-filen:
|
62
61
|
<ul>
|
@@ -73,23 +72,27 @@ sv:
|
|
73
72
|
</ul>
|
74
73
|
</li>
|
75
74
|
</ol>
|
76
|
-
title: Importera resultat från CSV
|
77
75
|
imports:
|
78
76
|
create:
|
79
|
-
success:
|
77
|
+
success: Importen av filen har påbörjats. Inom några minuter kommer du att få ett e-postmeddelande med importresultatet.
|
80
78
|
models:
|
81
79
|
result:
|
82
80
|
name: Resultat
|
83
81
|
status:
|
84
82
|
name: Status
|
85
|
-
|
86
|
-
name: Post i tidslinje
|
87
|
-
results:
|
83
|
+
projects_import:
|
88
84
|
create:
|
89
|
-
invalid: Det gick inte att
|
90
|
-
|
91
|
-
|
92
|
-
|
85
|
+
invalid: Det gick inte att importera projekten till resultat, följ instruktionerna noga och se till att du har valt projekt för genomförande.
|
86
|
+
new:
|
87
|
+
create: Importera
|
88
|
+
import_all_selected_projects: Importera alla projekt som valts för genomförande
|
89
|
+
new_items:
|
90
|
+
one: 1 valt projekt kommer att importeras
|
91
|
+
other: "%{count} valda projekt kommer att importeras"
|
92
|
+
no_components: Det finns inga budgetkomponenter i detta deltagande utrymme för att exportera projekt till resultat.
|
93
|
+
origin_component_id: Ursprungskomponent
|
94
|
+
select_component: Välj en komponent
|
95
|
+
results:
|
93
96
|
edit:
|
94
97
|
title: Redigera resultat
|
95
98
|
update: Uppdatera resultat
|
@@ -98,18 +101,10 @@ sv:
|
|
98
101
|
new:
|
99
102
|
create: Skapa resultat
|
100
103
|
title: Nytt resultat
|
101
|
-
update:
|
102
|
-
invalid: Det gick inte att uppdatera det här resultatet
|
103
|
-
success: Resultatet har uppdaterats
|
104
104
|
shared:
|
105
105
|
subnav:
|
106
106
|
statuses: Status
|
107
107
|
statuses:
|
108
|
-
create:
|
109
|
-
invalid: Det gick inte att skapa denna status
|
110
|
-
success: Skapat status
|
111
|
-
destroy:
|
112
|
-
success: Raderat status
|
113
108
|
edit:
|
114
109
|
title: Redigera status
|
115
110
|
update: Uppdatera status
|
@@ -118,15 +113,7 @@ sv:
|
|
118
113
|
new:
|
119
114
|
create: Skapa status
|
120
115
|
title: Ny status
|
121
|
-
update:
|
122
|
-
invalid: Det gick inte att uppdatera denna status
|
123
|
-
success: Uppdaterat status
|
124
116
|
timeline_entries:
|
125
|
-
create:
|
126
|
-
invalid: Det gick inte att skapa den här posten
|
127
|
-
success: Skapade post
|
128
|
-
destroy:
|
129
|
-
success: Posten har raderats
|
130
117
|
edit:
|
131
118
|
title: Redigera post
|
132
119
|
update: Uppdatera post
|
@@ -135,9 +122,6 @@ sv:
|
|
135
122
|
new:
|
136
123
|
create: Skapa post
|
137
124
|
title: Ny post
|
138
|
-
update:
|
139
|
-
invalid: Det gick inte att uppdatera den här posten
|
140
|
-
success: Posten har uppdaterats
|
141
125
|
admin_log:
|
142
126
|
result:
|
143
127
|
create: "%{user_name} skapade resultatet %{resource_name} i %{space_name}"
|
@@ -156,18 +140,22 @@ sv:
|
|
156
140
|
not_found: 'Föräldraposten hittades inte i databasen (ID: %{id})'
|
157
141
|
content_blocks:
|
158
142
|
highlighted_results:
|
159
|
-
dates: Datum
|
160
143
|
results: Resultat
|
161
|
-
unspecified: Ej angivet
|
162
144
|
import_mailer:
|
163
145
|
import:
|
164
146
|
errors: Fel
|
165
|
-
errors_present: Det gick inte att importera resultat
|
166
147
|
row_number: Rad
|
167
|
-
subject:
|
168
|
-
success:
|
148
|
+
subject: Lyckad import av resultat
|
149
|
+
success: Lyckad import av resultat. Du kan granska resultaten i administrationsgränssnittet.
|
150
|
+
import_projects_mailer:
|
151
|
+
import:
|
152
|
+
added_projects:
|
153
|
+
one: Ett resultat importerades från projekt.
|
154
|
+
other: "%{count} resultat importerades från projekt."
|
155
|
+
subject: Projekten har importerats
|
156
|
+
success: Projekten har importerats till resultat. Du kan se resultaten i administrationsgränssnittet.
|
169
157
|
last_activity:
|
170
|
-
|
158
|
+
new_result: 'Nytt resultat:'
|
171
159
|
models:
|
172
160
|
result:
|
173
161
|
fields:
|
@@ -176,7 +164,7 @@ sv:
|
|
176
164
|
end_date: Slutdatum
|
177
165
|
id: ID
|
178
166
|
progress: Genomförande
|
179
|
-
scope:
|
167
|
+
scope: Omfång
|
180
168
|
start_date: Startdatum
|
181
169
|
status: Status
|
182
170
|
title: Titel
|
@@ -190,9 +178,6 @@ sv:
|
|
190
178
|
fields:
|
191
179
|
entry_date: Datum
|
192
180
|
title: Titel
|
193
|
-
result_m:
|
194
|
-
executed: Utfört
|
195
|
-
view: Visa
|
196
181
|
results:
|
197
182
|
count:
|
198
183
|
results_count:
|
@@ -200,7 +185,6 @@ sv:
|
|
200
185
|
other: "%{count} resultat"
|
201
186
|
filters:
|
202
187
|
all: Alla
|
203
|
-
scopes: Omfattningar
|
204
188
|
home:
|
205
189
|
categories_label: Kategorier
|
206
190
|
subcategories_label: Underkategorier
|
@@ -208,6 +192,7 @@ sv:
|
|
208
192
|
global_status: Global genomförandestatus
|
209
193
|
nav_breadcrumb:
|
210
194
|
global: Globalt genomförande
|
195
|
+
no_results: Det finns inga projekt
|
211
196
|
search:
|
212
197
|
search: Sök efter åtgärder
|
213
198
|
show:
|
@@ -229,25 +214,25 @@ sv:
|
|
229
214
|
category_id_eq:
|
230
215
|
label: Kategori
|
231
216
|
scope_id_eq:
|
232
|
-
label:
|
217
|
+
label: Omfång
|
233
218
|
status_id_eq:
|
234
219
|
label: Status
|
235
220
|
components:
|
236
221
|
accountability:
|
237
222
|
actions:
|
238
223
|
comment: Kommentar
|
239
|
-
name:
|
224
|
+
name: Ansvarsskyldighet
|
240
225
|
settings:
|
241
226
|
global:
|
242
227
|
categories_label: Namn för "Kategorier"
|
243
228
|
comments_enabled: Kommentarer på
|
244
|
-
comments_max_length: Maximal
|
229
|
+
comments_max_length: Maximal längd för kommentarer (Lämna 0 för standardvärde)
|
245
230
|
display_progress_enabled: Visa behandling
|
246
231
|
heading_leaf_level_results: Namn för "Projekt"
|
247
232
|
heading_parent_level_results: Namn för "Resultat"
|
248
233
|
intro: Intro
|
249
|
-
scope_id:
|
250
|
-
scopes_enabled:
|
234
|
+
scope_id: Omfång
|
235
|
+
scopes_enabled: Omfång aktiverade
|
251
236
|
subcategories_label: Namn för "Underkategorier"
|
252
237
|
step:
|
253
238
|
comments_blocked: Kommentarer blockerade
|
data/config/locales/th-TH.yml
CHANGED
@@ -1,141 +1 @@
|
|
1
|
-
---
|
2
1
|
th:
|
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
|
-
timeline_entries: วิวัฒนาการของโครงการ
|
43
|
-
title: การดำเนินการ
|
44
|
-
admin:
|
45
|
-
exports:
|
46
|
-
result_comments: ความคิดเห็น
|
47
|
-
results: ผลลัพธ์
|
48
|
-
import_results:
|
49
|
-
new:
|
50
|
-
download_export: ดาวน์โหลดการส่งออกด้วยรูปแบบ CSV
|
51
|
-
import: นำเข้า
|
52
|
-
models:
|
53
|
-
result:
|
54
|
-
name: ผลลัพธ์
|
55
|
-
status:
|
56
|
-
name: สถานะ
|
57
|
-
results:
|
58
|
-
edit:
|
59
|
-
title: แก้ไขผลลัพธ์
|
60
|
-
update: อัพเดทผลครับ
|
61
|
-
index:
|
62
|
-
title: ผลลัพธ์
|
63
|
-
new:
|
64
|
-
create: สร้างผลลัพธ์
|
65
|
-
title: ผลลัพธ์ใหม่
|
66
|
-
shared:
|
67
|
-
subnav:
|
68
|
-
statuses: สถานะ
|
69
|
-
statuses:
|
70
|
-
edit:
|
71
|
-
title: แก้ไขสถานะ
|
72
|
-
update: อัพเดตสถานะ
|
73
|
-
index:
|
74
|
-
title: สถานะ
|
75
|
-
new:
|
76
|
-
create: Create status
|
77
|
-
title: สถานะใหม่
|
78
|
-
results:
|
79
|
-
home:
|
80
|
-
categories_label: หมวดหมู่
|
81
|
-
subcategories_label: หมวดหมู่ย่อย
|
82
|
-
home_header:
|
83
|
-
global_status: สถานะการดำเนินการทั่วโลก
|
84
|
-
nav_breadcrumb:
|
85
|
-
global: การดำเนินการระดับโลก
|
86
|
-
search:
|
87
|
-
search: ค้นหาการกระทำ
|
88
|
-
show:
|
89
|
-
stats:
|
90
|
-
back_to_resource: กลับไปหาผลลัพธ์
|
91
|
-
comments: ความคิดเห็น
|
92
|
-
timeline:
|
93
|
-
title: วิวัฒนาการของโครงการ
|
94
|
-
admin:
|
95
|
-
filters:
|
96
|
-
results:
|
97
|
-
category_id_eq:
|
98
|
-
label: หมวดหมู่
|
99
|
-
scope_id_eq:
|
100
|
-
label: ขอบเขต
|
101
|
-
status_id_eq:
|
102
|
-
label: สถานะ
|
103
|
-
components:
|
104
|
-
accountability:
|
105
|
-
actions:
|
106
|
-
comment: ความคิดเห็น
|
107
|
-
name: ความรับผิดชอบ
|
108
|
-
settings:
|
109
|
-
global:
|
110
|
-
comments_enabled: เปิดใช้งานความคิดเห็นแล้ว
|
111
|
-
comments_max_length: ความคิดเห็นความยาวสูงสุด (ปล่อยให้ 0 เป็นค่าเริ่มต้น)
|
112
|
-
display_progress_enabled: แสดงความคืบหน้า
|
113
|
-
intro: คำแนะนำ
|
114
|
-
scope_id: ขอบเขต
|
115
|
-
scopes_enabled: เปิดใช้งานขอบเขตแล้ว
|
116
|
-
step:
|
117
|
-
comments_blocked: ความคิดเห็นถูกบล็อก
|
118
|
-
events:
|
119
|
-
accountability:
|
120
|
-
proposal_linked:
|
121
|
-
email_intro: 'ข้อเสนอ "%{proposal_title}" ถูกรวมไว้ในผลลัพธ์แล้ว คุณสามารถดูได้จากหน้านี้:'
|
122
|
-
email_outro: คุณได้รับการแจ้งเตือนนี้เนื่องจากคุณกำลังติดตาม "%{proposal_title}" คุณสามารถหยุดรับการแจ้งเตือนได้ตามลิงก์ก่อนหน้า
|
123
|
-
email_subject: การอัปเดตเป็น %{proposal_title}
|
124
|
-
notification_title: ข้อเสนอ <a href="%{proposal_path}">%{proposal_title}</a> ถูกรวมไว้ในผลลัพธ์ <a href="%{resource_path}">%{resource_title}</a> แล้ว
|
125
|
-
result_progress_updated:
|
126
|
-
email_intro: 'ผลลัพธ์ "%{resource_title}" ซึ่งรวมถึงข้อเสนอ "%{proposal_title}" ขณะนี้เสร็จสมบูรณ์แล้ว %{progress}% คุณสามารถดูได้จากหน้านี้:'
|
127
|
-
email_outro: คุณได้รับการแจ้งเตือนนี้เนื่องจากคุณกำลังติดตาม "%{proposal_title}" และข้อเสนอนี้รวมอยู่ในผลลัพธ์ "%{resource_title}" คุณสามารถหยุดรับการแจ้งเตือนได้ตามลิงก์ก่อนหน้า
|
128
|
-
email_subject: การอัปเดตความคืบหน้าของ %{resource_title}
|
129
|
-
notification_title: ผลลัพธ์ <a href="%{resource_path}">%{resource_title}</a> ซึ่งรวมถึงข้อเสนอ <a href="%{proposal_path}">%{proposal_title}</a> อยู่ในขณะนี้ %{ ความคืบหน้า}% เสร็จสมบูรณ์
|
130
|
-
metrics:
|
131
|
-
results:
|
132
|
-
description: จำนวนผลลัพธ์ที่สร้างขึ้น
|
133
|
-
object: ผลลัพธ์
|
134
|
-
title: ผลลัพธ์
|
135
|
-
resource_links:
|
136
|
-
included_projects:
|
137
|
-
result_project: โครงการที่รวมอยู่ในผลลัพธ์นี้
|
138
|
-
included_proposals:
|
139
|
-
result_proposal: โครงการที่รวมอยู่ในผลลัพธ์นี้
|
140
|
-
statistics:
|
141
|
-
results_count: ผลลัพธ์
|
data/config/locales/tr-TR.yml
CHANGED
@@ -8,6 +8,7 @@ tr:
|
|
8
8
|
decidim_scope_id: kapsam
|
9
9
|
description: Açıklama
|
10
10
|
end_date: Bitiş tarihi
|
11
|
+
meetings_ids: Görüşmeler
|
11
12
|
progress: İlerleme
|
12
13
|
project_ids: Dahil edilen projeler
|
13
14
|
proposals: Dahil edilen teklifler
|
@@ -39,8 +40,9 @@ tr:
|
|
39
40
|
confirm_destroy: Bu %{name}silmek istediğinize emin misiniz?
|
40
41
|
destroy: silmek
|
41
42
|
edit: Düzenle
|
42
|
-
|
43
|
-
|
43
|
+
new_result: Yeni sonuç
|
44
|
+
new_status: Yeni Durum
|
45
|
+
new_timeline_entry: Yeni Zaman çizelgesi Kaydı
|
44
46
|
preview: Ön izleme
|
45
47
|
timeline_entries: Proje evrimi
|
46
48
|
title: Eylemler
|
@@ -52,44 +54,16 @@ tr:
|
|
52
54
|
new:
|
53
55
|
download_export: ' İhracat i CSV formatında indirin '
|
54
56
|
import: İçe aktar
|
55
|
-
info: |
|
56
|
-
<p>bu adımları uygulamanızı öneririz <p>
|
57
|
-
<ol>
|
58
|
-
<li><a herf='%{link_new_status}'
|
59
|
-
target='_bank`>eklemek istediğniz sonuçlar için durumlar oluşturun</a>istediğnizi ekleyiniz</li><li><a herf=%{link_new_result}`target=`_blank`>manuell olarak en az bir sonuç oluşturun</a> İçe aktarmayı kullanmadan önce, formatı ve doldurmanız gerekenleri daha iyi anlamak için bu yönetici paneli uygulayın </li><li>%{link_export_csv}<li>
|
60
|
-
<li>değişiklikleri yerel olarak yapın. CSV` nin yalnızca aşağıdaki sütunlarını değiştirebilirsiniz:
|
61
|
-
<ul>
|
62
|
-
<li><b>kategori/ID:</b>kategorisinin kimliği</li>
|
63
|
-
<li><><b>kapsam/kimlik:</b>kapsam kimliği</li>
|
64
|
-
<li><b>ebeveyn/ID:</b>ebeveyin kimliği(ilgili sonuçlar için).isteğe bağlı</li>
|
65
|
-
<li><b>başlık/en:</b>başlık inglizce olarak.Bu platformunuzdaki dil yapılandırmasına bağlı dır.<li>
|
66
|
-
<li><b>açıklama/en:</b>ingluzce olarak açıklama. Bu platformunuza bağlı olarak dır</li>
|
67
|
-
<li><b>başlangıç_tarihi:</b>sonucun yürütme ye başladığı tarih(format YYYY-AA-GG)</li>
|
68
|
-
<li><b>bitiş_tarihi:</b>sonucun yürütmeyi bitirdiği tarih(format YYY-AA-GG)<li>
|
69
|
-
<li><b>durum/kimlik:</b>bu sonuç için durumun kimliği<li>
|
70
|
-
<li><b>ilerleme:</b>yürütme yüzdesı(0'dan 100'e)<li>
|
71
|
-
<li><b>fikir_önerisi:</b>ilgılı tekliflerin dahili kimliği(virgüle ayrılmış ). Otomatik olarak biçimine dönüşüyor<span class='atttibute-name'>proposal_url</span>
|
72
|
-
</li>
|
73
|
-
</ul>
|
74
|
-
</li>
|
75
|
-
</ol>
|
76
|
-
title: Sonuçları CSV'den içe aktar
|
77
|
-
imports:
|
78
|
-
create:
|
79
|
-
success: Dosya içe aktarılmaya başladı. Önümüzdeki birkaç dakika içinde içe aktarmanın sonucunu içeren bir e-posta alacaksınız
|
80
57
|
models:
|
81
58
|
result:
|
82
59
|
name: Sonuç
|
83
60
|
status:
|
84
61
|
name: durum
|
85
|
-
|
86
|
-
|
62
|
+
projects_import:
|
63
|
+
new:
|
64
|
+
create: İçe aktar
|
65
|
+
select_component: Bir bileşen seç
|
87
66
|
results:
|
88
|
-
create:
|
89
|
-
invalid: Bu sonucu oluştururken bir sorun oluştu
|
90
|
-
success: Sonuç başarıyla oluşturuldu
|
91
|
-
destroy:
|
92
|
-
success: Sonuç başarıyla silindi
|
93
67
|
edit:
|
94
68
|
title: Sonucu düzenle
|
95
69
|
update: Sonuç güncelle
|
@@ -98,18 +72,10 @@ tr:
|
|
98
72
|
new:
|
99
73
|
create: Sonuç oluştur
|
100
74
|
title: Yeni sonuç
|
101
|
-
update:
|
102
|
-
invalid: Bu sonucu güncellerken bir sorun oluştu
|
103
|
-
success: Sonuç başarıyla güncellendi
|
104
75
|
shared:
|
105
76
|
subnav:
|
106
77
|
statuses: durumlar
|
107
78
|
statuses:
|
108
|
-
create:
|
109
|
-
invalid: Bu durumu oluştururken bir sorun oluştu
|
110
|
-
success: Durum başarıyla oluşturuldu
|
111
|
-
destroy:
|
112
|
-
success: Durum başarıyla silindi
|
113
79
|
edit:
|
114
80
|
title: Durumu düzenle
|
115
81
|
update: Güncelleme durumu
|
@@ -118,15 +84,7 @@ tr:
|
|
118
84
|
new:
|
119
85
|
create: Durum oluştur
|
120
86
|
title: Yeni statü
|
121
|
-
update:
|
122
|
-
invalid: Bu durumu güncellerken bir sorun oluştu
|
123
|
-
success: Durum başarıyla güncellendi
|
124
87
|
timeline_entries:
|
125
|
-
create:
|
126
|
-
invalid: Bu girişi oluştururken bir sorun oluştu
|
127
|
-
success: Giriş başarıyla oluşturuldu
|
128
|
-
destroy:
|
129
|
-
success: Giriş başarıyla silindi
|
130
88
|
edit:
|
131
89
|
title: Girişi düzenle
|
132
90
|
update: Girişi güncelle
|
@@ -135,39 +93,23 @@ tr:
|
|
135
93
|
new:
|
136
94
|
create: Giriş oluştur
|
137
95
|
title: Yeni giriş
|
138
|
-
update:
|
139
|
-
invalid: Bu giriş güncellenirken bir sorun oluştu
|
140
|
-
success: Giriş başarıyla güncellendi
|
141
96
|
admin_log:
|
142
97
|
result:
|
143
98
|
create: "%{user_name} sonuç yaratmıştır %{resource_name} içinde %{space_name}"
|
144
99
|
delete: "%{user_name} %{resource_name} sonuçtan %{space_name}sildi"
|
145
100
|
update: "%{user_name} güncellenen sonuç %{resource_name} in %{space_name}"
|
146
|
-
status:
|
147
|
-
create: "48 / 5.000\nÇeviri sonuçları\nÇeviri sonucu\n%{user_name}, %{resource_name} kaydını oluşturdu"
|
148
|
-
delete: "%{user_name}, %{resource_name} kaydını sildi"
|
149
|
-
update: "%{user_name}, %{resource_name} kaydını Güncelledi"
|
150
|
-
timeline_entry:
|
151
|
-
create: "%{user_name}, %{resource_name} zaman çizelgesi girişini oluşturdu"
|
152
|
-
delete: "%{user_name}, %{resource_name} zaman çizelgesi girişini sildi"
|
153
|
-
update: "%{user_name}, %{resource_name} zaman çizelgesi girişini güncelledi"
|
154
101
|
value_types:
|
155
102
|
parent_presenter:
|
156
103
|
not_found: 'Üst veritabanında bulunamadı (ID: %{id})'
|
157
104
|
content_blocks:
|
158
105
|
highlighted_results:
|
159
|
-
dates: Tarih
|
160
106
|
results: Sonuç
|
161
|
-
unspecified: Belirtilmemiş
|
162
107
|
import_mailer:
|
163
108
|
import:
|
164
109
|
errors: Hatalar
|
165
|
-
errors_present: Sonuçları içe aktarırken bir sorun oluştu
|
166
110
|
row_number: Satır
|
167
111
|
subject: Sonuçların içe aktarılması başarılı
|
168
112
|
success: Sonuçların içe aktarılması başarılı. Sonuçları yönetim arayüzünde inceleyebilirsiniz.
|
169
|
-
last_activity:
|
170
|
-
new_result_at_html: "<span> %{link}</span>yeni sonuç"
|
171
113
|
models:
|
172
114
|
result:
|
173
115
|
fields:
|
@@ -189,10 +131,6 @@ tr:
|
|
189
131
|
timeline_entry:
|
190
132
|
fields:
|
191
133
|
entry_date: tarih
|
192
|
-
title: Başlık
|
193
|
-
result_m:
|
194
|
-
executed: Yürütüldü
|
195
|
-
view: Görünüm
|
196
134
|
results:
|
197
135
|
count:
|
198
136
|
results_count:
|
@@ -200,7 +138,6 @@ tr:
|
|
200
138
|
other: "%{count} sonuç"
|
201
139
|
filters:
|
202
140
|
all: Herşey
|
203
|
-
scopes: kapsamları
|
204
141
|
home:
|
205
142
|
categories_label: Kategoriler
|
206
143
|
subcategories_label: Alt Kategoriler
|
@@ -208,6 +145,7 @@ tr:
|
|
208
145
|
global_status: Genel yürütme durumu
|
209
146
|
nav_breadcrumb:
|
210
147
|
global: Global yürütme
|
148
|
+
no_results: Proje Bulunamadı
|
211
149
|
search:
|
212
150
|
search: İşlemleri ara
|
213
151
|
show:
|
@@ -234,8 +172,6 @@ tr:
|
|
234
172
|
label: Durum
|
235
173
|
components:
|
236
174
|
accountability:
|
237
|
-
actions:
|
238
|
-
comment: Yorum
|
239
175
|
name: Sorumluluk
|
240
176
|
settings:
|
241
177
|
global:
|
@@ -276,5 +212,3 @@ tr:
|
|
276
212
|
result_project: Bu sonuca dahil edilen projeler
|
277
213
|
included_proposals:
|
278
214
|
result_proposal: Bu sonuca dahil teklifler
|
279
|
-
statistics:
|
280
|
-
results_count: Sonuçlar
|
data/config/locales/uk.yml
CHANGED
@@ -37,7 +37,6 @@ uk:
|
|
37
37
|
confirm_destroy: Ви впевнені, що хочете видалити %{name}?
|
38
38
|
destroy: Видалити
|
39
39
|
edit: Редагувати
|
40
|
-
new: Додати %{name}
|
41
40
|
preview: Попередній перегляд
|
42
41
|
timeline_entries: Розвиток проекту
|
43
42
|
title: Дії
|
@@ -49,14 +48,7 @@ uk:
|
|
49
48
|
name: Підсумки
|
50
49
|
status:
|
51
50
|
name: Стан
|
52
|
-
timeline_entry:
|
53
|
-
name: Запис на лінії часу
|
54
51
|
results:
|
55
|
-
create:
|
56
|
-
invalid: При спробі створити ці підсумки сталася помилка
|
57
|
-
success: Підсумки успішно створено
|
58
|
-
destroy:
|
59
|
-
success: Підсумки успішно видалено
|
60
52
|
edit:
|
61
53
|
title: Редагувати підсумки
|
62
54
|
update: Оновити підсумки
|
@@ -65,18 +57,10 @@ uk:
|
|
65
57
|
new:
|
66
58
|
create: Створити підсумки
|
67
59
|
title: Додати підсумки
|
68
|
-
update:
|
69
|
-
invalid: При спробі оновити ці підсумки сталася помилка
|
70
|
-
success: Підсумки успішно оновлено
|
71
60
|
shared:
|
72
61
|
subnav:
|
73
62
|
statuses: Стани
|
74
63
|
statuses:
|
75
|
-
create:
|
76
|
-
invalid: При спробі створити цей стан сталася помилка
|
77
|
-
success: Стан успішно створено
|
78
|
-
destroy:
|
79
|
-
success: Стан успішно видалено
|
80
64
|
edit:
|
81
65
|
title: Редагувати стан
|
82
66
|
update: Оновити стан
|
@@ -85,15 +69,7 @@ uk:
|
|
85
69
|
new:
|
86
70
|
create: Створити стан
|
87
71
|
title: Додати стан
|
88
|
-
update:
|
89
|
-
invalid: При спробі оновити цей стан сталася помилка
|
90
|
-
success: Стан успішно оновлено
|
91
72
|
timeline_entries:
|
92
|
-
create:
|
93
|
-
invalid: При спробі створити цей запис сталася помилка
|
94
|
-
success: Запис успішно створено
|
95
|
-
destroy:
|
96
|
-
success: Запис успішно видалено
|
97
73
|
edit:
|
98
74
|
title: Редагувати запис
|
99
75
|
update: Оновити запис
|
@@ -102,9 +78,6 @@ uk:
|
|
102
78
|
new:
|
103
79
|
create: Створити запис
|
104
80
|
title: Додати запис
|
105
|
-
update:
|
106
|
-
invalid: Під час оновлення цього запису сталася помилка
|
107
|
-
success: Запис успішно оновлено
|
108
81
|
admin_log:
|
109
82
|
result:
|
110
83
|
create: "%{user_name} створив підсумок %{resource_name} у %{space_name}"
|
@@ -139,7 +112,6 @@ uk:
|
|
139
112
|
other: "%{count} підсумків"
|
140
113
|
filters:
|
141
114
|
all: Усі
|
142
|
-
scopes: Обсяги
|
143
115
|
home:
|
144
116
|
categories_label: Категорії
|
145
117
|
subcategories_label: Підкатегорії
|
@@ -153,6 +125,7 @@ uk:
|
|
153
125
|
stats:
|
154
126
|
attendees: Учасники
|
155
127
|
back_to_resource: Повернутися до підсумків
|
128
|
+
comments: Коментарів
|
156
129
|
contributions: Внесені пропозиції
|
157
130
|
last_edited_by: Останній раз редагувалося
|
158
131
|
last_updated_at: Останній раз оновлювалося
|