decidim-accountability 0.27.9 → 0.28.0.rc4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/accountability/content_blocks/highlighted_results_cell.rb +3 -8
- data/app/cells/decidim/accountability/highlighted_results/show.erb +3 -1
- data/app/cells/decidim/accountability/highlighted_results_for_component/show.erb +19 -19
- data/app/cells/decidim/accountability/highlighted_results_for_component_cell.rb +29 -6
- data/app/cells/decidim/accountability/project/show.erb +11 -0
- data/app/cells/decidim/accountability/project/timeline.erb +22 -0
- data/app/cells/decidim/accountability/project_cell.rb +75 -0
- data/app/cells/decidim/accountability/result_activity_cell.rb +1 -4
- data/app/cells/decidim/accountability/result_card_cell.rb +21 -0
- data/app/cells/decidim/accountability/result_cell.rb +2 -2
- data/app/cells/decidim/accountability/result_l/extra_data.erb +3 -0
- data/app/cells/decidim/accountability/result_l_cell.rb +30 -0
- data/app/cells/decidim/accountability/result_metadata/project_aside.erb +6 -0
- data/app/cells/decidim/accountability/result_metadata/show_footer.erb +11 -0
- data/app/cells/decidim/accountability/result_metadata/versions.erb +1 -0
- data/app/cells/decidim/accountability/result_metadata_cell.rb +136 -0
- data/app/cells/decidim/accountability/results/show.erb +7 -0
- data/app/cells/decidim/accountability/results_cell.rb +14 -0
- data/app/cells/decidim/accountability/status/show.erb +9 -0
- data/app/cells/decidim/accountability/status/status.erb +16 -0
- data/app/cells/decidim/accountability/status_cell.rb +91 -0
- data/app/commands/decidim/accountability/admin/import_projects_to_accountability.rb +37 -0
- data/app/controllers/concerns/decidim/accountability/admin/filterable.rb +2 -2
- data/app/controllers/decidim/accountability/admin/import_results_controller.rb +18 -6
- data/app/controllers/decidim/accountability/admin/projects_import_controller.rb +31 -0
- data/app/controllers/decidim/accountability/admin/results_controller.rb +4 -5
- data/app/controllers/decidim/accountability/admin/statuses_controller.rb +3 -3
- data/app/controllers/decidim/accountability/admin/timeline_entries_controller.rb +3 -3
- data/app/controllers/decidim/accountability/results_controller.rb +20 -2
- data/app/events/decidim/accountability/proposal_linked_event.rb +18 -1
- data/app/events/decidim/accountability/result_progress_updated_event.rb +18 -2
- data/app/forms/decidim/accountability/admin/import_results_form.rb +22 -0
- data/app/forms/decidim/accountability/admin/result_import_projects_form.rb +51 -0
- data/app/helpers/decidim/accountability/admin/application_helper.rb +1 -0
- data/app/helpers/decidim/accountability/application_helper.rb +43 -2
- data/app/helpers/decidim/accountability/breadcrumb_helper.rb +10 -0
- data/app/jobs/decidim/accountability/admin/import_projects_job.rb +72 -0
- data/app/mailers/decidim/accountability/import_projects_mailer.rb +25 -0
- data/app/models/decidim/accountability/result.rb +1 -1
- data/app/packs/entrypoints/decidim_accountability.js +4 -1
- data/app/packs/entrypoints/decidim_accountability_admin_imports.js +3 -0
- data/app/packs/images/decidim/accountability/breadcrumb_arrow.svg +3 -0
- data/app/packs/src/decidim/accountability/admin/imports.js +15 -0
- data/app/packs/stylesheets/accountability.scss +169 -0
- data/app/permissions/decidim/accountability/admin/permissions.rb +17 -6
- data/app/presenters/decidim/accountability/admin_log/result_presenter.rb +2 -2
- data/app/presenters/decidim/accountability/admin_log/status_presenter.rb +2 -2
- data/app/presenters/decidim/accountability/admin_log/timeline_entry_presenter.rb +2 -2
- data/app/queries/decidim/accountability/metrics/results_metric_manage.rb +1 -1
- data/app/services/decidim/accountability/results_calculator.rb +1 -1
- data/app/services/decidim/accountability/results_csv_importer.rb +2 -2
- data/app/views/decidim/accountability/admin/import_results/new.html.erb +27 -23
- data/app/views/decidim/accountability/admin/projects_import/new.html.erb +45 -0
- data/app/views/decidim/accountability/admin/results/_form.html.erb +46 -46
- data/app/views/decidim/accountability/admin/results/edit.html.erb +18 -7
- data/app/views/decidim/accountability/admin/results/index.html.erb +102 -91
- data/app/views/decidim/accountability/admin/results/new.html.erb +18 -8
- data/app/views/decidim/accountability/admin/shared/_subnav.html.erb +1 -1
- data/app/views/decidim/accountability/admin/statuses/_form.html.erb +15 -17
- data/app/views/decidim/accountability/admin/statuses/edit.html.erb +16 -6
- data/app/views/decidim/accountability/admin/statuses/index.html.erb +33 -36
- data/app/views/decidim/accountability/admin/statuses/new.html.erb +16 -6
- data/app/views/decidim/accountability/admin/timeline_entries/_form.html.erb +12 -14
- data/app/views/decidim/accountability/admin/timeline_entries/edit.html.erb +17 -6
- data/app/views/decidim/accountability/admin/timeline_entries/index.html.erb +35 -34
- data/app/views/decidim/accountability/admin/timeline_entries/new.html.erb +17 -6
- data/app/views/decidim/accountability/import_projects_mailer/import.html.erb +2 -0
- data/app/views/decidim/accountability/results/_home_categories.html.erb +28 -73
- data/app/views/decidim/accountability/results/_linked_results.html.erb +3 -12
- data/app/views/decidim/accountability/results/_project.html.erb +29 -0
- data/app/views/decidim/accountability/results/_projects_aside.html.erb +40 -0
- data/app/views/decidim/accountability/results/_scope_filters.html.erb +27 -27
- data/app/views/decidim/accountability/results/_search.html.erb +15 -9
- data/app/views/decidim/accountability/results/_stats_box.html.erb +3 -3
- data/app/views/decidim/accountability/results/home.html.erb +34 -8
- data/app/views/decidim/accountability/results/index.html.erb +15 -15
- data/app/views/decidim/accountability/results/index.js.erb +3 -0
- data/app/views/decidim/accountability/results/show.html.erb +9 -10
- data/app/views/decidim/accountability/versions/show.html.erb +13 -10
- data/app/views/decidim/participatory_spaces/_result.html.erb +4 -4
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +23 -61
- data/config/locales/bg.yml +0 -96
- data/config/locales/ca.yml +54 -31
- data/config/locales/cs.yml +58 -29
- data/config/locales/da.yml +1 -36
- data/config/locales/de.yml +59 -36
- data/config/locales/el.yml +62 -29
- data/config/locales/en.yml +55 -31
- data/config/locales/es-MX.yml +52 -29
- data/config/locales/es-PY.yml +52 -29
- data/config/locales/es.yml +55 -32
- data/config/locales/eu.yml +53 -30
- data/config/locales/fi-plain.yml +51 -28
- data/config/locales/fi.yml +54 -31
- data/config/locales/fr-CA.yml +51 -28
- data/config/locales/fr.yml +52 -29
- data/config/locales/ga-IE.yml +0 -4
- data/config/locales/gl.yml +0 -41
- data/config/locales/hu.yml +41 -29
- data/config/locales/id-ID.yml +1 -30
- data/config/locales/is-IS.yml +0 -32
- data/config/locales/it.yml +0 -43
- data/config/locales/ja.yml +55 -39
- data/config/locales/kaa.yml +20 -1
- data/config/locales/ko.yml +0 -188
- data/config/locales/lb.yml +1 -42
- data/config/locales/lt.yml +60 -41
- data/config/locales/lv.yml +1 -36
- data/config/locales/nl.yml +0 -41
- data/config/locales/no.yml +8 -49
- data/config/locales/pl.yml +17 -61
- data/config/locales/pt-BR.yml +41 -29
- data/config/locales/pt.yml +0 -42
- data/config/locales/ro-RO.yml +39 -66
- data/config/locales/ru.yml +1 -30
- data/config/locales/si-LK.yml +0 -4
- data/config/locales/sk.yml +1 -40
- data/config/locales/sl.yml +0 -11
- data/config/locales/sq-AL.yml +82 -7
- data/config/locales/sr-CS.yml +1 -30
- data/config/locales/sv.yml +36 -51
- data/config/locales/th-TH.yml +0 -140
- data/config/locales/tr-TR.yml +9 -75
- data/config/locales/uk.yml +1 -28
- data/config/locales/zh-CN.yml +1 -36
- data/config/locales/zh-TW.yml +52 -43
- data/lib/decidim/accountability/admin_engine.rb +3 -2
- data/lib/decidim/accountability/component.rb +4 -99
- data/lib/decidim/accountability/engine.rb +9 -1
- data/lib/decidim/accountability/result_serializer.rb +1 -1
- data/lib/decidim/accountability/seeds.rb +115 -0
- data/lib/decidim/accountability/test/factories.rb +18 -29
- data/lib/decidim/accountability/version.rb +1 -1
- data/lib/decidim/api/result_type.rb +1 -0
- metadata +62 -51
- data/app/cells/decidim/accountability/content_blocks/highlighted_results/elements.erb +0 -5
- data/app/cells/decidim/accountability/content_blocks/highlighted_results/heading.erb +0 -1
- data/app/cells/decidim/accountability/result_m/data.erb +0 -23
- data/app/cells/decidim/accountability/result_m/footer.erb +0 -22
- data/app/cells/decidim/accountability/result_m/tags.erb +0 -1
- data/app/cells/decidim/accountability/result_m_cell.rb +0 -37
- data/app/events/decidim/accountability/base_result_event.rb +0 -29
- data/app/packs/stylesheets/decidim/accountability/_accountability.scss +0 -4
- data/app/packs/stylesheets/decidim/accountability/accountability/_cards.scss +0 -11
- data/app/packs/stylesheets/decidim/accountability/accountability/_categories.scss +0 -121
- data/app/packs/stylesheets/decidim/accountability/accountability/_lines_breadcrumb.scss +0 -37
- data/app/packs/stylesheets/decidim/accountability/accountability/_results.scss +0 -148
- data/app/views/decidim/accountability/admin/results/proposals_picker.html.erb +0 -1
- data/app/views/decidim/accountability/result_widgets/show.html.erb +0 -2
- data/app/views/decidim/accountability/results/_home_header.html.erb +0 -23
- data/app/views/decidim/accountability/results/_results_leaf.html.erb +0 -47
- data/app/views/decidim/accountability/results/_results_parent.html.erb +0 -32
- data/app/views/decidim/accountability/results/_show_leaf.html.erb +0 -81
- data/app/views/decidim/accountability/results/_show_parent.html.erb +0 -30
- data/app/views/decidim/accountability/results/_stats.html.erb +0 -15
- data/app/views/decidim/accountability/results/_timeline.html.erb +0 -30
- data/app/views/decidim/accountability/versions/index.html.erb +0 -12
- data/config/locales/he-IL.yml +0 -219
- data/decidim-accountability.gemspec +0 -38
data/config/locales/el.yml
CHANGED
@@ -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
|
-
|
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: Η εισαγωγή του αρχείου ξεκίνησε.
|
77
|
+
success: Η εισαγωγή του αρχείου ξεκίνησε. Μέσα στα επόμενα λεπτά θα λάβετε ένα email με το αποτέλεσμα της εισαγωγής.
|
59
78
|
models:
|
60
79
|
result:
|
61
80
|
name: Αποτέλεσμα
|
62
81
|
status:
|
63
82
|
name: Κατάσταση
|
64
|
-
|
65
|
-
|
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
|
-
|
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: Υποκατηγορίες
|
data/config/locales/en.yml
CHANGED
@@ -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
|
-
|
43
|
-
|
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
|
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
|
-
|
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
|
-
|
86
|
-
|
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
|
-
|
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
|
297
|
+
see_all: See all results
|
274
298
|
resource_links:
|
275
299
|
included_projects:
|
276
300
|
result_project: Projects included in this result
|
data/config/locales/es-MX.yml
CHANGED
@@ -8,6 +8,7 @@ es-MX:
|
|
8
8
|
decidim_scope_id: Ámbito
|
9
9
|
description: Descripción
|
10
10
|
end_date: Fin
|
11
|
+
meetings_ids: Encuentros relacionados
|
11
12
|
progress: Progreso
|
12
13
|
project_ids: Proyectos incluidos
|
13
14
|
proposals: Propuestas incluidas
|
@@ -39,8 +40,11 @@ es-MX:
|
|
39
40
|
confirm_destroy: '¿Está seguro de que quiere eliminar este %{name}?'
|
40
41
|
destroy: Borrar
|
41
42
|
edit: Editar
|
42
|
-
|
43
|
-
|
43
|
+
import: Importar proyectos desde otro componente
|
44
|
+
import_csv: Importar resultados desde un archivo CSV
|
45
|
+
new_result: Añadir resultado
|
46
|
+
new_status: Añadir estado
|
47
|
+
new_timeline_entry: Añadir entrada de la cronología
|
44
48
|
preview: Previsualizar
|
45
49
|
timeline_entries: Evolución del proyecto
|
46
50
|
title: Acciones
|
@@ -73,23 +77,38 @@ es-MX:
|
|
73
77
|
</ul>
|
74
78
|
</li>
|
75
79
|
</ol>
|
76
|
-
title:
|
80
|
+
title: Importar resultados desde un archivo CSV
|
77
81
|
imports:
|
78
82
|
create:
|
79
|
-
|
83
|
+
invalid: Ha habido un problema importando los resultados.
|
84
|
+
success: Se está importando el fichero. Recibirás un correo electrónico en los próximos minutos con el resultado de la importación.
|
80
85
|
models:
|
81
86
|
result:
|
82
87
|
name: Resultado
|
83
88
|
status:
|
84
89
|
name: Estado
|
85
|
-
|
86
|
-
|
90
|
+
projects_import:
|
91
|
+
create:
|
92
|
+
invalid: Hubo un problema al importar los proyectos como resultados, por favor, sigue las instrucciones cuidadosamente y asegúrate que has marcado los proyectos seleccionados para su implementación.
|
93
|
+
new:
|
94
|
+
create: Importar
|
95
|
+
import_all_selected_projects: Importar todos los proyectos seleccionados para ser implementados
|
96
|
+
new_items:
|
97
|
+
one: Se importará 1 proyecto seleccionado
|
98
|
+
other: "Se importarán %{count} proyectos seleccionados"
|
99
|
+
no_components: No hay ningún componente de presupuestos en este espacio de participación para importar los proyectos como resultados.
|
100
|
+
origin_component_id: Componente de origen
|
101
|
+
select_component: Selecciona un componente
|
102
|
+
success:
|
103
|
+
one: Hay un proyecto para ser importado. Se notificará por correo electrónico, cuando se complete la importación.
|
104
|
+
other: "Hay %{count} proyectos para ser importados. Se notificará por correo electrónico, cuando se complete la importación."
|
105
|
+
title: Importar proyectos desde otro componente
|
87
106
|
results:
|
88
107
|
create:
|
89
|
-
invalid:
|
90
|
-
success:
|
108
|
+
invalid: Se ha producido un error al crear este resultado.
|
109
|
+
success: Resultado creado correctamente.
|
91
110
|
destroy:
|
92
|
-
success:
|
111
|
+
success: Resultado eliminado correctamente.
|
93
112
|
edit:
|
94
113
|
title: Editar resultado
|
95
114
|
update: Actualizar resultado
|
@@ -99,17 +118,17 @@ es-MX:
|
|
99
118
|
create: Crear resultado
|
100
119
|
title: Nuevo resultado
|
101
120
|
update:
|
102
|
-
invalid:
|
103
|
-
success:
|
121
|
+
invalid: Se ha producido un error al actualizar este resultado.
|
122
|
+
success: Resultado actualizado correctamente.
|
104
123
|
shared:
|
105
124
|
subnav:
|
106
125
|
statuses: Estados
|
107
126
|
statuses:
|
108
127
|
create:
|
109
|
-
invalid:
|
110
|
-
success:
|
128
|
+
invalid: Se ha producido un error al crear este estado.
|
129
|
+
success: Estado creado correctamente.
|
111
130
|
destroy:
|
112
|
-
success:
|
131
|
+
success: Estado eliminado correctamente.
|
113
132
|
edit:
|
114
133
|
title: Editar estado
|
115
134
|
update: Actualizar estado
|
@@ -119,14 +138,14 @@ es-MX:
|
|
119
138
|
create: Crear estado
|
120
139
|
title: Nuevo estado
|
121
140
|
update:
|
122
|
-
invalid:
|
123
|
-
success:
|
141
|
+
invalid: Se ha producido un error al actualizar este estado.
|
142
|
+
success: Estado actualizado correctamente.
|
124
143
|
timeline_entries:
|
125
144
|
create:
|
126
|
-
invalid:
|
127
|
-
success:
|
145
|
+
invalid: Se ha producido un error al crear esta entrada.
|
146
|
+
success: Entrada creada correctamente.
|
128
147
|
destroy:
|
129
|
-
success:
|
148
|
+
success: Entrada eliminada correctamente.
|
130
149
|
edit:
|
131
150
|
title: Editar elemento
|
132
151
|
update: Actualizar elemento
|
@@ -136,8 +155,8 @@ es-MX:
|
|
136
155
|
create: Crear elemento
|
137
156
|
title: Nuevo elemento
|
138
157
|
update:
|
139
|
-
invalid:
|
140
|
-
success:
|
158
|
+
invalid: Se ha producido un error al actualizar esta entrada.
|
159
|
+
success: Entrada actualixadada correctamente.
|
141
160
|
admin_log:
|
142
161
|
result:
|
143
162
|
create: "%{user_name} creó el resultado %{resource_name} en %{space_name}"
|
@@ -156,18 +175,23 @@ es-MX:
|
|
156
175
|
not_found: 'El padre no se encontró en la base de datos (ID: %{id})'
|
157
176
|
content_blocks:
|
158
177
|
highlighted_results:
|
159
|
-
dates: Fechas
|
160
178
|
results: Resultados
|
161
|
-
unspecified: No especificado
|
162
179
|
import_mailer:
|
163
180
|
import:
|
164
181
|
errors: Errores
|
165
|
-
errors_present: Ha habido un problema importando los resultados
|
182
|
+
errors_present: Ha habido un problema importando los resultados.
|
166
183
|
row_number: Fila
|
167
184
|
subject: Los resultados se han importado correctamente
|
168
185
|
success: Los resultados se han importante correctamente. Puedes revisar los resultados a través del panel de administración.
|
186
|
+
import_projects_mailer:
|
187
|
+
import:
|
188
|
+
added_projects:
|
189
|
+
one: Se ha importado un resultado desde proyectos.
|
190
|
+
other: "Se han importado %{count} resultados desde proyectos."
|
191
|
+
subject: Los proyectos se han importado correctamente
|
192
|
+
success: Los proyectos importados como resultados con éxito al componente %{component_name}. Puedes revisar los resultados en el tablero de administración.
|
169
193
|
last_activity:
|
170
|
-
|
194
|
+
new_result: 'Nuevo resultado:'
|
171
195
|
models:
|
172
196
|
result:
|
173
197
|
fields:
|
@@ -190,9 +214,6 @@ es-MX:
|
|
190
214
|
fields:
|
191
215
|
entry_date: Fecha
|
192
216
|
title: Título
|
193
|
-
result_m:
|
194
|
-
executed: Ejecutado
|
195
|
-
view: Ver
|
196
217
|
results:
|
197
218
|
count:
|
198
219
|
results_count:
|
@@ -200,14 +221,16 @@ es-MX:
|
|
200
221
|
other: "%{count} resultados"
|
201
222
|
filters:
|
202
223
|
all: Todos
|
203
|
-
scopes: Ámbitos
|
204
224
|
home:
|
205
225
|
categories_label: Categorías
|
226
|
+
empty: Aún no hay ningún resultado.
|
227
|
+
empty_filters: No hay ningún resultado con este criterio.
|
206
228
|
subcategories_label: Subcategorías
|
207
229
|
home_header:
|
208
230
|
global_status: Estado de ejecución global
|
209
231
|
nav_breadcrumb:
|
210
232
|
global: Ejecución global
|
233
|
+
no_results: No hay proyectos
|
211
234
|
search:
|
212
235
|
search: Buscar actuaciones
|
213
236
|
show:
|