decidim-accountability 0.27.5 → 0.28.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +4 -4
  2. data/app/cells/decidim/accountability/content_blocks/highlighted_results_cell.rb +3 -8
  3. data/app/cells/decidim/accountability/highlighted_results/show.erb +3 -1
  4. data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +19 -19
  5. data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +29 -6
  6. data/app/cells/decidim/accountability/project/show.erb +11 -0
  7. data/app/cells/decidim/accountability/project/timeline.erb +22 -0
  8. data/app/cells/decidim/accountability/project_cell.rb +75 -0
  9. data/app/cells/decidim/accountability/result_activity_cell.rb +1 -4
  10. data/app/cells/decidim/accountability/result_card_cell.rb +21 -0
  11. data/app/cells/decidim/accountability/result_cell.rb +2 -2
  12. data/app/cells/decidim/accountability/result_l/extra_data.erb +3 -0
  13. data/app/cells/decidim/accountability/result_l_cell.rb +30 -0
  14. data/app/cells/decidim/accountability/result_metadata/project_aside.erb +6 -0
  15. data/app/cells/decidim/accountability/result_metadata/show_footer.erb +11 -0
  16. data/app/cells/decidim/accountability/result_metadata/versions.erb +1 -0
  17. data/app/cells/decidim/accountability/result_metadata_cell.rb +136 -0
  18. data/app/cells/decidim/accountability/results/show.erb +7 -0
  19. data/app/cells/decidim/accountability/results_cell.rb +14 -0
  20. data/app/cells/decidim/accountability/status/show.erb +9 -0
  21. data/app/cells/decidim/accountability/status/status.erb +16 -0
  22. data/app/cells/decidim/accountability/status_cell.rb +91 -0
  23. data/app/commands/decidim/accountability/admin/import_projects_to_accountability.rb +37 -0
  24. data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +2 -2
  25. data/app/controllers/decidim/accountability/admin/import_results_controller.rb +18 -6
  26. data/app/controllers/decidim/accountability/admin/projects_import_controller.rb +31 -0
  27. data/app/controllers/decidim/accountability/admin/results_controller.rb +4 -5
  28. data/app/controllers/decidim/accountability/admin/statuses_controller.rb +3 -3
  29. data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +3 -3
  30. data/app/controllers/decidim/accountability/results_controller.rb +20 -2
  31. data/app/forms/decidim/accountability/admin/import_results_form.rb +22 -0
  32. data/app/forms/decidim/accountability/admin/result_import_projects_form.rb +51 -0
  33. data/app/helpers/decidim/accountability/admin/application_helper.rb +1 -0
  34. data/app/helpers/decidim/accountability/application_helper.rb +43 -2
  35. data/app/helpers/decidim/accountability/breadcrumb_helper.rb +10 -0
  36. data/app/jobs/decidim/accountability/admin/import_projects_job.rb +72 -0
  37. data/app/mailers/decidim/accountability/import_projects_mailer.rb +25 -0
  38. data/app/models/decidim/accountability/result.rb +1 -1
  39. data/app/packs/entrypoints/decidim_accountability.js +4 -1
  40. data/app/packs/entrypoints/decidim_accountability_admin_imports.js +3 -0
  41. data/app/packs/images/decidim/accountability/breadcrumb_arrow.svg +3 -0
  42. data/app/packs/src/decidim/accountability/admin/imports.js +15 -0
  43. data/app/packs/stylesheets/accountability.scss +169 -0
  44. data/app/permissions/decidim/accountability/admin/permissions.rb +17 -6
  45. data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +2 -2
  46. data/app/presenters/decidim/accountability/admin_log/status_presenter.rb +2 -2
  47. data/app/presenters/decidim/accountability/admin_log/timeline_entry_presenter.rb +2 -2
  48. data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +1 -1
  49. data/app/services/decidim/accountability/results_calculator.rb +1 -1
  50. data/app/services/decidim/accountability/results_csv_importer.rb +2 -2
  51. data/app/views/decidim/accountability/admin/import_results/new.html.erb +27 -23
  52. data/app/views/decidim/accountability/admin/projects_import/new.html.erb +45 -0
  53. data/app/views/decidim/accountability/admin/results/_form.html.erb +46 -46
  54. data/app/views/decidim/accountability/admin/results/edit.html.erb +18 -7
  55. data/app/views/decidim/accountability/admin/results/index.html.erb +102 -91
  56. data/app/views/decidim/accountability/admin/results/new.html.erb +18 -8
  57. data/app/views/decidim/accountability/admin/shared/_subnav.html.erb +1 -1
  58. data/app/views/decidim/accountability/admin/statuses/_form.html.erb +15 -17
  59. data/app/views/decidim/accountability/admin/statuses/edit.html.erb +16 -6
  60. data/app/views/decidim/accountability/admin/statuses/index.html.erb +33 -36
  61. data/app/views/decidim/accountability/admin/statuses/new.html.erb +16 -6
  62. data/app/views/decidim/accountability/admin/timeline_entries/_form.html.erb +12 -14
  63. data/app/views/decidim/accountability/admin/timeline_entries/edit.html.erb +17 -6
  64. data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +35 -34
  65. data/app/views/decidim/accountability/admin/timeline_entries/new.html.erb +17 -6
  66. data/app/views/decidim/accountability/import_projects_mailer/import.html.erb +2 -0
  67. data/app/views/decidim/accountability/results/_home_categories.html.erb +28 -73
  68. data/app/views/decidim/accountability/results/_linked_results.html.erb +3 -12
  69. data/app/views/decidim/accountability/results/_project.html.erb +29 -0
  70. data/app/views/decidim/accountability/results/_projects_aside.html.erb +40 -0
  71. data/app/views/decidim/accountability/results/_scope_filters.html.erb +27 -27
  72. data/app/views/decidim/accountability/results/_search.html.erb +15 -9
  73. data/app/views/decidim/accountability/results/_stats_box.html.erb +3 -3
  74. data/app/views/decidim/accountability/results/home.html.erb +34 -8
  75. data/app/views/decidim/accountability/results/index.html.erb +15 -15
  76. data/app/views/decidim/accountability/results/index.js.erb +3 -0
  77. data/app/views/decidim/accountability/results/show.html.erb +9 -10
  78. data/app/views/decidim/accountability/versions/show.html.erb +12 -9
  79. data/app/views/decidim/participatory_spaces/_result.html.erb +2 -2
  80. data/config/assets.rb +2 -2
  81. data/config/locales/ar.yml +22 -60
  82. data/config/locales/bg.yml +0 -36
  83. data/config/locales/ca.yml +53 -30
  84. data/config/locales/cs.yml +58 -29
  85. data/config/locales/da.yml +0 -36
  86. data/config/locales/de.yml +59 -36
  87. data/config/locales/el.yml +62 -29
  88. data/config/locales/en.yml +55 -31
  89. data/config/locales/es-MX.yml +52 -29
  90. data/config/locales/es-PY.yml +52 -29
  91. data/config/locales/es.yml +53 -30
  92. data/config/locales/eu.yml +53 -30
  93. data/config/locales/fi-plain.yml +51 -28
  94. data/config/locales/fi.yml +52 -29
  95. data/config/locales/fr-CA.yml +51 -28
  96. data/config/locales/fr.yml +52 -29
  97. data/config/locales/ga-IE.yml +0 -4
  98. data/config/locales/gl.yml +0 -41
  99. data/config/locales/hu.yml +41 -29
  100. data/config/locales/id-ID.yml +0 -30
  101. data/config/locales/is-IS.yml +0 -32
  102. data/config/locales/it.yml +0 -41
  103. data/config/locales/ja.yml +55 -39
  104. data/config/locales/kaa.yml +20 -1
  105. data/config/locales/ko.yml +0 -15
  106. data/config/locales/lb.yml +0 -41
  107. data/config/locales/lt.yml +60 -41
  108. data/config/locales/lv.yml +0 -36
  109. data/config/locales/nl.yml +0 -41
  110. data/config/locales/no.yml +8 -49
  111. data/config/locales/pl.yml +17 -40
  112. data/config/locales/pt-BR.yml +41 -29
  113. data/config/locales/pt.yml +0 -41
  114. data/config/locales/ro-RO.yml +14 -39
  115. data/config/locales/ru.yml +0 -30
  116. data/config/locales/si-LK.yml +0 -3
  117. data/config/locales/sk.yml +0 -40
  118. data/config/locales/sl.yml +0 -11
  119. data/config/locales/sq-AL.yml +82 -7
  120. data/config/locales/sr-CS.yml +0 -30
  121. data/config/locales/sv.yml +23 -38
  122. data/config/locales/tr-TR.yml +9 -62
  123. data/config/locales/uk.yml +0 -28
  124. data/config/locales/zh-CN.yml +0 -36
  125. data/config/locales/zh-TW.yml +52 -43
  126. data/lib/decidim/accountability/admin_engine.rb +3 -2
  127. data/lib/decidim/accountability/component.rb +4 -99
  128. data/lib/decidim/accountability/engine.rb +9 -1
  129. data/lib/decidim/accountability/result_serializer.rb +1 -1
  130. data/lib/decidim/accountability/seeds.rb +115 -0
  131. data/lib/decidim/accountability/test/factories.rb +3 -2
  132. data/lib/decidim/accountability/version.rb +1 -1
  133. metadata +61 -48
  134. data/app/cells/decidim/accountability/content_blocks/highlighted_results/elements.erb +0 -5
  135. data/app/cells/decidim/accountability/content_blocks/highlighted_results/heading.erb +0 -1
  136. data/app/cells/decidim/accountability/result_m/data.erb +0 -23
  137. data/app/cells/decidim/accountability/result_m/footer.erb +0 -22
  138. data/app/cells/decidim/accountability/result_m/tags.erb +0 -1
  139. data/app/cells/decidim/accountability/result_m_cell.rb +0 -37
  140. data/app/packs/stylesheets/decidim/accountability/_accountability.scss +0 -4
  141. data/app/packs/stylesheets/decidim/accountability/accountability/_cards.scss +0 -11
  142. data/app/packs/stylesheets/decidim/accountability/accountability/_categories.scss +0 -121
  143. data/app/packs/stylesheets/decidim/accountability/accountability/_lines_breadcrumb.scss +0 -37
  144. data/app/packs/stylesheets/decidim/accountability/accountability/_results.scss +0 -148
  145. data/app/views/decidim/accountability/admin/results/proposals_picker.html.erb +0 -1
  146. data/app/views/decidim/accountability/result_widgets/show.html.erb +0 -2
  147. data/app/views/decidim/accountability/results/_home_header.html.erb +0 -23
  148. data/app/views/decidim/accountability/results/_results_leaf.html.erb +0 -47
  149. data/app/views/decidim/accountability/results/_results_parent.html.erb +0 -32
  150. data/app/views/decidim/accountability/results/_show_leaf.html.erb +0 -81
  151. data/app/views/decidim/accountability/results/_show_parent.html.erb +0 -30
  152. data/app/views/decidim/accountability/results/_stats.html.erb +0 -15
  153. data/app/views/decidim/accountability/results/_timeline.html.erb +0 -30
  154. data/app/views/decidim/accountability/versions/index.html.erb +0 -12
  155. data/config/environment.rb +0 -3
