decidim-accountability 0.29.5 → 0.30.0.rc1
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/project/show.erb +6 -0
- data/app/cells/decidim/accountability/project_cell.rb +23 -42
- data/app/cells/decidim/accountability/result_history_cell.rb +57 -0
- data/app/cells/decidim/accountability/result_metadata_cell.rb +17 -17
- data/app/cells/decidim/accountability/status_cell.rb +9 -13
- data/app/commands/decidim/accountability/admin/create_imported_result.rb +1 -1
- data/app/commands/decidim/accountability/admin/create_result.rb +3 -2
- data/app/commands/decidim/accountability/admin/import_component_to_accountability.rb +47 -0
- data/app/commands/decidim/accountability/admin/update_imported_result.rb +1 -1
- data/app/commands/decidim/accountability/admin/update_result.rb +3 -2
- data/app/commands/decidim/accountability/admin/update_result_dates.rb +56 -0
- data/app/commands/decidim/accountability/admin/update_result_status.rb +61 -0
- data/app/commands/decidim/accountability/admin/update_result_taxonomies.rb +18 -0
- data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +8 -6
- data/app/controllers/decidim/accountability/admin/import_components_controller.rb +36 -0
- data/app/controllers/decidim/accountability/admin/results_bulk_actions_controller.rb +102 -0
- data/app/controllers/decidim/accountability/admin/results_controller.rb +21 -11
- data/app/controllers/decidim/accountability/results_controller.rb +10 -7
- data/app/forms/decidim/accountability/admin/import_component_form.rb +98 -0
- data/app/forms/decidim/accountability/admin/result_bulk_actions_form.rb +18 -0
- data/app/forms/decidim/accountability/admin/result_form.rb +17 -23
- data/app/helpers/decidim/accountability/admin/application_helper.rb +0 -1
- data/app/helpers/decidim/accountability/application_helper.rb +1 -32
- data/app/helpers/decidim/accountability/breadcrumb_helper.rb +10 -14
- data/app/jobs/decidim/accountability/admin/import_projects_job.rb +5 -3
- data/app/jobs/decidim/accountability/admin/import_proposals_job.rb +70 -0
- data/app/mailers/decidim/accountability/import_proposals_mailer.rb +28 -0
- data/app/models/decidim/accountability/result.rb +23 -1
- data/app/models/decidim/accountability/status.rb +4 -0
- data/app/packs/entrypoints/decidim_accountability_admin_form.js +1 -0
- data/app/packs/src/decidim/accountability/admin/imports.js +37 -14
- data/app/packs/src/decidim/accountability/admin/index/action_button.js +42 -0
- data/app/packs/src/decidim/accountability/admin/index/action_form.js +46 -0
- data/app/packs/src/decidim/accountability/admin/index/action_selector.js +37 -0
- data/app/packs/src/decidim/accountability/admin/index/counter.js +40 -0
- data/app/packs/src/decidim/accountability/admin/index/select_all.js +29 -0
- data/app/packs/src/decidim/accountability/admin/index.js +17 -7
- data/app/packs/src/decidim/accountability/admin/result_form.js +21 -0
- data/app/packs/stylesheets/accountability.scss +5 -0
- data/app/permissions/decidim/accountability/admin/permissions.rb +3 -2
- data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +1 -1
- data/app/presenters/decidim/accountability/result_presenter.rb +30 -0
- data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +6 -6
- data/app/services/decidim/accountability/results_calculator.rb +4 -6
- data/app/services/decidim/accountability/results_csv_importer.rb +1 -1
- data/app/views/decidim/accountability/admin/import_components/_filters.html.erb +26 -0
- data/app/views/decidim/accountability/admin/import_components/_form.html.erb +26 -0
- data/app/views/decidim/accountability/admin/import_components/new.html.erb +14 -0
- data/app/views/decidim/accountability/admin/results/_actions.html.erb +29 -0
- data/app/views/decidim/accountability/admin/results/_form.html.erb +15 -8
- data/app/views/decidim/accountability/admin/results/_result-tr.html.erb +32 -0
- data/app/views/decidim/accountability/admin/results/_results-thead.html.erb +26 -0
- data/app/views/decidim/accountability/admin/results/bulk_actions/_dates_form.html.erb +19 -0
- data/app/views/decidim/accountability/admin/results/bulk_actions/_dropdown.html.erb +40 -0
- data/app/views/decidim/accountability/admin/results/bulk_actions/_status_form.html.erb +16 -0
- data/app/views/decidim/accountability/admin/results/bulk_actions/_submit_buttons.html.erb +4 -0
- data/app/views/decidim/accountability/admin/results/bulk_actions/_taxonomies_form.html.erb +18 -0
- data/app/views/decidim/accountability/admin/results/edit.html.erb +2 -2
- data/app/views/decidim/accountability/admin/results/index.html.erb +50 -111
- data/app/views/decidim/accountability/admin/results/manage_trash.html.erb +26 -0
- data/app/views/decidim/accountability/admin/results/new.html.erb +2 -2
- data/app/views/decidim/accountability/import_proposals_mailer/import.html.erb +2 -0
- data/app/views/decidim/accountability/results/{_home_categories.html.erb → _home_taxonomies.html.erb} +6 -8
- data/app/views/decidim/accountability/results/_project.html.erb +1 -3
- data/app/views/decidim/accountability/results/_projects_aside.html.erb +9 -7
- data/app/views/decidim/accountability/results/home.html.erb +18 -6
- data/app/views/decidim/accountability/results/index.html.erb +8 -2
- data/app/views/decidim/accountability/results/show.html.erb +5 -5
- data/config/assets.rb +3 -2
- data/config/locales/ar.yml +101 -57
- data/config/locales/bg.yml +2 -50
- data/config/locales/bs-BA.yml +0 -18
- data/config/locales/ca.yml +128 -40
- data/config/locales/cs.yml +149 -58
- data/config/locales/da.yml +2 -25
- data/config/locales/de.yml +130 -43
- data/config/locales/el.yml +2 -48
- data/config/locales/en.yml +128 -40
- data/config/locales/es-MX.yml +129 -41
- data/config/locales/es-PY.yml +129 -41
- data/config/locales/es.yml +129 -41
- data/config/locales/eu.yml +141 -54
- data/config/locales/fi-plain.yml +136 -49
- data/config/locales/fi.yml +136 -49
- data/config/locales/fr-CA.yml +112 -58
- data/config/locales/fr.yml +112 -58
- data/config/locales/ga-IE.yml +2 -15
- data/config/locales/gl.yml +2 -19
- data/config/locales/gn-PY.yml +1 -12
- data/config/locales/he-IL.yml +47 -54
- data/config/locales/hu.yml +2 -50
- data/config/locales/id-ID.yml +2 -18
- data/config/locales/is-IS.yml +2 -19
- data/config/locales/it.yml +2 -92
- data/config/locales/ja.yml +132 -47
- data/config/locales/kaa.yml +5 -8
- data/config/locales/ko.yml +2 -47
- data/config/locales/lb.yml +3 -20
- data/config/locales/lt.yml +2 -50
- data/config/locales/lv.yml +2 -21
- data/config/locales/nl.yml +2 -17
- data/config/locales/no.yml +2 -17
- data/config/locales/pl.yml +2 -47
- data/config/locales/pt-BR.yml +7 -56
- data/config/locales/pt.yml +37 -24
- data/config/locales/ro-RO.yml +4 -31
- data/config/locales/ru.yml +3 -19
- data/config/locales/si-LK.yml +2 -16
- data/config/locales/sk.yml +2 -21
- data/config/locales/sl.yml +2 -19
- data/config/locales/sq-AL.yml +2 -50
- data/config/locales/sr-CS.yml +2 -20
- data/config/locales/sv.yml +125 -37
- data/config/locales/th-TH.yml +1 -53
- data/config/locales/tr-TR.yml +3 -54
- data/config/locales/uk.yml +2 -21
- data/config/locales/zh-CN.yml +2 -22
- data/config/locales/zh-TW.yml +2 -47
- data/db/migrate/20200827154103_add_commentable_counter_cache_to_results.rb +1 -1
- data/db/migrate/20240828103202_add_deleted_at_to_decidim_accountability_results.rb +8 -0
- data/db/migrate/20240916112128_add_geolocation_fields_to_results.rb +9 -0
- data/decidim-accountability.gemspec +1 -1
- data/lib/decidim/accountability/admin_engine.rb +16 -2
- data/lib/decidim/accountability/component.rb +3 -3
- data/lib/decidim/accountability/result_serializer.rb +9 -13
- data/lib/decidim/accountability/seeds.rb +28 -21
- data/lib/decidim/accountability/test/factories.rb +6 -4
- data/lib/decidim/accountability/version.rb +1 -1
- data/lib/decidim/api/accountability_type.rb +4 -5
- data/lib/decidim/api/result_type.rb +10 -13
- data/lib/decidim/api/status_type.rb +3 -4
- data/lib/decidim/api/timeline_entry_type.rb +5 -6
- metadata +58 -31
- data/app/commands/decidim/accountability/admin/import_projects_to_accountability.rb +0 -37
- data/app/controllers/decidim/accountability/admin/projects_import_controller.rb +0 -31
- data/app/forms/decidim/accountability/admin/result_import_projects_form.rb +0 -51
- data/app/views/decidim/accountability/admin/projects_import/new.html.erb +0 -45
- data/app/views/decidim/accountability/results/_nav_breadcrumb.html.erb +0 -37
- data/app/views/decidim/accountability/results/_scope_filters.html.erb +0 -31
- data/config/locales/ca-IT.yml +0 -292
- /data/app/packs/entrypoints/{decidim_accountability_admin.js → decidim_accountability_admin_index.js} +0 -0
data/config/locales/sr-CS.yml
CHANGED
@@ -9,8 +9,6 @@ sr:
|
|
9
9
|
description: Opis
|
10
10
|
end_date: Krajnji datum
|
11
11
|
progress: Naprеdak
|
12
|
-
project_ids: Uključeni projekti
|
13
|
-
proposals: Uključeni predlozi
|
14
12
|
start_date: Datum početka
|
15
13
|
title: Naslov
|
16
14
|
updated_at: Ažurirano u
|
@@ -21,7 +19,7 @@ sr:
|
|
21
19
|
progress: Napredak
|
22
20
|
timeline_entry:
|
23
21
|
description: Opis
|
24
|
-
|
22
|
+
entry_date: Datum
|
25
23
|
models:
|
26
24
|
decidim/accountability/proposal_linked_event: Predlog uključen u rezultat
|
27
25
|
decidim/accountability/result_progress_updated_event: Rezultati napretka ažurirani
|
@@ -89,10 +87,8 @@ sr:
|
|
89
87
|
models:
|
90
88
|
result:
|
91
89
|
fields:
|
92
|
-
category: Kategorija
|
93
90
|
end_date: Krajnji datum
|
94
91
|
progress: Napredak
|
95
|
-
scope: Opseg
|
96
92
|
start_date: Datum početka
|
97
93
|
status: Stanje
|
98
94
|
title: Naslov
|
@@ -104,21 +100,15 @@ sr:
|
|
104
100
|
progress: Napredak
|
105
101
|
timeline_entry:
|
106
102
|
fields:
|
107
|
-
|
103
|
+
entry_date: Datum
|
108
104
|
results:
|
109
105
|
count:
|
110
106
|
results_count:
|
111
107
|
one: 1 rezultat
|
112
108
|
few: "%{count} rezultata"
|
113
109
|
other: "%{count} rezultata"
|
114
|
-
filters:
|
115
|
-
all: Sve
|
116
|
-
home:
|
117
|
-
subcategories_label: Pod kategorije
|
118
110
|
home_header:
|
119
111
|
global_status: Sveopšte stanje izvršenja
|
120
|
-
nav_breadcrumb:
|
121
|
-
global: Sveopšte izvršenje
|
122
112
|
search:
|
123
113
|
search: Potraga za akcijama
|
124
114
|
show:
|
@@ -126,13 +116,6 @@ sr:
|
|
126
116
|
back_to_resource: Vrati se na rezultat
|
127
117
|
timeline:
|
128
118
|
title: Evolucija projekta
|
129
|
-
admin:
|
130
|
-
filters:
|
131
|
-
results:
|
132
|
-
category_id_eq:
|
133
|
-
label: Kategorija
|
134
|
-
scope_id_eq:
|
135
|
-
label: Opseg
|
136
119
|
components:
|
137
120
|
accountability:
|
138
121
|
name: Odgovornost
|
@@ -141,7 +124,6 @@ sr:
|
|
141
124
|
comments_enabled: Komentari su omogućeni
|
142
125
|
display_progress_enabled: Prikaži napredak
|
143
126
|
intro: Uvod
|
144
|
-
scope_id: Opseg
|
145
127
|
step:
|
146
128
|
comments_blocked: Komentari su onemogućeni
|
147
129
|
events:
|
data/config/locales/sv.yml
CHANGED
@@ -8,10 +8,7 @@ sv:
|
|
8
8
|
decidim_scope_id: Indelning
|
9
9
|
description: Beskrivning
|
10
10
|
end_date: Slutdatum
|
11
|
-
meetings_ids: Möten som omfattas
|
12
11
|
progress: Genomförande
|
13
|
-
project_ids: Projekt som omfattas
|
14
|
-
proposals: Förslag som omfattas
|
15
12
|
start_date: Startdatum
|
16
13
|
subresults: Delresultat
|
17
14
|
title: Titel
|
@@ -30,6 +27,14 @@ sv:
|
|
30
27
|
decidim/accountability/result_progress_updated_event: Uppdaterat resultatutvecklingen
|
31
28
|
activerecord:
|
32
29
|
models:
|
30
|
+
decidim:
|
31
|
+
accountability:
|
32
|
+
result:
|
33
|
+
budget_text: Resultatet %{link} har tagits med
|
34
|
+
meetings_ids: 'Diskuterades på det här mötet: %{link}'
|
35
|
+
project_ids: 'Lades till i det här projektet: %{link}'
|
36
|
+
proposal_ids: 'Lades till i det här förslaget: %{link}'
|
37
|
+
text: 'Lades till i det här resultatet: %{link}'
|
33
38
|
decidim/accountability/result:
|
34
39
|
one: Resultat
|
35
40
|
other: Resultat
|
@@ -38,10 +43,12 @@ sv:
|
|
38
43
|
actions:
|
39
44
|
attachment_collections: Mappar
|
40
45
|
attachments: Bifogade filer
|
46
|
+
confirm_delete_result: Vill du ta bort det här resultatet?
|
41
47
|
confirm_destroy: Vill du radera detta %{name}?
|
48
|
+
deleted_results_info: Borttagna resultat kan återställas från papperskorgen.
|
42
49
|
destroy: Radera
|
43
50
|
edit: Redigera
|
44
|
-
import: Importera från en annan komponent
|
51
|
+
import: Importera resultat från en annan komponent
|
45
52
|
import_csv: Importera resultat från CSV-fil
|
46
53
|
new_result: Nytt resultat
|
47
54
|
new_status: Ny status
|
@@ -49,10 +56,33 @@ sv:
|
|
49
56
|
preview: Förhandsvisa
|
50
57
|
timeline_entries: Projektutveckling
|
51
58
|
title: Åtgärder
|
59
|
+
view_deleted_results: Visa raderade resultat
|
52
60
|
admin:
|
53
61
|
exports:
|
54
62
|
result_comments: Kommentarer
|
55
63
|
results: Resultat
|
64
|
+
import_components:
|
65
|
+
create:
|
66
|
+
invalid: Det gick inte att importera resultaten, följ instruktionerna noga och se till att du har valt projekt för genomförande.
|
67
|
+
filters:
|
68
|
+
new_items_projects:
|
69
|
+
one: 1 valt projekt kommer att importeras
|
70
|
+
other: "%{count} valda projekt kommer att importeras"
|
71
|
+
new_items_proposals:
|
72
|
+
one: 1 förslag kommer att importeras
|
73
|
+
other: "%{count} förslag kommer att importeras"
|
74
|
+
proposal_state: Förslagets status
|
75
|
+
select_state: Välj status
|
76
|
+
form:
|
77
|
+
create: Importera
|
78
|
+
no_components: Det finns inga komponenter i deltagarutrymmet att importera.
|
79
|
+
origin_component_id: Ursprungskomponent
|
80
|
+
select_component: Välj en komponent
|
81
|
+
new:
|
82
|
+
success:
|
83
|
+
one: 1 projekt väntar på att importeras. Du får ett e-postmeddelande när det är klart.
|
84
|
+
other: "%{count} projekt väntar på att importeras. Du får ett e-postmeddelande när det är klart."
|
85
|
+
title: Importera resultat från en annan komponent
|
56
86
|
import_results:
|
57
87
|
new:
|
58
88
|
download_export: Ladda ner exporten som CSV-fil
|
@@ -88,39 +118,52 @@ sv:
|
|
88
118
|
name: Resultat
|
89
119
|
status:
|
90
120
|
name: Status
|
91
|
-
projects_import:
|
92
|
-
create:
|
93
|
-
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.
|
94
|
-
new:
|
95
|
-
create: Importera
|
96
|
-
import_all_selected_projects: Importera alla projekt som valts för genomförande
|
97
|
-
new_items:
|
98
|
-
one: 1 valt projekt kommer att importeras
|
99
|
-
other: "%{count} valda projekt kommer att importeras"
|
100
|
-
no_components: Det finns ingen budget-komponenter att importera projekt från i den här processen.
|
101
|
-
origin_component_id: Ursprungskomponent
|
102
|
-
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
121
|
results:
|
122
|
+
bulk_actions:
|
123
|
+
dates_form:
|
124
|
+
change_dates: Ändra datum
|
125
|
+
end_date: Slutdatum
|
126
|
+
start_date: Startdatum
|
127
|
+
dropdown:
|
128
|
+
actions: Åtgärder
|
129
|
+
change_dates: Ändra datum
|
130
|
+
change_status: Ändra status
|
131
|
+
change_taxonomies: Ändra kategorier
|
132
|
+
status_form:
|
133
|
+
change_status: Ändra status
|
134
|
+
status: Status
|
135
|
+
submit_buttons:
|
136
|
+
cancel: Avbryt
|
137
|
+
taxonomies_form:
|
138
|
+
change_taxonomies: Ändra kategorier
|
108
139
|
create:
|
109
140
|
invalid: Det gick inte att skapa resultatet.
|
110
141
|
success: Resultatet har skapats.
|
111
|
-
destroy:
|
112
|
-
success: Resultatet har raderats.
|
113
142
|
edit:
|
114
143
|
title: Redigera resultat
|
115
144
|
update: Uppdatera resultat
|
116
145
|
index:
|
146
|
+
selected: Valda
|
117
147
|
title: Resultat
|
148
|
+
manage_trash:
|
149
|
+
title: Borttagna resultat
|
118
150
|
new:
|
119
151
|
create: Skapa resultat
|
120
152
|
title: Nytt resultat
|
121
153
|
update:
|
122
154
|
invalid: Det gick inte att uppdatera resultatet.
|
123
155
|
success: Resultatet har uppdaterats.
|
156
|
+
update_dates:
|
157
|
+
invalid: Det gick inte att uppdatera resultatets datum
|
158
|
+
success: Resultatets datum har uppdaterats
|
159
|
+
update_status:
|
160
|
+
invalid: Det gick inte att uppdatera resultatets status
|
161
|
+
success: Resultatets status har uppdaterats
|
162
|
+
update_taxonomies:
|
163
|
+
invalid: Det gick inte att uppdatera kategorierna %{taxonomies} för resultatet %{results}
|
164
|
+
select_a_result: Välj ett resultat
|
165
|
+
select_a_taxonomy: Välj en kategori
|
166
|
+
success: Kategorierna %{taxonomies} för resultat %{results} har uppdaterats
|
124
167
|
shared:
|
125
168
|
subnav:
|
126
169
|
statuses: Status
|
@@ -162,6 +205,8 @@ sv:
|
|
162
205
|
result:
|
163
206
|
create: "%{user_name} skapade resultatet %{resource_name} i %{space_name}"
|
164
207
|
delete: "%{user_name} raderade resultatet %{resource_name} i %{space_name}"
|
208
|
+
restore: "%{user_name} återställde resultatet %{resource_name} för %{space_name}"
|
209
|
+
soft_delete: "%{user_name} raderade resultatet %{resource_name} i %{space_name}"
|
165
210
|
update: "%{user_name} uppdaterade resultatet %{resource_name} i %{space_name}"
|
166
211
|
status:
|
167
212
|
create: "%{user_name} skapade statusen %{resource_name}"
|
@@ -177,6 +222,8 @@ sv:
|
|
177
222
|
content_blocks:
|
178
223
|
highlighted_results:
|
179
224
|
results: Resultat
|
225
|
+
creation:
|
226
|
+
text: Resultatet har skapats
|
180
227
|
import_mailer:
|
181
228
|
import:
|
182
229
|
errors: Fel
|
@@ -191,19 +238,25 @@ sv:
|
|
191
238
|
other: "%{count} resultat importerades från projekt."
|
192
239
|
subject: Projekten har importerats
|
193
240
|
success: Projekten har importerats till resultat i %{component_name}. Du kan se resultaten i administrationsgränssnittet.
|
241
|
+
import_proposals_mailer:
|
242
|
+
import:
|
243
|
+
added_proposals:
|
244
|
+
one: Ett resultat importerades från förslagen
|
245
|
+
other: "%{count} resultat importerades från förslagen."
|
246
|
+
subject: Förslagen har importerats
|
247
|
+
success: Förslagen har importerats till resultat i %{component_name}. Du kan se resultatet i administrationsgränssnittet.
|
194
248
|
last_activity:
|
195
249
|
new_result: 'Nytt resultat:'
|
196
250
|
models:
|
197
251
|
result:
|
198
252
|
fields:
|
199
|
-
category: Kategori
|
200
253
|
created_at: Skapad
|
201
254
|
end_date: Slutdatum
|
202
255
|
id: ID
|
203
256
|
progress: Genomförande
|
204
|
-
scope: Indelning
|
205
257
|
start_date: Startdatum
|
206
258
|
status: Status
|
259
|
+
taxonomies: Kategorier
|
207
260
|
title: Titel
|
208
261
|
status:
|
209
262
|
fields:
|
@@ -220,17 +273,11 @@ sv:
|
|
220
273
|
results_count:
|
221
274
|
one: Ett resultat
|
222
275
|
other: "%{count} resultat"
|
223
|
-
filters:
|
224
|
-
all: Alla
|
225
276
|
home:
|
226
|
-
categories_label: Kategorier
|
227
277
|
empty: Det finns inget resultat ännu.
|
228
278
|
empty_filters: Det finns inget resultat med de här kriterierna.
|
229
|
-
subcategories_label: Underkategorier
|
230
279
|
home_header:
|
231
280
|
global_status: Status för genomförande
|
232
|
-
nav_breadcrumb:
|
233
|
-
global: Globalt genomförande
|
234
281
|
no_results: Det finns inga projekt
|
235
282
|
search:
|
236
283
|
search: Sök efter åtgärder
|
@@ -242,12 +289,10 @@ sv:
|
|
242
289
|
admin:
|
243
290
|
filters:
|
244
291
|
results:
|
245
|
-
category_id_eq:
|
246
|
-
label: Kategori
|
247
|
-
scope_id_eq:
|
248
|
-
label: Indelning
|
249
292
|
status_id_eq:
|
250
293
|
label: Status
|
294
|
+
taxonomies_part_of_contains:
|
295
|
+
label: Kategori
|
251
296
|
components:
|
252
297
|
accountability:
|
253
298
|
actions:
|
@@ -255,14 +300,22 @@ sv:
|
|
255
300
|
name: Genomförande
|
256
301
|
settings:
|
257
302
|
global:
|
303
|
+
clear_all: Rensa alla
|
258
304
|
comments_enabled: Aktivera kommentarer
|
259
305
|
comments_max_length: Maximal kommentarslängd (ange 0 för att använda standardvärdet)
|
306
|
+
define_taxonomy_filters: Vänligen definiera några filter för deltagarutrymmet innan du använder den här inställningen.
|
260
307
|
display_progress_enabled: Visa behandling
|
308
|
+
geocoding_enabled: Aktivera visning på karta
|
261
309
|
intro: Intro
|
262
|
-
|
263
|
-
|
310
|
+
no_taxonomy_filters_found: Inga filter för kategorier hittades.
|
311
|
+
taxonomy_filters: Välj filter för komponenten
|
312
|
+
taxonomy_filters_add: Lägg till filter
|
264
313
|
step:
|
265
314
|
comments_blocked: Stäng av kommentarer
|
315
|
+
download_your_data:
|
316
|
+
show:
|
317
|
+
result_comments: Exportera resultatkommentarer
|
318
|
+
results: Exportera resultat
|
266
319
|
events:
|
267
320
|
accountability:
|
268
321
|
proposal_linked:
|
@@ -280,9 +333,44 @@ sv:
|
|
280
333
|
description: Antal genererade resultat
|
281
334
|
object: resultat
|
282
335
|
title: Resultat
|
336
|
+
open_data:
|
337
|
+
help:
|
338
|
+
result_comments:
|
339
|
+
alignment: Positiva, negativa eller neutrala kommentarer
|
340
|
+
author: Namn på den som kommenterat
|
341
|
+
body: Kommentaren
|
342
|
+
commentable_id: Kommentarens unika id
|
343
|
+
commentable_type: Vad som kommenterades (resultat, förslag etc)
|
344
|
+
created_at: Datum för kommentaren
|
345
|
+
depth: Kommentarens plats i en hierarki av kommentarer (om den är ett svar på en annan kommentar)
|
346
|
+
id: Id för kommentaren
|
347
|
+
locale: Kommentarförfattarens språk
|
348
|
+
root_commentable_url: URL till innehållet som är relaterat till kommentaren
|
349
|
+
user_group: Namn på gruppen som kommenterat (om det var en grupp)
|
350
|
+
results:
|
351
|
+
address: Adress till resultatet (om tillämpbart)
|
352
|
+
children_count: Antal underliggande resultat
|
353
|
+
comments_count: Antal kommentarer till resultatet
|
354
|
+
component: Komponent som resultatet tillhör
|
355
|
+
created_at: Datum då resultatet skapades
|
356
|
+
description: Beskrivning av resultatet
|
357
|
+
end_date: Datum då resultatet genomförts och är slutfört
|
358
|
+
id: Unikt id för resultatet
|
359
|
+
latitude: Latitud för resultatet
|
360
|
+
longitude: Longitud för resultatet
|
361
|
+
parent: Det överordnade resultatet (om tillämpbart)
|
362
|
+
progress: Genomförande av resultatet i procent
|
363
|
+
proposal_urls: URLer till de förslag som ingår i resultatet
|
364
|
+
reference: Unikt id för resultatet
|
365
|
+
start_date: Datum när genomförandet av resultatet inleds
|
366
|
+
status: Nuvarande status för resultatet
|
367
|
+
taxonomies: Kategorier för resultatet
|
368
|
+
title: Titel på resultatet
|
369
|
+
updated_at: Senaste datum när resultatet uppdaterades
|
370
|
+
url: URL för resultatet
|
283
371
|
participatory_spaces:
|
284
372
|
highlighted_results:
|
285
|
-
see_all:
|
373
|
+
see_all: Se alla resultat (%{count})
|
286
374
|
resource_links:
|
287
375
|
included_projects:
|
288
376
|
result_project: Projekt som ingår i detta resultat
|
data/config/locales/th-TH.yml
CHANGED
@@ -8,10 +8,7 @@ th:
|
|
8
8
|
decidim_scope_id: ขอบเขต
|
9
9
|
description: คำอธิบาย
|
10
10
|
end_date: วันสิ้นสุด
|
11
|
-
meetings_ids: รวมการประชุม
|
12
11
|
progress: ความคืบหน้า
|
13
|
-
project_ids: รวมโครงการ
|
14
|
-
proposals: รวมข้อเสนอ
|
15
12
|
start_date: วันที่เริ่มต้น
|
16
13
|
title: ชื่อ
|
17
14
|
updated_at: อัปเดตที่
|
@@ -22,6 +19,7 @@ th:
|
|
22
19
|
progress: ความคืบหน้า
|
23
20
|
timeline_entry:
|
24
21
|
description: คำอธิบาย
|
22
|
+
entry_date: วันที่
|
25
23
|
title: ชื่อ
|
26
24
|
models:
|
27
25
|
decidim/accountability/proposal_linked_event: ข้อเสนอที่รวมอยู่ในผลลัพธ์
|
@@ -38,7 +36,6 @@ th:
|
|
38
36
|
confirm_destroy: คุณแน่ใจหรือไม่ว่าต้องการลบ %{name} นี้
|
39
37
|
destroy: ลบ
|
40
38
|
edit: แก้ไข
|
41
|
-
import: นำเข้าโครงการจากส่วนประกอบอื่น
|
42
39
|
import_csv: นำเข้าผลลัพธ์จากไฟล์ CSV
|
43
40
|
new_result: ผลลัพธ์ใหม่
|
44
41
|
new_status: สถานะใหม่
|
@@ -54,27 +51,6 @@ th:
|
|
54
51
|
new:
|
55
52
|
download_export: ดาวน์โหลดการส่งออกด้วยรูปแบบ CSV
|
56
53
|
import: นำเข้า
|
57
|
-
info: |
|
58
|
-
<p>เราขอแนะนำให้คุณทำตามขั้นตอนเหล่านี้:</p>
|
59
|
-
<ol>
|
60
|
-
<li><a href='%{link_new_status}' target='_blank'>สร้างสถานะสำหรับผลลัพธ์</a> ที่คุณต้องการเพิ่ม</li>
|
61
|
-
<li><a href='%{link_new_result}' target='_blank'>สร้างผลลัพธ์อย่างน้อยหนึ่งรายการด้วยตนเอง</a>ผ่านแผงการดูแลระบบนี้ก่อนที่จะใช้การนำเข้า เพื่อให้มีความเข้าใจที่ดีขึ้นเกี่ยวกับรูปแบบและสิ่งที่คุณต้องการ เพื่อกรอก</li>
|
62
|
-
<li>%{link_export_csv}</li>
|
63
|
-
<li>ทำการเปลี่ยนแปลงภายในเครื่อง คุณสามารถเปลี่ยนได้เฉพาะคอลัมน์ต่อไปนี้ของ CSV:
|
64
|
-
<ul>
|
65
|
-
<li><b>category/id:</b> รหัสสำหรับหมวดหมู่</li>
|
66
|
-
<li><b>ขอบเขต/id:</b> ID สำหรับขอบเขต</li>
|
67
|
-
<li><b>parent/id:</b> ID ของ parent (สำหรับผลลัพธ์ที่เกี่ยวข้อง) ไม่บังคับ</li>
|
68
|
-
<li><b>title/en:</b> ชื่อเรื่องเป็นภาษาอังกฤษ ขึ้นอยู่กับการกำหนดค่าภาษาแพลตฟอร์มของคุณ</li>
|
69
|
-
<li><b>description/en:</b> คำอธิบายเป็นภาษาอังกฤษ ขึ้นอยู่กับการกำหนดค่าภาษาแพลตฟอร์มของคุณ</li>
|
70
|
-
<li><b>start_date:</b> วันที่ผลลัพธ์เริ่มดำเนินการ (รูปแบบ YYYY-MM-DD)</li>
|
71
|
-
<li><b>end_date:</b> วันที่ผลลัพธ์สิ้นสุดการดำเนินการ (รูปแบบ YYYY-MM-DD)</li>
|
72
|
-
<li><b>status/id:</b> ID ของสถานะของผลลัพธ์นี้</li>
|
73
|
-
<li><b>ความคืบหน้า:</b> เปอร์เซ็นต์ (ตั้งแต่ 0 ถึง 100) ของการดำเนินการ</li>
|
74
|
-
<li><b>proposals_ids:</b> ID ภายในของข้อเสนอที่เกี่ยวข้อง (คั่นด้วยเครื่องหมายจุลภาค) จะถูกแปลงเป็น <span class='attribute-name'>proposal_url</span></li> โดยอัตโนมัติ
|
75
|
-
</ul>
|
76
|
-
</li>
|
77
|
-
</ol>
|
78
54
|
title: นำเข้าผลลัพธ์จากไฟล์ CSV
|
79
55
|
imports:
|
80
56
|
create:
|
@@ -85,22 +61,10 @@ th:
|
|
85
61
|
name: ผลลัพธ์
|
86
62
|
status:
|
87
63
|
name: สถานะ
|
88
|
-
projects_import:
|
89
|
-
create:
|
90
|
-
invalid: เกิดปัญหาในการนำเข้าโปรเจ็กต์ไปยังผลลัพธ์ โปรดปฏิบัติตามคำแนะนำอย่างละเอียด และตรวจสอบให้แน่ใจว่าคุณได้เลือกโปรเจ็กต์สำหรับนำไปใช้งาน
|
91
|
-
new:
|
92
|
-
create: นำเข้า
|
93
|
-
import_all_selected_projects: นำเข้าโครงการทั้งหมดที่เลือกเพื่อนำไปใช้งาน
|
94
|
-
no_components: ไม่มีองค์ประกอบด้านงบประมาณในพื้นที่แบบมีส่วนร่วมนี้เพื่อนำเข้าโครงการเข้าสู่ผลลัพธ์d
|
95
|
-
success:
|
96
|
-
other: "มี 1 โปรเจ็กต์อยู่ในคิวที่จะนำเข้า คุณจะได้รับแจ้งทางอีเมลเมื่อดำเนินการเสร็จสิ้น"
|
97
|
-
title: นำเข้าโครงการจากส่วนประกอบอื่น
|
98
64
|
results:
|
99
65
|
create:
|
100
66
|
invalid: เกิดปัญหาในการสร้างผลลัพธ์นี้
|
101
67
|
success: สร้างผลลัพธ์สำเร็จแล้ว
|
102
|
-
destroy:
|
103
|
-
success: ลบผลลัพธ์เรียบร้อยแล้ว
|
104
68
|
edit:
|
105
69
|
title: แก้ไขผลลัพธ์
|
106
70
|
update: อัพเดทผลครับ
|
@@ -138,22 +102,12 @@ th:
|
|
138
102
|
success: สร้างรายการสําเร็จแล้ว
|
139
103
|
destroy:
|
140
104
|
success: ลบรายการเรียบร้อยแล้ว
|
141
|
-
models:
|
142
|
-
result:
|
143
|
-
fields:
|
144
|
-
category: หมวดหมู่
|
145
|
-
scope: ขอบเขต
|
146
|
-
timeline_entry:
|
147
|
-
fields:
|
148
|
-
title: ชื่อ
|
149
105
|
results:
|
150
106
|
home:
|
151
107
|
empty: ยังไม่มีผลลัพธ์
|
152
108
|
empty_filters: ไม่มีผลลัพธ์ตามเกณฑ์นี้
|
153
109
|
home_header:
|
154
110
|
global_status: สถานะการดำเนินการทั่วโลก
|
155
|
-
nav_breadcrumb:
|
156
|
-
global: การดำเนินการระดับโลก
|
157
111
|
no_results: ไม่มีโครงการ
|
158
112
|
search:
|
159
113
|
search: ค้นหาการกระทำ
|
@@ -165,10 +119,6 @@ th:
|
|
165
119
|
admin:
|
166
120
|
filters:
|
167
121
|
results:
|
168
|
-
category_id_eq:
|
169
|
-
label: หมวดหมู่
|
170
|
-
scope_id_eq:
|
171
|
-
label: ขอบเขต
|
172
122
|
status_id_eq:
|
173
123
|
label: สถานะ
|
174
124
|
components:
|
@@ -182,8 +132,6 @@ th:
|
|
182
132
|
comments_max_length: ความคิดเห็นความยาวสูงสุด (ปล่อยให้ 0 เป็นค่าเริ่มต้น)
|
183
133
|
display_progress_enabled: แสดงความคืบหน้า
|
184
134
|
intro: คำแนะนำ
|
185
|
-
scope_id: ขอบเขต
|
186
|
-
scopes_enabled: เปิดใช้งานขอบเขตแล้ว
|
187
135
|
step:
|
188
136
|
comments_blocked: ความคิดเห็นถูกบล็อก
|
189
137
|
events:
|
data/config/locales/tr-TR.yml
CHANGED
@@ -8,12 +8,8 @@ tr:
|
|
8
8
|
decidim_scope_id: kapsam
|
9
9
|
description: Açıklama
|
10
10
|
end_date: Bitiş tarihi
|
11
|
-
meetings_ids: Görüşmeler
|
12
11
|
progress: İlerleme
|
13
|
-
project_ids: Dahil edilen projeler
|
14
|
-
proposals: Dahil edilen teklifler
|
15
12
|
start_date: Başlangıç tarihi
|
16
|
-
subresults:
|
17
13
|
title: Başlık
|
18
14
|
updated_at: Adresinde güncellendi
|
19
15
|
status:
|
@@ -23,7 +19,8 @@ tr:
|
|
23
19
|
progress: İlerleme
|
24
20
|
timeline_entry:
|
25
21
|
description: Açıklama
|
26
|
-
|
22
|
+
entry_date: tarih
|
23
|
+
title: Başlik / Unvani
|
27
24
|
models:
|
28
25
|
decidim/accountability/proposal_linked_event: Teklif bir sonuca dahil edildi
|
29
26
|
decidim/accountability/result_progress_updated_event: Sonuç ilerlemesi güncellendi
|
@@ -40,7 +37,6 @@ tr:
|
|
40
37
|
confirm_destroy: Bu %{name}silmek istediğinize emin misiniz?
|
41
38
|
destroy: silmek
|
42
39
|
edit: Düzenle
|
43
|
-
import: Başka bir bileşenden proje aktar
|
44
40
|
import_csv: Sonuçları CSV dosyasından içe aktarın
|
45
41
|
new_result: Yeni sonuç
|
46
42
|
new_status: Yeni Durum
|
@@ -56,27 +52,6 @@ tr:
|
|
56
52
|
new:
|
57
53
|
download_export: ' İhracat i CSV formatında indirin '
|
58
54
|
import: İçe aktar
|
59
|
-
info: |
|
60
|
-
<p>Şu adımları uygulamanızı öneririz:</p>
|
61
|
-
<ol>
|
62
|
-
<li><a href='%{link_new_status}' target='_blank'>Eklemek istediğiniz Sonuçlar için kayıtları</a></li>
|
63
|
-
Biçimi ve neye ihtiyacınız olacağını daha iyi anlamak için, İçe Aktarmayı kullanmadan önce bu Yönetici paneli aracılığıyla <li><a href='%{link_new_result}' target='_blank'>manuel olarak en az bir Sonuç oluşturun</a> doldurmak için.</li>
|
64
|
-
<li>%{link_export_csv</li>
|
65
|
-
<li>Değişiklikleri yerel olarak yapın. CSV'nin yalnızca aşağıdaki sütunlarını değiştirebilirsiniz:
|
66
|
-
<ul>
|
67
|
-
<li><b>kategori/kimlik:</b> Kategorinin kimliği</li>
|
68
|
-
<li><b>kapsam/kimlik:</b> Kapsamın kimliği</li>
|
69
|
-
<li><b>ebeveyn/kimlik:</b> Ebeveynin kimliği (ilgili Sonuçlar için). İsteğe bağlı</li>
|
70
|
-
<li><b>title/en:</b> İngilizce dilindeki başlık. Bu, platform dili yapılandırmanıza bağlı olacaktır.</li>
|
71
|
-
<li><b>description/tr:</b> İngilizce diliyle ilgili açıklama. Bu, platform dili yapılandırmanıza bağlı olacaktır.</li>
|
72
|
-
<li><b>başlangıç_tarihi:</b> sonucun yürütülmeye başlayacağı tarih (YYYY-AA-GG biçiminde)</li>
|
73
|
-
<li><b>bitiş_tarihi:</b> sonucun yürütülmesinin sona erdiği tarih (YYYY-AA-GG biçiminde)</li>
|
74
|
-
<li><b>durum/kimlik:</b> Bu sonuca ilişkin Durumun kimliği</li>
|
75
|
-
<li><b>ilerleme:</b> Yürütme yüzdesi (0'dan 100'e kadar)</li>
|
76
|
-
<li><b>teklifler_kimlikleri:</b> İlgili tekliflerin dahili kimliği (virgülle ayrılmış). Otomatik olarak <span class='attribute-name'>proposal_url</span></li> biçimine dönüştürülür
|
77
|
-
</ul>
|
78
|
-
</li>
|
79
|
-
</ol>
|
80
55
|
title: Sonuçları CSV dosyasından içe aktarın
|
81
56
|
imports:
|
82
57
|
create:
|
@@ -87,25 +62,10 @@ tr:
|
|
87
62
|
name: Sonuç
|
88
63
|
status:
|
89
64
|
name: durum
|
90
|
-
projects_import:
|
91
|
-
create:
|
92
|
-
invalid: Projelerin sonuçlara aktarılmasında bir sorun oluştu. Lütfen talimatları dikkatlice takip edin ve projeleri seçtiğinizden emin olun.
|
93
|
-
new:
|
94
|
-
create: İçe aktar
|
95
|
-
import_all_selected_projects: Seçilen tüm projeleri içe aktarın
|
96
|
-
new_items:
|
97
|
-
one: Seçilen 1 proje içe aktarılacak
|
98
|
-
other: "Seçilen %{count} proje içe aktarılacak"
|
99
|
-
no_components: Bu katılımcı alanda projeleri sonuçlara dönüştürecek bütçe bileşenleri yoktur.
|
100
|
-
origin_component_id:
|
101
|
-
select_component: Bir bileşen seç
|
102
|
-
title: Projeleri başka bir bileşenden içe aktarın
|
103
65
|
results:
|
104
66
|
create:
|
105
67
|
invalid: Sonuçlar sorgulanırken bir sorun oluştu.
|
106
68
|
success: Sonuçlar Başarıyla oluşturuldu.
|
107
|
-
destroy:
|
108
|
-
success: Sonuçlar Başarıyla Silindi.
|
109
69
|
edit:
|
110
70
|
title: Sonucu düzenle
|
111
71
|
update: Sonuç güncelle
|
@@ -189,12 +149,10 @@ tr:
|
|
189
149
|
models:
|
190
150
|
result:
|
191
151
|
fields:
|
192
|
-
category: Kategori
|
193
152
|
created_at: Oluşturuldu
|
194
153
|
end_date: Bitiş tarihi
|
195
154
|
id: ID
|
196
155
|
progress: İlerleme
|
197
|
-
scope: kapsam
|
198
156
|
start_date: Başlangıç tarihi
|
199
157
|
status: durum
|
200
158
|
title: Başlık
|
@@ -206,21 +164,18 @@ tr:
|
|
206
164
|
progress: İlerleme
|
207
165
|
timeline_entry:
|
208
166
|
fields:
|
167
|
+
entry_date: tarih
|
209
168
|
title: Başlık
|
210
169
|
results:
|
211
170
|
count:
|
212
171
|
results_count:
|
213
172
|
one: 1 sonuç
|
214
173
|
other: "%{count} sonuç"
|
215
|
-
filters:
|
216
|
-
all: Herşey
|
217
174
|
home:
|
218
175
|
empty: Henüz sonuç yok.
|
219
176
|
empty_filters: Bu kriterlere uyan sonuç bulunamamıştır.
|
220
177
|
home_header:
|
221
178
|
global_status: Genel yürütme durumu
|
222
|
-
nav_breadcrumb:
|
223
|
-
global: Global yürütme
|
224
179
|
no_results: Proje Bulunamadı
|
225
180
|
search:
|
226
181
|
search: İşlemleri ara
|
@@ -232,10 +187,6 @@ tr:
|
|
232
187
|
admin:
|
233
188
|
filters:
|
234
189
|
results:
|
235
|
-
category_id_eq:
|
236
|
-
label: Kategori
|
237
|
-
scope_id_eq:
|
238
|
-
label: kapsam
|
239
190
|
status_id_eq:
|
240
191
|
label: Durum
|
241
192
|
components:
|
@@ -249,8 +200,6 @@ tr:
|
|
249
200
|
comments_max_length: Maksimum yorum uzunluğu (Varsayılan değer için 0 bırakın)
|
250
201
|
display_progress_enabled: İlerlemeyi göster
|
251
202
|
intro: Tanıtım
|
252
|
-
scope_id: kapsam
|
253
|
-
scopes_enabled: Kapsamlar etkinleştirildi
|
254
203
|
step:
|
255
204
|
comments_blocked: Yorumlar engellendi
|
256
205
|
events:
|