decidim-accountability 0.29.2 → 0.30.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/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 +97 -55
- data/config/locales/bg.yml +0 -50
- data/config/locales/bs-BA.yml +0 -16
- data/config/locales/ca.yml +128 -40
- data/config/locales/cs.yml +147 -56
- data/config/locales/da.yml +0 -20
- data/config/locales/de.yml +126 -39
- data/config/locales/el.yml +0 -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 +140 -53
- data/config/locales/fi-plain.yml +136 -49
- data/config/locales/fi.yml +136 -49
- data/config/locales/fr-CA.yml +111 -54
- data/config/locales/fr.yml +111 -54
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +0 -17
- data/config/locales/gn-PY.yml +0 -11
- data/config/locales/he-IL.yml +45 -54
- data/config/locales/hu.yml +0 -50
- data/config/locales/id-ID.yml +0 -16
- data/config/locales/is-IS.yml +0 -17
- data/config/locales/it.yml +0 -18
- data/config/locales/ja.yml +132 -47
- data/config/locales/kaa.yml +0 -8
- data/config/locales/ko.yml +0 -47
- data/config/locales/lb.yml +0 -17
- data/config/locales/lt.yml +0 -50
- data/config/locales/lv.yml +0 -19
- data/config/locales/nl.yml +0 -17
- data/config/locales/no.yml +0 -17
- data/config/locales/pl.yml +0 -47
- data/config/locales/pt-BR.yml +6 -50
- data/config/locales/pt.yml +35 -23
- data/config/locales/ro-RO.yml +0 -29
- data/config/locales/ru.yml +0 -16
- data/config/locales/si-LK.yml +0 -11
- data/config/locales/sk.yml +0 -19
- data/config/locales/sl.yml +0 -17
- data/config/locales/sq-AL.yml +0 -50
- data/config/locales/sr-CS.yml +0 -16
- data/config/locales/sv.yml +124 -36
- data/config/locales/th-TH.yml +0 -50
- data/config/locales/tr-TR.yml +0 -47
- data/config/locales/uk.yml +0 -16
- data/config/locales/zh-CN.yml +0 -20
- data/config/locales/zh-TW.yml +0 -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 -30
- 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/app/packs/entrypoints/{decidim_accountability_admin.js → decidim_accountability_admin_index.js} +0 -0
data/config/locales/da.yml
CHANGED
@@ -9,8 +9,6 @@ da:
|
|
9
9
|
description: Beskrivelse
|
10
10
|
end_date: Slutdato
|
11
11
|
progress: Fremskridt
|
12
|
-
project_ids: Inkluderede projekter
|
13
|
-
proposals: Inkluderede projekter
|
14
12
|
start_date: Start dato
|
15
13
|
title: Titel
|
16
14
|
updated_at: Opdateret
|
@@ -50,9 +48,6 @@ da:
|
|
50
48
|
name: Resultat
|
51
49
|
status:
|
52
50
|
name: Status
|
53
|
-
projects_import:
|
54
|
-
new:
|
55
|
-
create: Import
|
56
51
|
results:
|
57
52
|
edit:
|
58
53
|
title: Rediger resultat
|
@@ -100,10 +95,8 @@ da:
|
|
100
95
|
models:
|
101
96
|
result:
|
102
97
|
fields:
|
103
|
-
category: Kategori
|
104
98
|
end_date: Slutdato
|
105
99
|
progress: Fremskridt
|
106
|
-
scope: Anvendelsesområde
|
107
100
|
start_date: Start dato
|
108
101
|
status: Status
|
109
102
|
title: Titel
|
@@ -121,12 +114,8 @@ da:
|
|
121
114
|
results_count:
|
122
115
|
one: 1 resultat
|
123
116
|
other: "%{count} resultater"
|
124
|
-
filters:
|
125
|
-
all: Alle
|
126
117
|
home_header:
|
127
118
|
global_status: Samlet gennemførelsesstatus
|
128
|
-
nav_breadcrumb:
|
129
|
-
global: Samlet udførelse
|
130
119
|
search:
|
131
120
|
search: Søg efter handlinger
|
132
121
|
show:
|
@@ -134,13 +123,6 @@ da:
|
|
134
123
|
back_to_resource: Tilbage til resultater
|
135
124
|
timeline:
|
136
125
|
title: Projektets udvikling
|
137
|
-
admin:
|
138
|
-
filters:
|
139
|
-
results:
|
140
|
-
category_id_eq:
|
141
|
-
label: Kategori
|
142
|
-
scope_id_eq:
|
143
|
-
label: Anvendelsesområde
|
144
126
|
components:
|
145
127
|
accountability:
|
146
128
|
name: Ansvarlighed
|
@@ -150,8 +132,6 @@ da:
|
|
150
132
|
comments_max_length: Kommentarer maks. længde (Leave 0 for standardværdi)
|
151
133
|
display_progress_enabled: Vis fremskridt
|
152
134
|
intro: Intro
|
153
|
-
scope_id: Anvendelsesområde
|
154
|
-
scopes_enabled: Omfang aktiveret
|
155
135
|
resource_links:
|
156
136
|
included_proposals:
|
157
137
|
result_proposal: Forslag i dette resultat
|
data/config/locales/de.yml
CHANGED
@@ -8,10 +8,7 @@ de:
|
|
8
8
|
decidim_scope_id: Umfang
|
9
9
|
description: Beschreibung
|
10
10
|
end_date: Enddatum
|
11
|
-
meetings_ids: Enthaltene Sitzungen
|
12
11
|
progress: Fortschritt
|
13
|
-
project_ids: Enthaltene Projekte
|
14
|
-
proposals: Enthaltene Vorschläge
|
15
12
|
start_date: Startdatum
|
16
13
|
subresults: Teilergebnisse
|
17
14
|
title: Titel
|
@@ -30,6 +27,14 @@ de:
|
|
30
27
|
decidim/accountability/result_progress_updated_event: Ergebnisfortschritt aktualisiert
|
31
28
|
activerecord:
|
32
29
|
models:
|
30
|
+
decidim:
|
31
|
+
accountability:
|
32
|
+
result:
|
33
|
+
budget_text: 'Einbezug des Ergebnisses: %{link} '
|
34
|
+
meetings_ids: 'Diskutiert in der Veranstaltung: %{link}'
|
35
|
+
project_ids: 'Einbezug ins Projekt: %{link}'
|
36
|
+
proposal_ids: 'Einbezug in den Vorschlag: %{link}'
|
37
|
+
text: 'Einbezug zum Ergebnis: %{link}'
|
33
38
|
decidim/accountability/result:
|
34
39
|
one: Ergebnis
|
35
40
|
other: Ergebnisse
|
@@ -38,10 +43,12 @@ de:
|
|
38
43
|
actions:
|
39
44
|
attachment_collections: Ordner
|
40
45
|
attachments: Anhänge
|
46
|
+
confirm_delete_result: Sind Sie sicher, dass Sie dieses Ergebnis löschen wollen?
|
41
47
|
confirm_destroy: Sind Sie sicher, dass Sie diese %{name}löschen möchten?
|
48
|
+
deleted_results_info: Gelöschte Ergebnisse können aus dem Papierkorb wiederhergestellt werden.
|
42
49
|
destroy: Löschen
|
43
50
|
edit: Bearbeiten
|
44
|
-
import:
|
51
|
+
import: Ergebnisse aus einer anderen Komponente importieren
|
45
52
|
import_csv: Ergebnisse aus CSV importieren
|
46
53
|
new_result: Neues Ergebnis
|
47
54
|
new_status: Neuer Status
|
@@ -49,10 +56,33 @@ de:
|
|
49
56
|
preview: Vorschau
|
50
57
|
timeline_entries: Projektentwicklung
|
51
58
|
title: Aktionen
|
59
|
+
view_deleted_results: Gelöschte Ergebnisse anzeigen
|
52
60
|
admin:
|
53
61
|
exports:
|
54
62
|
result_comments: Bemerkungen
|
55
63
|
results: Ergebnisse
|
64
|
+
import_components:
|
65
|
+
create:
|
66
|
+
invalid: Es gab ein Problem beim Importieren der Ergebnisse. Bitte befolgen Sie die Anweisungen sorgfältig und stellen Sie sicher, dass Sie vorgängig Projekte zur Umsetzung ausgewählt haben.
|
67
|
+
filters:
|
68
|
+
new_items_projects:
|
69
|
+
one: 1 ausgewähltes Projekt wird importiert
|
70
|
+
other: "%{count} ausgewählte Projekte werden importiert"
|
71
|
+
new_items_proposals:
|
72
|
+
one: 1 Vorschlag wird importiert
|
73
|
+
other: "%{count} Vorschläge werden importiert"
|
74
|
+
proposal_state: Vorschlagsstatus
|
75
|
+
select_state: Status auswählen
|
76
|
+
form:
|
77
|
+
create: Importieren
|
78
|
+
no_components: Es gibt keine Komponenten, die in diesen Beteiligungsbereich importiert werden können.
|
79
|
+
origin_component_id: Ursprungskomponente
|
80
|
+
select_component: Komponente auswählen
|
81
|
+
new:
|
82
|
+
success:
|
83
|
+
one: Es befindet sich ein zu importierendes Ergebnis in der Warteschlange. Sie werden per E-Mail benachrichtigt, sobald der Import abgeschlossen ist.
|
84
|
+
other: "Es befindet sich %{count} zu importierende Ergebnisse in der Warteschlange. Sie werden per E-Mail benachrichtigt, sobald der Import abgeschlossen ist."
|
85
|
+
title: Importiere Ergebnisse aus einer anderen Komponente
|
56
86
|
import_results:
|
57
87
|
new:
|
58
88
|
download_export: Export im CSV-Format herunterladen
|
@@ -63,10 +93,9 @@ de:
|
|
63
93
|
<li><a href='%{link_new_status}' target='_blank'>Erstellen Sie den Status der Ergebnisse</a>, die Sie hinzufügen möchten</li>
|
64
94
|
<li><a href='%{link_new_result}' target='_blank'>Erstellen Sie mindestens ein Ergebnis manuell</a> über das Admin-Backend bevor Sie die Importfunktion nutzen, damit Sie mit dem Format und den benötigten Eingaben vertraut sind.</li>
|
65
95
|
<li>%{link_export_csv}</li>
|
66
|
-
<li>Machen Sie Änderungen lokal. Sie können nur die folgenden Spalten des CSV ändern
|
96
|
+
<li>Machen Sie Änderungen lokal. Sie können nur die folgenden Spalten des CSV ändern (der Rest wird ignoriert):</li>
|
67
97
|
<ul>
|
68
|
-
<li><b>
|
69
|
-
<li><b>scope/id:</b> ID des Themenbereichs</li>
|
98
|
+
<li><b>taxonomies/id:</b> ID der Klassifizierungen (falls mehr als eiine vorhanden, trenne sie mit Kommas)</li>
|
70
99
|
<li><b>parent/id:</b> ID des übergeordneten Themenbereichs (für verwandte Ergebnisse). Optional</li>
|
71
100
|
<li><b>title/de:</b> Titel auf Deutsch. Dies wird von der Konfiguration ihrer Plattformsprachen abgängig sein.</li>
|
72
101
|
<li><b>description/de:</b> Beschreibung auf Deutsch. Dies wird von der Konfiguration ihrer Plattformsprachen abgängig sein.</li>
|
@@ -88,39 +117,52 @@ de:
|
|
88
117
|
name: Ergebnis
|
89
118
|
status:
|
90
119
|
name: Status
|
91
|
-
projects_import:
|
92
|
-
create:
|
93
|
-
invalid: Es gab ein Problem beim Importieren der Projekte in Ergebnisse, bitte befolgen Sie die Anweisungen sorgfältig und stellen Sie sicher, dass Sie Projekte für die Umsetzung ausgewählt haben.
|
94
|
-
new:
|
95
|
-
create: Importieren
|
96
|
-
import_all_selected_projects: Alle zur Umsetzung ausgewählten Projekte importieren
|
97
|
-
new_items:
|
98
|
-
one: 1 ausgewähltes Projekt wird importiert
|
99
|
-
other: "%{count} ausgewählte Projekte werden importiert"
|
100
|
-
no_components: Es gibt keine weiteren Budgetkomponenten in diesem Beteiligunsgbereich, um die Projekte in Ergebnisse zu importieren.
|
101
|
-
origin_component_id: Ursprungskomponente
|
102
|
-
select_component: Komponente auswählen
|
103
|
-
success:
|
104
|
-
one: Ein Projekt wird importiert. Sie werden per E-Mail benachrichtigt, sobald der Import abgeschlossen ist.
|
105
|
-
other: "%{count} Projekte werden in der Warteschlange importiert. Sie werden per E-Mail benachrichtigt, sobald sie abgeschlossen sind."
|
106
|
-
title: Projekte aus einer anderen Komponente importieren
|
107
120
|
results:
|
121
|
+
bulk_actions:
|
122
|
+
dates_form:
|
123
|
+
change_dates: Datum ändern
|
124
|
+
end_date: Enddatum
|
125
|
+
start_date: Startdatum
|
126
|
+
dropdown:
|
127
|
+
actions: Aktionen
|
128
|
+
change_dates: Daten ändern
|
129
|
+
change_status: Status ändern
|
130
|
+
change_taxonomies: Klassifizierungen ändern
|
131
|
+
status_form:
|
132
|
+
change_status: Status ändern
|
133
|
+
status: Status
|
134
|
+
submit_buttons:
|
135
|
+
cancel: Abbrechen
|
136
|
+
taxonomies_form:
|
137
|
+
change_taxonomies: Klassifizierungen ändern
|
108
138
|
create:
|
109
139
|
invalid: Beim Erstellen dieses Ergebnisses ist ein Problem aufgetreten.
|
110
140
|
success: Ergebnis erfolgreich erstellt.
|
111
|
-
destroy:
|
112
|
-
success: Ergebnis erfolgreich gelöscht.
|
113
141
|
edit:
|
114
142
|
title: Ergebnis bearbeiten
|
115
143
|
update: Ergebnis aktualisieren
|
116
144
|
index:
|
145
|
+
selected: Ausgewählt
|
117
146
|
title: Ergebnisse
|
147
|
+
manage_trash:
|
148
|
+
title: Gelöschte Ergebnisse
|
118
149
|
new:
|
119
150
|
create: Ergebnis erstellen
|
120
151
|
title: Neues Ergebnis
|
121
152
|
update:
|
122
153
|
invalid: Beim Aktualisieren dieses Ergebnisses ist ein Problem aufgetreten.
|
123
154
|
success: Ergebnis erfolgreich aktualisiert.
|
155
|
+
update_dates:
|
156
|
+
invalid: Bei der Aktualisierung der Ergebnisdaten ist ein Problem aufgetreten
|
157
|
+
success: Ergebnisdaten erfolgreich aktualisiert
|
158
|
+
update_status:
|
159
|
+
invalid: Bei der Aktualisierung des Ergebnisstatus ist ein Problem aufgetreten
|
160
|
+
success: Ergebnisstatus erfolgreich aktualisiert
|
161
|
+
update_taxonomies:
|
162
|
+
invalid: Die Klassifizierungen %{taxonomies} für Ergebnisse %{results} konnten nicht aktualisiert werden
|
163
|
+
select_a_result: Ein Ergebnis auswählen
|
164
|
+
select_a_taxonomy: Klassifizierung auswählen
|
165
|
+
success: Klassifizierung %{taxonomies} für Ergebnisse %{results} erfolgreich aktualisiert
|
124
166
|
shared:
|
125
167
|
subnav:
|
126
168
|
statuses: Status
|
@@ -162,6 +204,8 @@ de:
|
|
162
204
|
result:
|
163
205
|
create: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} erstellt"
|
164
206
|
delete: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} gelöscht"
|
207
|
+
restore: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} wiederhergestellt"
|
208
|
+
soft_delete: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} in den Papierkorb verschoben"
|
165
209
|
update: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} aktualisiert"
|
166
210
|
status:
|
167
211
|
create: "%{user_name} hat den Status %{resource_name} erstellt"
|
@@ -177,6 +221,8 @@ de:
|
|
177
221
|
content_blocks:
|
178
222
|
highlighted_results:
|
179
223
|
results: Ergebnisse
|
224
|
+
creation:
|
225
|
+
text: Das Ergebnis wurde erstellt
|
180
226
|
import_mailer:
|
181
227
|
import:
|
182
228
|
errors: Fehler
|
@@ -191,19 +237,25 @@ de:
|
|
191
237
|
other: "%{count} Ergebnisse wurden aus Projekten importiert."
|
192
238
|
subject: Projekte wurden erfolgreich importiert
|
193
239
|
success: Projekte wurden erfolgreich in die Ergebnisse der %{component_name}-Komponente importiert. Sie können die Ergebnisse in der Administrationsoberfläche überprüfen.
|
240
|
+
import_proposals_mailer:
|
241
|
+
import:
|
242
|
+
added_proposals:
|
243
|
+
one: Ein Ergebnis wurde aus Vorschlägen importiert
|
244
|
+
other: "%{count} Ergebnisse wurden aus Vorschlägen importiert."
|
245
|
+
subject: Erfolgreicher Import von Vorschlägen
|
246
|
+
success: Vorschläge erfolgreich zu den Ergebnissen in der Komponente %{component_name} importiert. Sie können die Ergebnisse im Administrationsbereich überprüfen.
|
194
247
|
last_activity:
|
195
248
|
new_result: 'Neues Ergebnis:'
|
196
249
|
models:
|
197
250
|
result:
|
198
251
|
fields:
|
199
|
-
category: Kategorie
|
200
252
|
created_at: Erstellt am
|
201
253
|
end_date: Enddatum
|
202
254
|
id: ID
|
203
255
|
progress: Fortschritt
|
204
|
-
scope: Umfang
|
205
256
|
start_date: Startdatum
|
206
257
|
status: Status
|
258
|
+
taxonomies: Klassifizierungen
|
207
259
|
title: Titel
|
208
260
|
status:
|
209
261
|
fields:
|
@@ -220,17 +272,11 @@ de:
|
|
220
272
|
results_count:
|
221
273
|
one: 1 Ergebnis
|
222
274
|
other: "%{count} Ergebnisse"
|
223
|
-
filters:
|
224
|
-
all: Alle
|
225
275
|
home:
|
226
|
-
categories_label: Kategorien
|
227
276
|
empty: Es liegen noch keine Ergebnisse vor.
|
228
277
|
empty_filters: Es liegen noch keine Ergebnisse mit diesen Kriterien vor.
|
229
|
-
subcategories_label: Unterkategorien
|
230
278
|
home_header:
|
231
279
|
global_status: Globaler Umsetzungsstatus
|
232
|
-
nav_breadcrumb:
|
233
|
-
global: Globale Ausführung
|
234
280
|
no_results: Es gibt keine Projekte
|
235
281
|
search:
|
236
282
|
search: Suche nach Aktionen
|
@@ -242,12 +288,10 @@ de:
|
|
242
288
|
admin:
|
243
289
|
filters:
|
244
290
|
results:
|
245
|
-
category_id_eq:
|
246
|
-
label: Kategorie
|
247
|
-
scope_id_eq:
|
248
|
-
label: Umfang
|
249
291
|
status_id_eq:
|
250
292
|
label: Status
|
293
|
+
taxonomies_part_of_contains:
|
294
|
+
label: Klassifizierung
|
251
295
|
components:
|
252
296
|
accountability:
|
253
297
|
actions:
|
@@ -255,14 +299,22 @@ de:
|
|
255
299
|
name: Rechenschaftspflicht
|
256
300
|
settings:
|
257
301
|
global:
|
302
|
+
clear_all: Alles löschen
|
258
303
|
comments_enabled: Kommentare aktiviert
|
259
304
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
305
|
+
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
260
306
|
display_progress_enabled: Fortschritt anzeigen
|
307
|
+
geocoding_enabled: Karten aktiviert
|
261
308
|
intro: Einführung
|
262
|
-
|
263
|
-
|
309
|
+
no_taxonomy_filters_found: Keine Klassifizierungsfilter gefunden.
|
310
|
+
taxonomy_filters: Filter für die Komponente auswählen
|
311
|
+
taxonomy_filters_add: Filter hinzufügen
|
264
312
|
step:
|
265
313
|
comments_blocked: Kommentare blockiert
|
314
|
+
download_your_data:
|
315
|
+
show:
|
316
|
+
result_comments: Kommentare zu Ergebnissen exportieren
|
317
|
+
results: Ergebnisse exportieren
|
266
318
|
events:
|
267
319
|
accountability:
|
268
320
|
proposal_linked:
|
@@ -280,6 +332,41 @@ de:
|
|
280
332
|
description: Anzahl der generierten Ergebnisse
|
281
333
|
object: Ergebnisse
|
282
334
|
title: Ergebnisse
|
335
|
+
open_data:
|
336
|
+
help:
|
337
|
+
result_comments:
|
338
|
+
alignment: Ob dieser Kommentar zustimmend, ablehnend oder neutral war
|
339
|
+
author: Der Name des Teilnehmers, der diesen Kommentar erstellt hat
|
340
|
+
body: Der Kommentar selbst
|
341
|
+
commentable_id: Die eindeutige ID des kommentierten Objekts
|
342
|
+
commentable_type: Die Art des kommentierten Objekts (ob es ein Ergebnis, Vorschlag o.ä. war)
|
343
|
+
created_at: Das Erstellungsdatum des Kommentars
|
344
|
+
depth: Die Position dieses Kommentars im Thread (ob es sich um eine Antwort oder eine Antwort auf eine Antwort handelt).
|
345
|
+
id: Die ID dieses Kommentars
|
346
|
+
locale: Die eingestellte Plattformsprache der kommentierenden Person
|
347
|
+
root_commentable_url: Die URL der mit dem Kommentar verbundenen Ressource
|
348
|
+
user_group: Der Name der Gruppe, die diesen Kommentar erstellt hat (falls vorhanden)
|
349
|
+
results:
|
350
|
+
address: Projektadresse (falls vorhanden)
|
351
|
+
children_count: Die Anzahl der Teilergebnisse
|
352
|
+
comments_count: Die Anzahl der Kommentare zu diesem Ergebnis
|
353
|
+
component: Komponente, zu der das Ergebnis gehört
|
354
|
+
created_at: Das Erstellungsdatum des Ergebnisses
|
355
|
+
description: Die Beschreibung des Ergebnisses
|
356
|
+
end_date: Das Datum, an dem das Ergebnis umgesetzt und beendet ist
|
357
|
+
id: Die eindeutige Bezeichnung des Ergebnisses
|
358
|
+
latitude: Der Breitengrad des Ergebnisses, falls es einen verortet wurde
|
359
|
+
longitude: Der Längengrad des Ergebnisses, falls es verortet wurde
|
360
|
+
parent: Das übergeordnete Ergebnis (falls vorhanden) des Ergebnisses
|
361
|
+
progress: Der Prozentsatz der Umsetzung des Ergebnisses
|
362
|
+
proposal_urls: Die URLs der Vorschläge, die in diesem Ergebnis enthalten sind
|
363
|
+
reference: Die eindeutige Referenz des Ergebnisses
|
364
|
+
start_date: Das Datum, an dem das Ergebnis mit der Umsetzung beginnt
|
365
|
+
status: Der aktuelle Status dieses Ergebnisses
|
366
|
+
taxonomies: Die Klassifizierungen des Ergebnisses
|
367
|
+
title: Der Titel des Ergebnisses
|
368
|
+
updated_at: Letztes Aktualisierungsdatum dieses Ergebnisses
|
369
|
+
url: Die URL, unter der dieses Ergebnis gefunden werden kann
|
283
370
|
participatory_spaces:
|
284
371
|
highlighted_results:
|
285
372
|
see_all: Alle Ergebnisse ansehen (%{count})
|
data/config/locales/el.yml
CHANGED
@@ -8,10 +8,7 @@ el:
|
|
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: Ενημερώθηκε στις
|
@@ -51,27 +48,6 @@ el:
|
|
51
48
|
new:
|
52
49
|
download_export: Κατεβάστε την εξαγωγή με μορφή CSV
|
53
50
|
import: Εισαγωγή
|
54
|
-
info: |
|
55
|
-
<p>Συνιστούμε να ακολουθήσετε αυτά τα βήματα:</p>
|
56
|
-
<ol>
|
57
|
-
<li><a href='%{link_new_status}' target='_blank'>Δημιουργήστε τις Καταστάσεις για τα Αποτελέσματα</a> που θέλετε να προσθέσετε</li>
|
58
|
-
<li><a href='%{link_new_result}' target='_blank'>Δημιουργήστε τουλάχιστον ένα Αποτέλεσμα χειροκίνητα</a> μέσω αυτού του πάνελ Διαχειριστή πριν χρησιμοποιήσετε την εισαγωγή, για την καλύτερη κατανόηση της μορφής και του τι θα χρειαστεί να συμπληρώσετε.</li>
|
59
|
-
<li>%{link_export_csv}</li>
|
60
|
-
<li>Κάντε τις αλλαγές τοπικά. Μπορείτε να αλλάξετε μόνο τις ακόλουθες στήλες του CSV:
|
61
|
-
<ul>
|
62
|
-
<li><b>category/id:</b> ID για την Κατηγορία</li>
|
63
|
-
<li><b>scope/id:</b> ID για το πεδίο εφαρμογής</li>
|
64
|
-
<li><b>parent/id:</b> ID του γονέα (για τα σχετικά Αποτελέσματα). Προαιρετικό</li>
|
65
|
-
<li><b>title/en:</b> Τίτλος στην Αγγλική γλώσσα. Αυτό θα εξαρτηθεί από τις ρυθμίσεις της γλώσσας της πλατφόρμας σας.</li>
|
66
|
-
<li><b>description/en:</b> Περιγραφή στην Αγγλική γλώσσα. Αυτό θα εξαρτηθεί από τις ρυθμίσεις της γλώσσας της πλατφόρμας σας.</li>
|
67
|
-
<li><b>start_date:</b> Ημερομηνία έναρξης της εκτέλεσης του αποτελέσματος (μορφή ΕΕΕΕ-ΜΜ-ΗΗ)</li>
|
68
|
-
<li><b>end_date:</b> Ημερομηνία λήξης της εκτέλεσης του αποτελέσματος (μορφή ΕΕΕΕ-ΜΜ-ΗΗ)</li>
|
69
|
-
<li><b>status/id:</b> ID της Κατάστασης για αυτό το αποτέλεσμα</li>
|
70
|
-
<li><b>progress:</b> Ποσοστό (από 0 έως 100) της εκτέλεσης</li>
|
71
|
-
<li><b><b> proposals_ids:</b> εσωτερικά ID των σχετικών προτάσεων (χωρισμένα με κόμμα). Μετατρέπεται αυτόματα σε <span class='attribute-name'>proposal_url</span></li>
|
72
|
-
</ul>
|
73
|
-
</li>
|
74
|
-
</ol>
|
75
51
|
imports:
|
76
52
|
create:
|
77
53
|
success: Η εισαγωγή του αρχείου ξεκίνησε. Μέσα στα επόμενα λεπτά θα λάβετε ένα email με το αποτέλεσμα της εισαγωγής.
|
@@ -80,22 +56,10 @@ el:
|
|
80
56
|
name: Αποτέλεσμα
|
81
57
|
status:
|
82
58
|
name: Κατάσταση
|
83
|
-
projects_import:
|
84
|
-
create:
|
85
|
-
invalid: Παρουσιάστηκε πρόβλημα κατά την εισαγωγή των έργων στα αποτελέσματα, παρακαλούμε να ακολουθήσετε προσεκτικά τις οδηγίες και να βεβαιωθείτε ότι έχετε επιλέξει έργα για υλοποίηση.
|
86
|
-
new:
|
87
|
-
create: Εισαγωγή
|
88
|
-
import_all_selected_projects: Εισαγωγή όλων των επιλεγμένων έργων για υλοποίηση
|
89
|
-
no_components: Δεν υπάρχουν άλλα στοιχεία προϋπολογισμού σε αυτόν τον χώρο συμμετοχής για εισαγωγή των έργων σε αποτελέσματα.
|
90
|
-
success:
|
91
|
-
one: 1 έργο στην ουρά για εισαγωγή. Θα ειδοποιηθείτε μέσω email μόλις ολοκληρωθεί.
|
92
|
-
other: "%{count} έργα στην ουρά για εισαγωγή. Θα ειδοποιηθείτε μέσω email μόλις ολοκληρωθεί."
|
93
59
|
results:
|
94
60
|
create:
|
95
61
|
invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτού του αποτελέσματος.
|
96
62
|
success: Το αποτέλεσμα δημιουργήθηκε με επιτυχία.
|
97
|
-
destroy:
|
98
|
-
success: Το αποτέλεσμα διαγράφηκε με επιτυχία.
|
99
63
|
edit:
|
100
64
|
title: Επεξεργασία αποτελέσματος
|
101
65
|
update: Ενημέρωση αποτελέσματος
|
@@ -182,12 +146,10 @@ el:
|
|
182
146
|
models:
|
183
147
|
result:
|
184
148
|
fields:
|
185
|
-
category: Κατηγορία
|
186
149
|
created_at: Δημιουργήθηκε
|
187
150
|
end_date: Ημερομηνία λήξης
|
188
151
|
id: Αναγνωριστικό ID
|
189
152
|
progress: Πρόοδος
|
190
|
-
scope: Πεδίο εφαρμογής
|
191
153
|
start_date: Ημερομηνία έναρξης
|
192
154
|
status: Κατάσταση
|
193
155
|
title: Τίτλος
|
@@ -206,12 +168,8 @@ el:
|
|
206
168
|
results_count:
|
207
169
|
one: 1 αποτέλεσμα
|
208
170
|
other: "%{count} αποτελέσματα"
|
209
|
-
filters:
|
210
|
-
all: Όλα
|
211
171
|
home_header:
|
212
172
|
global_status: Κατάσταση καθολικής εκτέλεσης
|
213
|
-
nav_breadcrumb:
|
214
|
-
global: Καθολική εκτέλεση
|
215
173
|
search:
|
216
174
|
search: Αναζήτηση ενεργειών
|
217
175
|
show:
|
@@ -222,10 +180,6 @@ el:
|
|
222
180
|
admin:
|
223
181
|
filters:
|
224
182
|
results:
|
225
|
-
category_id_eq:
|
226
|
-
label: Κατηγορία
|
227
|
-
scope_id_eq:
|
228
|
-
label: Πεδίο εφαρμογής
|
229
183
|
status_id_eq:
|
230
184
|
label: Κατάσταση
|
231
185
|
components:
|
@@ -239,8 +193,6 @@ el:
|
|
239
193
|
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
240
194
|
display_progress_enabled: Εμφάνιση προόδου
|
241
195
|
intro: Εισαγωγή
|
242
|
-
scope_id: Πεδίο εφαρμογής
|
243
|
-
scopes_enabled: Ενεργοποιημένα πεδία εφαρμογής
|
244
196
|
step:
|
245
197
|
comments_blocked: Τα σχόλια αποκλείστηκαν
|
246
198
|
events:
|