@@ -8,6 +8,7 @@ de:
8
8
  decidim_scope_id: Umfang
9
9
  description: Beschreibung
10
10
  end_date: Enddatum
11
+ meetings_ids: Enthaltene Sitzungen
11
12
  progress: Fortschritt
12
13
  project_ids: Enthaltene Projekte
13
14
  proposals: Enthaltene Vorschläge
@@ -39,8 +40,11 @@ de:
39
40
  confirm_destroy: Sind Sie sicher, dass Sie diese %{name}löschen möchten?
40
41
  destroy: Löschen
41
42
  edit: Bearbeiten
42
- import_csv: CSV importieren
43
- new: Neu %{name}
43
+ import: Projekte aus einer anderen Komponente importieren
44
+ import_csv: Ergebnisse aus CSV importieren
45
+ new_result: Neues Ergebnis
46
+ new_status: Neuer Status
47
+ new_timeline_entry: Neuer Zeitachseneintrag
44
48
  preview: Vorschau
45
49
  timeline_entries: Projektentwicklung
46
50
  title: Aktionen
@@ -53,43 +57,58 @@ de:
53
57
  download_export: Export im CSV-Format herunterladen
54
58
  import: Importieren
55
59
  info: |
56
- <p>Wir empfehlen, dass Sie folgende Schritte befolgen:</p>
60
+ <p>Wir empfehlen, dass Sie die folgende Schritte befolgen:</p>
57
61
  <ol>
58
62
  <li><a href='%{link_new_status}' target='_blank'>Erstellen Sie den Status der Ergebnisse</a>, die Sie hinzufügen möchten</li>
59
63
  <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>
60
64
  <li>%{link_export_csv}</li>
61
- <li>Nehmen Sie Änderungen lokal vor. Sie können nur die folgenden Spalten des CSV ändern:
65
+ <li>Machen Sie Änderungen lokal. Sie können nur die folgenden Spalten des CSV ändern:
62
66
  <ul>
63
- <li><b>category/ID:</b> ID der Kategorie</li>
64
- <li><b>scope/ID:</b> ID des Themenbereichs</li>
65
- <li><b>parent/ID:</b> ID des übergeordneten Themenbereichs (für verwandte Ergebnisse). Optional</li>
67
+ <li><b>category/id:</b> ID der Kategorie</li>
68
+ <li><b>scope/id:</b> ID des Themenbereichs</li>
69
+ <li><b>parent/id:</b> ID des übergeordneten Themenbereichs (für verwandte Ergebnisse). Optional</li>
66
70
  <li><b>title/de:</b> Titel auf Deutsch. Dies wird von der Konfiguration ihrer Plattformsprachen abgängig sein.</li>
67
71
  <li><b>description/de:</b> Beschreibung auf Deutsch. Dies wird von der Konfiguration ihrer Plattformsprachen abgängig sein.</li>
68
72
  <li><b>start_date:</b> Datum, an dem die Umsetzung des Ergebnisses beginnt (Format JJJJ-MM-TT)</li>
69
- <li><b>end_date::</b> Datum, an dem die Umsetzung des Ergebnisses endet (Format JJJJ-MM-TT)</li>
70
- <li><b>status/ID:</b> ID des Status dieses Ergebnisses</li>
73
+ <li><b>end_date:</b> Datum, an dem die Umsetzung des Ergebnisses endet (Format JJJJ-MM-TT)</li>
74
+ <li><b>status/id:</b> ID des Status dieses Ergebnisses</li>
71
75
  <li><b>progress:</b> Prozentualer Fortschritt der Durchführung (von 0 bis 100)</li>
72
76
  <li><b>proposals_ids:</b> Interne ID der verwandten Vorschläge (kommagetrennt). Diese werden automatisch umgewandelt in <span class='attribute-name'>proposal_url</span></li>
73
77
  </ul>
74
78
  </li>
75
79
  </ol>
76
- title: Ergebnisse von CSV importieren
80
+ title: Ergebnisse aus CSV importieren
77
81
  imports:
78
82
  create:
79
- success: Die Datei wird importiert. Innerhalb von ein paar Minuten erhalten Sie eine E-Mail mit dem Importergebnis
83
+ invalid: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten.
84
+ success: Die Datei wird importiert. Innerhalb von ein paar Minuten erhalten Sie eine E-Mail mit dem Importergebnis.
80
85
  models:
81
86
  result:
82
87
  name: Ergebnis
83
88
  status:
84
89
  name: Status
85
- timeline_entry:
86
- name: Zeitachseneintrag
90
+ projects_import:
91
+ create:
92
+ 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.
93
+ new:
94
+ create: Importieren
95
+ import_all_selected_projects: Alle zur Umsetzung ausgewählten Projekte importieren
96
+ new_items:
97
+ one: 1 ausgewähltes Projekt wird importiert
98
+ other: "%{count} ausgewählte Projekte werden importiert"
99
+ no_components: Es gibt keine weiteren Budgetkomponenten in diesem partizipativen Raum, um die Projekte in Ergebnisse zu importieren.
100
+ origin_component_id: Ursprungskomponente
101
+ select_component: Komponente auswählen
102
+ success:
103
+ one: Ein Projekt wird importiert. Sie werden per E-Mail benachrichtigt, sobald der Import abgeschlossen ist.
104
+ other: "%{count} Projekte werden in der Warteschlange importiert. Sie werden per E-Mail benachrichtigt, sobald sie abgeschlossen sind."
105
+ title: Projekte aus einer anderen Komponente importieren
87
106
  results:
88
107
  create:
89
- invalid: Beim Erstellen dieses Ergebnisses ist ein Problem aufgetreten
90
- success: Ergebnis erfolgreich erstellt
108
+ invalid: Beim Erstellen dieses Ergebnisses ist ein Problem aufgetreten.
109
+ success: Ergebnis erfolgreich erstellt.
91
110
  destroy:
92
- success: Ergebnis erfolgreich gelöscht
111
+ success: Ergebnis erfolgreich gelöscht.
93
112
  edit:
94
113
  title: Ergebnis bearbeiten
95
114
  update: Ergebnis aktualisieren
@@ -99,17 +118,17 @@ de:
99
118
  create: Ergebnis erstellen
100
119
  title: Neues Ergebnis
101
120
  update:
102
- invalid: Beim Aktualisieren dieses Ergebnisses ist ein Problem aufgetreten
103
- success: Ergebnis erfolgreich aktualisiert
121
+ invalid: Beim Aktualisieren dieses Ergebnisses ist ein Problem aufgetreten.
122
+ success: Ergebnis erfolgreich aktualisiert.
104
123
  shared:
105
124
  subnav:
106
125
  statuses: Status
107
126
  statuses:
108
127
  create:
109
- invalid: Beim Erstellen dieses Status ist ein Problem aufgetreten
110
- success: Status erfolgreich erstellt
128
+ invalid: Beim Erstellen dieses Status ist ein Problem aufgetreten.
129
+ success: Status erfolgreich erstellt.
111
130
  destroy:
112
- success: Status erfolgreich gelöscht
131
+ success: Status erfolgreich gelöscht.
113
132
  edit:
114
133
  title: Status bearbeiten
115
134
  update: Update Status
@@ -119,14 +138,14 @@ de:
119
138
  create: Status erstellen
120
139
  title: Neuer Status
121
140
  update:
122
- invalid: Beim Aktualisieren dieses Status ist ein Problem aufgetreten
123
- success: Status erfolgreich aktualisiert
141
+ invalid: Beim Aktualisieren dieses Status ist ein Problem aufgetreten.
142
+ success: Status erfolgreich aktualisiert.
124
143
  timeline_entries:
125
144
  create:
126
- invalid: Beim Erstellen dieses Eintrags ist ein Problem aufgetreten
127
- success: Der Eintrag wurde erfolgreich erstellt
145
+ invalid: Beim Erstellen dieses Eintrags ist ein Problem aufgetreten.
146
+ success: Der Eintrag wurde erfolgreich erstellt.
128
147
  destroy:
129
- success: Der Eintrag wurde erfolgreich gelöscht
148
+ success: Der Eintrag wurde erfolgreich gelöscht.
130
149
  edit:
131
150
  title: Eintrag bearbeiten
132
151
  update: Eintrag aktualisieren
@@ -136,8 +155,8 @@ de:
136
155
  create: Eintrag erstellen
137
156
  title: Neuer Eintrag
138
157
  update:
139
- invalid: Beim Aktualisieren dieses Eintrags ist ein Problem aufgetreten
140
- success: Eintrag erfolgreich aktualisiert
158
+ invalid: Beim Aktualisieren dieses Eintrags ist ein Problem aufgetreten.
159
+ success: Eintrag erfolgreich aktualisiert.
141
160
  admin_log:
142
161
  result:
143
162
  create: "%{user_name} hat das Ergebnis %{resource_name} in %{space_name} erstellt"
@@ -156,18 +175,23 @@ de:
156
175
  not_found: 'Das übergeordnete Objekt wurde nicht in der Datenbank gefunden (ID: %{id})'
157
176
  content_blocks:
158
177
  highlighted_results:
159
- dates: Daten
160
178
  results: Ergebnisse
161
- unspecified: Keine Angabe
162
179
  import_mailer:
163
180
  import:
164
181
  errors: Fehler
165
- errors_present: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten
182
+ errors_present: Beim Importieren der Ergebnisse ist ein Fehler aufgetreten.
166
183
  row_number: Zeile
167
184
  subject: Ergebnisse wurden erfolgreich importiert
168
185
  success: Ergebnisse wurden erfolgreich importiert. Sie können die Ergebnisse über die Administrationsoberfläche aufrufen.
186
+ import_projects_mailer:
187
+ import:
188
+ added_projects:
189
+ one: Ein Ergebnis wurde aus Projekten importiert.
190
+ other: "%{count} Ergebnisse wurden aus Projekten importiert."
191
+ subject: Projekte wurden erfolgreich importiert
192
+ success: Projekte wurden erfolgreich in die Ergebnisse der %{component_name}-Komponente importiert. Sie können die Ergebnisse in der Administrationsoberfläche überprüfen.
169
193
  last_activity:
170
- new_result_at_html: "<span>Neues Ergebnis bei %{link}</span>"
194
+ new_result: 'Neues Ergebnis:'
171
195
  models:
172
196
  result:
173
197
  fields:
@@ -190,9 +214,6 @@ de:
190
214
  fields:
191
215
  entry_date: Datum
192
216
  title: Titel
193
- result_m:
194
- executed: Ausgeführt
195
- view: Ansicht
196
217
  results:
197
218
  count:
198
219
  results_count:
@@ -200,14 +221,16 @@ de:
200
221
  other: "%{count} Ergebnisse"
201
222
  filters:
202
223
  all: Alle
203
- scopes: Bereiche
204
224
  home:
205
225
  categories_label: Kategorien
226
+ empty: Es liegen noch keine Ergebnisse vor.
227
+ empty_filters: Es liegen noch keine Ergebnisse mit diesen Kriterien vor.
206
228
  subcategories_label: Unterkategorien
207
229
  home_header:
208
230
  global_status: Globaler Umsetzungsstatus
209
231
  nav_breadcrumb:
210
232
  global: Globale Ausführung
233
+ no_results: Es gibt keine Projekte
211
234
  search:
212
235
  search: Suche nach Aktionen
213
236
  show:
@@ -8,6 +8,7 @@ el:
8
8
  decidim_scope_id: Πεδίο εφαρμογής
9
9
  description: Περιγραφή
10
10
  end_date: Ημερομηνία λήξης
11
+ meetings_ids: Συμπεριλαμβανόμενες συναντήσεις
11
12
  progress: Πρόοδος
12
13
  project_ids: Έργα που περιλαμβάνονται
13
14
  proposals: Προτάσεις που περιλαμβάνονται
@@ -39,8 +40,6 @@ el:
39
40
  confirm_destroy: Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το όνομα %{name};
40
41
  destroy: Διαγραφή
41
42
  edit: Επεξεργασία
42
- import_csv: Εισαγωγή αρχείου CSV
43
- new: Νέο όνομα %{name}
44
43
  preview: Προεπισκόπηση
45
44
  timeline_entries: Εξέλιξη έργου
46
45
  title: Ενέργειες
@@ -52,23 +51,56 @@ el:
52
51
  new:
53
52
  download_export: Κατεβάστε την εξαγωγή με μορφή CSV
54
53
  import: Εισαγωγή
55
- title: Εισαγωγή αποτελεσμάτων από αρχείο CSV
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>
56
75
  imports:
57
76
  create:
58
- success: Η εισαγωγή του αρχείου ξεκίνησε. Θα λάβετε email στα επόμενα λεπτά με το αποτέλεσμα της εισαγωγής
77
+ success: Η εισαγωγή του αρχείου ξεκίνησε. Μέσα στα επόμενα λεπτά θα λάβετε ένα email με το αποτέλεσμα της εισαγωγής.
59
78
  models:
60
79
  result:
61
80
  name: Αποτέλεσμα
62
81
  status:
63
82
  name: Κατάσταση
64
- timeline_entry:
65
- name: Καταχώρηση χρονοδιαγράμματος
83
+ projects_import:
84
+ create:
85
+ invalid: Παρουσιάστηκε πρόβλημα κατά την εισαγωγή των έργων στα αποτελέσματα, παρακαλούμε να ακολουθήσετε προσεκτικά τις οδηγίες και να βεβαιωθείτε ότι έχετε επιλέξει έργα για υλοποίηση.
86
+ new:
87
+ create: Εισαγωγή
88
+ import_all_selected_projects: Εισαγωγή όλων των επιλεγμένων έργων για υλοποίηση
89
+ new_items:
90
+ one: 1 επιλεγμένο έργο θα εισαχθεί
91
+ other: "%{count} επιλεγμένα έργα θα εισαχθούν"
92
+ no_components: Δεν υπάρχουν άλλα στοιχεία προϋπολογισμού σε αυτόν τον χώρο συμμετοχής για εισαγωγή των έργων σε αποτελέσματα.
93
+ origin_component_id: Στοιχείο καταγωγής
94
+ select_component: Επιλέξτε ένα στοιχείο
95
+ success:
96
+ one: 1 έργο στην ουρά για εισαγωγή. Θα ειδοποιηθείτε μέσω email μόλις ολοκληρωθεί.
97
+ other: "%{count} έργα στην ουρά για εισαγωγή. Θα ειδοποιηθείτε μέσω email μόλις ολοκληρωθεί."
66
98
  results:
67
99
  create:
68
- invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτού του αποτελέσματος
69
- success: Το αποτέλεσμα δημιουργήθηκε με επιτυχία
100
+ invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτού του αποτελέσματος.
101
+ success: Το αποτέλεσμα δημιουργήθηκε με επιτυχία.
70
102
  destroy:
71
- success: Το αποτέλεσμα διαγράφηκε με επιτυχία
103
+ success: Το αποτέλεσμα διαγράφηκε με επιτυχία.
72
104
  edit:
73
105
  title: Επεξεργασία αποτελέσματος
74
106
  update: Ενημέρωση αποτελέσματος
@@ -78,17 +110,17 @@ el:
78
110
  create: Δημιουργία αποτελέσματος
79
111
  title: Νέο αποτέλεσμα
80
112
  update:
81
- invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του αποτελέσματος
82
- success: Το αποτέλεσμα ενημερώθηκε με επιτυχία
113
+ invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του αποτελέσματος.
114
+ success: Το αποτέλεσμα ενημερώθηκε με επιτυχία.
83
115
  shared:
84
116
  subnav:
85
117
  statuses: Καταστάσεις
86
118
  statuses:
87
119
  create:
88
- invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της κατάστασης
89
- success: Η κατάσταση δημιουργήθηκε με επιτυχία
120
+ invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της κατάστασης.
121
+ success: Η κατάσταση δημιουργήθηκε με επιτυχία.
90
122
  destroy:
91
- success: Η κατάσταση διαγράφηκε με επιτυχία
123
+ success: Η κατάσταση διαγράφηκε με επιτυχία.
92
124
  edit:
93
125
  title: Επεξεργασία κατάστασης
94
126
  update: Ενημέρωση κατάστασης
@@ -98,14 +130,14 @@ el:
98
130
  create: Δημιουργία κατάστασης
99
131
  title: Νέα κατάσταση
100
132
  update:
101
- invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της κατάστασης
102
- success: Η κατάσταση ενημερώθηκε με επιτυχία
133
+ invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της κατάστασης.
134
+ success: Η κατάσταση ενημερώθηκε με επιτυχία.
103
135
  timeline_entries:
104
136
  create:
105
- invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της καταχώρησης
106
- success: Η καταχώρηση δημιουργήθηκε με επιτυχία
137
+ invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της καταχώρησης.
138
+ success: Η καταχώρηση δημιουργήθηκε με επιτυχία.
107
139
  destroy:
108
- success: Η καταχώρηση διαγράφηκε με επιτυχία
140
+ success: Η καταχώριση διαγράφηκε με επιτυχία.
109
141
  edit:
110
142
  title: Επεξεργασία καταχώρησης
111
143
  update: Ενημέρωση καταχώρησης
@@ -115,8 +147,8 @@ el:
115
147
  create: Δημιουργία καταχώρησης
116
148
  title: Νέα καταχώρηση
117
149
  update:
118
- invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της καταχώρησης
119
- success: Η καταχώρηση ενημερώθηκε με επιτυχία
150
+ invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της καταχώρησης.
151
+ success: Η καταχώρηση ενημερώθηκε με επιτυχία.
120
152
  admin_log:
121
153
  result:
122
154
  create: "Ο χρήστης %{user_name} δημιούργησε το αποτέλεσμα %{resource_name} στον χώρο %{space_name}"
@@ -135,18 +167,23 @@ el:
135
167
  not_found: 'H γονική διαδικασία δεν βρέθηκε στη βάση δεδομένων (αναγνωριστικό: %{id})'
136
168
  content_blocks:
137
169
  highlighted_results:
138
- dates: Ημερομηνίες
139
170
  results: Αποτελέσματα
140
- unspecified: Δεν έχει καθοριστεί
141
171
  import_mailer:
142
172
  import:
143
173
  errors: Σφάλματα
144
- errors_present: Υπήρξε ένα πρόβλημα κατά την εισαγωγή αποτελεσμάτων
174
+ errors_present: Υπήρξε ένα πρόβλημα κατά την εισαγωγή αποτελεσμάτων.
145
175
  row_number: Γραμμή
146
176
  subject: Επιτυχής εισαγωγή αποτελεσμάτων
147
177
  success: Επιτυχής εισαγωγή αποτελεσμάτων. Μπορείτε να δείτε τα αποτελέσματα στο περιβάλλον διαχείρισης.
178
+ import_projects_mailer:
179
+ import:
180
+ added_projects:
181
+ one: Ένα αποτέλεσμα εισήχθη από τα έργα.
182
+ other: "%{count} αποτελέσματα εισήχθησαν από τα έργα."
183
+ subject: Επιτυχής εισαγωγή έργων
184
+ success: Επιτυχής εισαγωγή έργων στα αποτελέσματα στο στοιχείο %{component_name}. Μπορείτε να δείτε τα αποτελέσματα στη διεπαφή διαχείρισης.
148
185
  last_activity:
149
- new_result_at_html: "<span>Νέο αποτέλεσμα στο %{link}</span>"
186
+ new_result: 'Νέο αποτέλεσμα:'
150
187
  models:
151
188
  result:
152
189
  fields:
@@ -169,9 +206,6 @@ el:
169
206
  fields:
170
207
  entry_date: Ημερομηνία
171
208
  title: Τίτλος
172
- result_m:
173
- executed: Εκτελέσθηκε
174
- view: Προβολή
175
209
  results:
176
210
  count:
177
211
  results_count:
@@ -179,7 +213,6 @@ el:
179
213
  other: "%{count} αποτελέσματα"
180
214
  filters:
181
215
  all: Όλα
182
- scopes: Πεδία εφαρμογής
183
216
  home:
184
217
  categories_label: Κατηγορίες
185
218
  subcategories_label: Υποκατηγορίες
@@ -8,6 +8,7 @@ en:
8
8
  decidim_scope_id: Scope
9
9
  description: Description
10
10
  end_date: End date
11
+ meetings_ids: Included meetings
11
12
  progress: Progress
12
13
  project_ids: Included projects
13
14
  proposals: Included proposals
@@ -39,8 +40,11 @@ en:
39
40
  confirm_destroy: Are you sure you want to delete this %{name}?
40
41
  destroy: Delete
41
42
  edit: Edit
42
- import_csv: Import CSV
43
- new: New %{name}
43
+ import: Import projects from another component
44
+ import_csv: Import results from CSV file
45
+ new_result: New result
46
+ new_status: New status
47
+ new_timeline_entry: New timeline entry
44
48
  preview: Preview
45
49
  timeline_entries: Project evolution
46
50
  title: Actions
@@ -56,7 +60,7 @@ en:
56
60
  <p>We recommend that you follow these steps:</p>
57
61
  <ol>
58
62
  <li><a href='%{link_new_status}' target='_blank'>Create the Statuses for the Results</a> that you want to add</li>
59
- <li><a href='%{link_new_result}' target='_blank'>Create at least one Result manually</a> through this Admin panel before using Import, for having a better understanding of the format and what you'll need to fill out.</li>
63
+ <li><a href='%{link_new_result}' target='_blank'>Create at least one Result manually</a> through this Admin panel before using Import, for having a better understanding of the format and what you will need to fill out.</li>
60
64
  <li>%{link_export_csv}</li>
61
65
  <li>Make the changes locally. You can only change the following columns of the CSV:
62
66
  <ul>
@@ -73,23 +77,39 @@ en:
73
77
  </ul>
74
78
  </li>
75
79
  </ol>
76
- title: Import results from CSV
80
+ title: Import results from CSV file
77
81
  imports:
78
82
  create:
79
- success: The file has begun importing. You will receive an email in the next few minutes with the result of the import
83
+ invalid: There was a problem importing the results.
84
+ success: The file has begun importing. You will receive an email in the next few minutes with the result of the import.
80
85
  models:
81
86
  result:
82
87
  name: Result
83
88
  status:
84
89
  name: Status
85
- timeline_entry:
86
- name: Timeline entry
90
+ projects_import:
91
+ create:
92
+ invalid: There was a problem importing the projects into results, please follow the instructions carefully and make sure you have selected projects for implementation.
93
+ new:
94
+ create: Import
95
+ import_all_selected_projects: Import all projects selected for implementation
96
+ new_items:
97
+ one: 1 selected project will be imported
98
+ other: "%{count} selected projects will be imported"
99
+ zero: There are no selected projects in this origin component
100
+ no_components: There are no budgets components in this participatory space to import the projects into results.
101
+ origin_component_id: Origin component
102
+ select_component: Select a component
103
+ success:
104
+ one: 1 project queued to be imported. You will be notified by email, once completed.
105
+ other: "%{count} projects queued to be imported. You will be notified by email, once completed."
106
+ title: Import projects from another component
87
107
  results:
88
108
  create:
89
- invalid: There was a problem creating this result
90
- success: Result successfully created
109
+ invalid: There was a problem creating this result.
110
+ success: Result successfully created.
91
111
  destroy:
92
- success: Result successfully deleted
112
+ success: Result successfully deleted.
93
113
  edit:
94
114
  title: Edit result
95
115
  update: Update result
@@ -99,17 +119,17 @@ en:
99
119
  create: Create result
100
120
  title: New result
101
121
  update:
102
- invalid: There was a problem updating this result
103
- success: Result successfully updated
122
+ invalid: There was a problem updating this result.
123
+ success: Result successfully updated.
104
124
  shared:
105
125
  subnav:
106
126
  statuses: Statuses
107
127
  statuses:
108
128
  create:
109
- invalid: There was a problem creating this status
110
- success: Status successfully created
129
+ invalid: There was a problem creating this status.
130
+ success: Status successfully created.
111
131
  destroy:
112
- success: Status successfully deleted
132
+ success: Status successfully deleted.
113
133
  edit:
114
134
  title: Edit status
115
135
  update: Update status
@@ -119,14 +139,14 @@ en:
119
139
  create: Create status
120
140
  title: New status
121
141
  update:
122
- invalid: There was a problem updating this status
123
- success: Status successfully updated
142
+ invalid: There was a problem updating this status.
143
+ success: Status successfully updated.
124
144
  timeline_entries:
125
145
  create:
126
- invalid: There was a problem creating this entry
127
- success: Entry successfully created
146
+ invalid: There was a problem creating this entry.
147
+ success: Entry successfully created.
128
148
  destroy:
129
- success: Entry successfully deleted
149
+ success: Entry successfully deleted.
130
150
  edit:
131
151
  title: Edit entry
132
152
  update: Update entry
@@ -136,8 +156,8 @@ en:
136
156
  create: Create entry
137
157
  title: New entry
138
158
  update:
139
- invalid: There was a problem updating this entry
140
- success: Entry successfully updated
159
+ invalid: There was a problem updating this entry.
160
+ success: Entry successfully updated.
141
161
  admin_log:
142
162
  result:
143
163
  create: "%{user_name} created result %{resource_name} in %{space_name}"
@@ -156,18 +176,23 @@ en:
156
176
  not_found: 'The parent was not found on the database (ID: %{id})'
157
177
  content_blocks:
158
178
  highlighted_results:
159
- dates: Dates
160
179
  results: Results
161
- unspecified: Not specified
162
180
  import_mailer:
163
181
  import:
164
182
  errors: Errors
165
- errors_present: There was a problem importing results
183
+ errors_present: There was a problem importing results.
166
184
  row_number: Row
167
185
  subject: Successful import of results
168
186
  success: Successful import of results. You can review the results in the administration interface.
187
+ import_projects_mailer:
188
+ import:
189
+ added_projects:
190
+ one: One result was imported from projects.
191
+ other: "%{count} results were imported from projects."
192
+ subject: Successful import of projects
193
+ success: Successful imported projects to results in the %{component_name} component. You can review the results in the administration interface.
169
194
  last_activity:
170
- new_result_at_html: "<span>New result at %{link}</span>"
195
+ new_result: 'New result:'
171
196
  models:
172
197
  result:
173
198
  fields:
@@ -190,9 +215,6 @@ en:
190
215
  fields:
191
216
  entry_date: Date
192
217
  title: Title
193
- result_m:
194
- executed: Executed
195
- view: View
196
218
  results:
197
219
  count:
198
220
  results_count:
@@ -200,14 +222,16 @@ en:
200
222
  other: "%{count} results"
201
223
  filters:
202
224
  all: All
203
- scopes: Scopes
204
225
  home:
205
226
  categories_label: Categories
227
+ empty: There are no results yet.
228
+ empty_filters: There are no results with this criteria.
206
229
  subcategories_label: Subcategories
207
230
  home_header:
208
231
  global_status: Global execution status
209
232
  nav_breadcrumb:
210
233
  global: Global execution
234
+ no_results: There are no projects
211
235
  search:
212
236
  search: Search for actions
213
237
  show:
@@ -270,7 +294,7 @@ en:
270
294
  title: Results
271
295
  participatory_spaces:
272
296
  highlighted_results:
273
- see_all: See all results (%{count})
297
+ see_all: See all results
274
298
  resource_links:
275
299
  included_projects:
276
300
  result_project: Projects included in this result