decidim-elections 0.22.0
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 +7 -0
- data/README.md +31 -0
- data/Rakefile +3 -0
- data/app/assets/config/decidim_elections_manifest.js +0 -0
- data/app/assets/images/decidim/elections/icon.svg +1 -0
- data/app/commands/decidim/elections/admin/create_answer.rb +71 -0
- data/app/commands/decidim/elections/admin/create_election.rb +48 -0
- data/app/commands/decidim/elections/admin/create_question.rb +52 -0
- data/app/commands/decidim/elections/admin/destroy_answer.rb +50 -0
- data/app/commands/decidim/elections/admin/destroy_election.rb +46 -0
- data/app/commands/decidim/elections/admin/destroy_question.rb +46 -0
- data/app/commands/decidim/elections/admin/update_answer.rb +73 -0
- data/app/commands/decidim/elections/admin/update_election.rb +48 -0
- data/app/commands/decidim/elections/admin/update_question.rb +52 -0
- data/app/controllers/decidim/elections/admin/answers_controller.rb +92 -0
- data/app/controllers/decidim/elections/admin/application_controller.rb +15 -0
- data/app/controllers/decidim/elections/admin/elections_controller.rb +82 -0
- data/app/controllers/decidim/elections/admin/questions_controller.rb +86 -0
- data/app/controllers/decidim/elections/application_controller.rb +13 -0
- data/app/controllers/decidim/elections/elections_controller.rb +9 -0
- data/app/forms/decidim/elections/admin/answer_form.rb +53 -0
- data/app/forms/decidim/elections/admin/election_form.rb +24 -0
- data/app/forms/decidim/elections/admin/question_form.rb +26 -0
- data/app/helpers/decidim/elections/application_helper.rb +10 -0
- data/app/models/decidim/elections/answer.rb +26 -0
- data/app/models/decidim/elections/application_record.rb +10 -0
- data/app/models/decidim/elections/election.rb +22 -0
- data/app/models/decidim/elections/question.rb +20 -0
- data/app/permissions/decidim/elections/admin/permissions.rb +42 -0
- data/app/permissions/decidim/elections/permissions.rb +16 -0
- data/app/types/decidim/elections/election_answer_type.rb +24 -0
- data/app/types/decidim/elections/election_question_type.rb +25 -0
- data/app/types/decidim/elections/election_type.rb +26 -0
- data/app/types/decidim/elections/elections_type.rb +32 -0
- data/app/views/decidim/elections/admin/answers/_form.html.erb +25 -0
- data/app/views/decidim/elections/admin/answers/edit.html.erb +7 -0
- data/app/views/decidim/elections/admin/answers/index.html.erb +46 -0
- data/app/views/decidim/elections/admin/answers/new.html.erb +7 -0
- data/app/views/decidim/elections/admin/answers/proposals_picker.html.erb +1 -0
- data/app/views/decidim/elections/admin/elections/_form.html.erb +28 -0
- data/app/views/decidim/elections/admin/elections/edit.html.erb +7 -0
- data/app/views/decidim/elections/admin/elections/index.html.erb +54 -0
- data/app/views/decidim/elections/admin/elections/new.html.erb +7 -0
- data/app/views/decidim/elections/admin/questions/_form.html.erb +27 -0
- data/app/views/decidim/elections/admin/questions/edit.html.erb +7 -0
- data/app/views/decidim/elections/admin/questions/index.html.erb +53 -0
- data/app/views/decidim/elections/admin/questions/new.html.erb +7 -0
- data/app/views/decidim/elections/elections/index.html.erb +1 -0
- data/app/views/decidim/elections/elections/show.html.erb +0 -0
- data/config/i18n-tasks.yml +10 -0
- data/config/locales/ar.yml +1 -0
- data/config/locales/bg-BG.yml +7 -0
- data/config/locales/ca.yml +132 -0
- data/config/locales/cs.yml +138 -0
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/de.yml +132 -0
- data/config/locales/el.yml +132 -0
- data/config/locales/en.yml +133 -0
- data/config/locales/eo-UY.yml +1 -0
- data/config/locales/es-MX.yml +132 -0
- data/config/locales/es-PY.yml +132 -0
- data/config/locales/es.yml +132 -0
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/eu.yml +1 -0
- data/config/locales/fi-plain.yml +132 -0
- data/config/locales/fi.yml +132 -0
- data/config/locales/fr-CA.yml +132 -0
- data/config/locales/fr.yml +132 -0
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +1 -0
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hu.yml +1 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +1 -0
- data/config/locales/it.yml +132 -0
- data/config/locales/ja-JP.yml +129 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lv-LV.yml +135 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/nl.yml +132 -0
- data/config/locales/no.yml +9 -0
- data/config/locales/pl.yml +138 -0
- data/config/locales/pt-BR.yml +1 -0
- data/config/locales/pt.yml +132 -0
- data/config/locales/ro-RO.yml +135 -0
- data/config/locales/ru.yml +1 -0
- data/config/locales/sk.yml +1 -0
- data/config/locales/sl.yml +5 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +132 -0
- data/config/locales/tr-TR.yml +1 -0
- data/config/locales/uk.yml +1 -0
- data/db/migrate/20200430083618_create_decidim_elections_elections.rb +15 -0
- data/db/migrate/20200518082327_create_decidim_elections_questions.rb +14 -0
- data/db/migrate/20200518084144_create_decidim_elections_answers.rb +12 -0
- data/lib/decidim/elections.rb +13 -0
- data/lib/decidim/elections/admin.rb +10 -0
- data/lib/decidim/elections/admin_engine.rb +29 -0
- data/lib/decidim/elections/component.rb +123 -0
- data/lib/decidim/elections/engine.rb +23 -0
- data/lib/decidim/elections/seeds/city.jpeg +0 -0
- data/lib/decidim/elections/test/factories.rb +52 -0
- data/lib/decidim/elections/version.rb +10 -0
- metadata +201 -0
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
el:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
description: Περιγραφή
|
|
6
|
+
image: Εικόνα
|
|
7
|
+
proposals: Σχετικές προτάσεις
|
|
8
|
+
title: Τίτλος
|
|
9
|
+
election:
|
|
10
|
+
description: Περιγραφή
|
|
11
|
+
end_time: Η ψηφοφορία λήγει στις
|
|
12
|
+
start_time: Η ψηφοφορία ξεκινά στις
|
|
13
|
+
subtitle: Υπότιτλος
|
|
14
|
+
title: Τίτλος
|
|
15
|
+
question:
|
|
16
|
+
description: Περιγραφή
|
|
17
|
+
max_selections: Μέγιστος αριθμός επιλογών
|
|
18
|
+
title: Τίτλος
|
|
19
|
+
errors:
|
|
20
|
+
models:
|
|
21
|
+
answer:
|
|
22
|
+
attributes:
|
|
23
|
+
attachment:
|
|
24
|
+
needs_to_be_reattached: Πρέπει να επισυναφθεί ξανά
|
|
25
|
+
activerecord:
|
|
26
|
+
models:
|
|
27
|
+
decidim/elections/answer:
|
|
28
|
+
one: Απάντηση
|
|
29
|
+
other: Απαντήσεις
|
|
30
|
+
decidim/elections/election:
|
|
31
|
+
one: Εκλογή
|
|
32
|
+
other: Εκλογές
|
|
33
|
+
decidim/elections/question:
|
|
34
|
+
one: Ερώτηση
|
|
35
|
+
other: Ερωτήσεις
|
|
36
|
+
decidim:
|
|
37
|
+
components:
|
|
38
|
+
elections:
|
|
39
|
+
name: Εκλογές
|
|
40
|
+
settings:
|
|
41
|
+
global:
|
|
42
|
+
announcement: Ανακοίνωση
|
|
43
|
+
step:
|
|
44
|
+
announcement: Ανακοίνωση
|
|
45
|
+
elections:
|
|
46
|
+
actions:
|
|
47
|
+
confirm_destroy: Είστε βέβαιοι;
|
|
48
|
+
destroy: Καταστροφή
|
|
49
|
+
edit: Επεξεργασία
|
|
50
|
+
new: Νέο όνομα %{name}
|
|
51
|
+
preview: Προεπισκόπηση
|
|
52
|
+
title: Ενέργειες
|
|
53
|
+
admin:
|
|
54
|
+
answers:
|
|
55
|
+
create:
|
|
56
|
+
invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της απάντησης
|
|
57
|
+
success: Η απάντηση δημιουργήθηκε με επιτυχία
|
|
58
|
+
destroy:
|
|
59
|
+
invalid: Υπήρξε ένα πρόβλημα κατά τη διαγραφή αυτής της απάντησης
|
|
60
|
+
success: Η απάντηση διαγράφηκε με επιτυχία
|
|
61
|
+
edit:
|
|
62
|
+
title: Επεξεργασία απάντησης
|
|
63
|
+
update: Ενημέρωση απάντησης
|
|
64
|
+
index:
|
|
65
|
+
title: Απαντήσεις
|
|
66
|
+
new:
|
|
67
|
+
create: Δημιουργία απάντησης
|
|
68
|
+
title: Νέα απάντηση
|
|
69
|
+
update:
|
|
70
|
+
invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της απάντησης
|
|
71
|
+
success: Η απάντηση ενημερώθηκε με επιτυχία
|
|
72
|
+
elections:
|
|
73
|
+
create:
|
|
74
|
+
invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της εκλογής
|
|
75
|
+
success: Η εκλογή δημιουργήθηκε με επιτυχία
|
|
76
|
+
destroy:
|
|
77
|
+
invalid: Υπήρξε ένα πρόβλημα κατά τη διαγραφή αυτής της εκλογής
|
|
78
|
+
success: Η εκλογή διαγράφηκε με επιτυχία
|
|
79
|
+
edit:
|
|
80
|
+
title: Επεξεργασία εκλογής
|
|
81
|
+
update: Ενημέρωση εκλογής
|
|
82
|
+
index:
|
|
83
|
+
title: Εκλογές
|
|
84
|
+
new:
|
|
85
|
+
create: Δημιουργία εκλογής
|
|
86
|
+
title: Νέα εκλογή
|
|
87
|
+
update:
|
|
88
|
+
invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της εκλογής
|
|
89
|
+
success: Η εκλογή ενημερώθηκε με επιτυχία
|
|
90
|
+
models:
|
|
91
|
+
answer:
|
|
92
|
+
name: Απάντηση
|
|
93
|
+
election:
|
|
94
|
+
name: Εκλογή
|
|
95
|
+
question:
|
|
96
|
+
name: Ερώτηση
|
|
97
|
+
questions:
|
|
98
|
+
create:
|
|
99
|
+
invalid: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της ερώτησης
|
|
100
|
+
success: Η ερώτηση δημιουργήθηκε με επιτυχία
|
|
101
|
+
destroy:
|
|
102
|
+
invalid: Υπήρξε ένα πρόβλημα κατά τη διαγραφή αυτής της ερώτησης
|
|
103
|
+
success: Η ερώτηση διαγράφηκε με επιτυχία
|
|
104
|
+
edit:
|
|
105
|
+
title: Επεξεργασία ερώτησης
|
|
106
|
+
update: Ενημέρωση ερώτησης
|
|
107
|
+
index:
|
|
108
|
+
title: Ερωτήσεις
|
|
109
|
+
new:
|
|
110
|
+
create: Δημιουργία ερώτησης
|
|
111
|
+
title: Νέα ερώτηση
|
|
112
|
+
update:
|
|
113
|
+
invalid: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτής της ερώτησης
|
|
114
|
+
success: Η ερώτηση ενημερώθηκε με επιτυχία
|
|
115
|
+
models:
|
|
116
|
+
answer:
|
|
117
|
+
fields:
|
|
118
|
+
proposals: Προτάσεις
|
|
119
|
+
title: Τίτλος
|
|
120
|
+
election:
|
|
121
|
+
fields:
|
|
122
|
+
end_time: Λήγει στις
|
|
123
|
+
start_time: Ξεκινά στις
|
|
124
|
+
title: Τίτλος
|
|
125
|
+
question:
|
|
126
|
+
fields:
|
|
127
|
+
answers: Απαντήσεις
|
|
128
|
+
max_selections: Μέγιστες επιλογές
|
|
129
|
+
title: Τίτλος
|
|
130
|
+
participatory_processes:
|
|
131
|
+
statistics:
|
|
132
|
+
elections_count: Εκλογές
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
---
|
|
2
|
+
en:
|
|
3
|
+
activemodel:
|
|
4
|
+
attributes:
|
|
5
|
+
answer:
|
|
6
|
+
description: Description
|
|
7
|
+
image: Image
|
|
8
|
+
proposals: Related proposals
|
|
9
|
+
title: Title
|
|
10
|
+
election:
|
|
11
|
+
description: Description
|
|
12
|
+
end_time: Voting ends at
|
|
13
|
+
start_time: Voting start at
|
|
14
|
+
subtitle: Subtitle
|
|
15
|
+
title: Title
|
|
16
|
+
question:
|
|
17
|
+
description: Description
|
|
18
|
+
max_selections: Maximum number of selections
|
|
19
|
+
title: Title
|
|
20
|
+
errors:
|
|
21
|
+
models:
|
|
22
|
+
answer:
|
|
23
|
+
attributes:
|
|
24
|
+
attachment:
|
|
25
|
+
needs_to_be_reattached: Needs to be reattached
|
|
26
|
+
activerecord:
|
|
27
|
+
models:
|
|
28
|
+
decidim/elections/answer:
|
|
29
|
+
one: Answer
|
|
30
|
+
other: Answers
|
|
31
|
+
decidim/elections/election:
|
|
32
|
+
one: Election
|
|
33
|
+
other: Elections
|
|
34
|
+
decidim/elections/question:
|
|
35
|
+
one: Question
|
|
36
|
+
other: Questions
|
|
37
|
+
decidim:
|
|
38
|
+
components:
|
|
39
|
+
elections:
|
|
40
|
+
name: Elections
|
|
41
|
+
settings:
|
|
42
|
+
global:
|
|
43
|
+
announcement: Announcement
|
|
44
|
+
step:
|
|
45
|
+
announcement: Announcement
|
|
46
|
+
elections:
|
|
47
|
+
actions:
|
|
48
|
+
confirm_destroy: Are you sure?
|
|
49
|
+
destroy: Destroy
|
|
50
|
+
edit: Edit
|
|
51
|
+
new: New %{name}
|
|
52
|
+
preview: Preview
|
|
53
|
+
title: Actions
|
|
54
|
+
admin:
|
|
55
|
+
answers:
|
|
56
|
+
create:
|
|
57
|
+
invalid: There was a problem creating this answer
|
|
58
|
+
success: Answer successfully created
|
|
59
|
+
destroy:
|
|
60
|
+
invalid: There was a problem deleting this answer
|
|
61
|
+
success: Answer successfully deleted
|
|
62
|
+
edit:
|
|
63
|
+
title: Edit answer
|
|
64
|
+
update: Update answer
|
|
65
|
+
index:
|
|
66
|
+
title: Answers
|
|
67
|
+
new:
|
|
68
|
+
create: Create answer
|
|
69
|
+
title: New answer
|
|
70
|
+
update:
|
|
71
|
+
invalid: There was a problem updating this answer
|
|
72
|
+
success: Answer successfully updated
|
|
73
|
+
elections:
|
|
74
|
+
create:
|
|
75
|
+
invalid: There was a problem creating this election
|
|
76
|
+
success: Election successfully created
|
|
77
|
+
destroy:
|
|
78
|
+
invalid: There was a problem deleting this election
|
|
79
|
+
success: Election successfully deleted
|
|
80
|
+
edit:
|
|
81
|
+
title: Edit election
|
|
82
|
+
update: Update election
|
|
83
|
+
index:
|
|
84
|
+
title: Elections
|
|
85
|
+
new:
|
|
86
|
+
create: Create election
|
|
87
|
+
title: New election
|
|
88
|
+
update:
|
|
89
|
+
invalid: There was a problem updating this election
|
|
90
|
+
success: Election successfully updated
|
|
91
|
+
models:
|
|
92
|
+
answer:
|
|
93
|
+
name: Answer
|
|
94
|
+
election:
|
|
95
|
+
name: Election
|
|
96
|
+
question:
|
|
97
|
+
name: Question
|
|
98
|
+
questions:
|
|
99
|
+
create:
|
|
100
|
+
invalid: There was a problem creating this question
|
|
101
|
+
success: Question successfully created
|
|
102
|
+
destroy:
|
|
103
|
+
invalid: There was a problem deleting this question
|
|
104
|
+
success: Question successfully deleted
|
|
105
|
+
edit:
|
|
106
|
+
title: Edit question
|
|
107
|
+
update: Update question
|
|
108
|
+
index:
|
|
109
|
+
title: Questions
|
|
110
|
+
new:
|
|
111
|
+
create: Create question
|
|
112
|
+
title: New question
|
|
113
|
+
update:
|
|
114
|
+
invalid: There was a problem updating this question
|
|
115
|
+
success: Question successfully updated
|
|
116
|
+
models:
|
|
117
|
+
answer:
|
|
118
|
+
fields:
|
|
119
|
+
proposals: Proposals
|
|
120
|
+
title: Title
|
|
121
|
+
election:
|
|
122
|
+
fields:
|
|
123
|
+
end_time: End at
|
|
124
|
+
start_time: Starts at
|
|
125
|
+
title: Title
|
|
126
|
+
question:
|
|
127
|
+
fields:
|
|
128
|
+
answers: Answers
|
|
129
|
+
max_selections: Max. selections
|
|
130
|
+
title: Title
|
|
131
|
+
participatory_processes:
|
|
132
|
+
statistics:
|
|
133
|
+
elections_count: Elections
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
eo:
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
es-MX:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
description: Descripción
|
|
6
|
+
image: Imagen
|
|
7
|
+
proposals: Propuestas relacionadas
|
|
8
|
+
title: Título
|
|
9
|
+
election:
|
|
10
|
+
description: Descripción
|
|
11
|
+
end_time: La votación termina en
|
|
12
|
+
start_time: La votación comienza a las
|
|
13
|
+
subtitle: Subtítulo
|
|
14
|
+
title: Título
|
|
15
|
+
question:
|
|
16
|
+
description: Descripción
|
|
17
|
+
max_selections: Número máximo de opciones
|
|
18
|
+
title: Título
|
|
19
|
+
errors:
|
|
20
|
+
models:
|
|
21
|
+
answer:
|
|
22
|
+
attributes:
|
|
23
|
+
attachment:
|
|
24
|
+
needs_to_be_reattached: Es necesario volver a adjuntar el archivo
|
|
25
|
+
activerecord:
|
|
26
|
+
models:
|
|
27
|
+
decidim/elections/answer:
|
|
28
|
+
one: Respuesta
|
|
29
|
+
other: Respuestas
|
|
30
|
+
decidim/elections/election:
|
|
31
|
+
one: Elección
|
|
32
|
+
other: Elecciones
|
|
33
|
+
decidim/elections/question:
|
|
34
|
+
one: Pregunta
|
|
35
|
+
other: Preguntas
|
|
36
|
+
decidim:
|
|
37
|
+
components:
|
|
38
|
+
elections:
|
|
39
|
+
name: Elecciones
|
|
40
|
+
settings:
|
|
41
|
+
global:
|
|
42
|
+
announcement: Aviso
|
|
43
|
+
step:
|
|
44
|
+
announcement: Aviso
|
|
45
|
+
elections:
|
|
46
|
+
actions:
|
|
47
|
+
confirm_destroy: '¿Seguro que quieres eliminar?'
|
|
48
|
+
destroy: Eliminar
|
|
49
|
+
edit: Modificar
|
|
50
|
+
new: Nuevo %{name}
|
|
51
|
+
preview: Vista previa
|
|
52
|
+
title: Acciones
|
|
53
|
+
admin:
|
|
54
|
+
answers:
|
|
55
|
+
create:
|
|
56
|
+
invalid: Se ha producido un error al crear esta respuesta
|
|
57
|
+
success: Respuesta creada con éxito
|
|
58
|
+
destroy:
|
|
59
|
+
invalid: Se ha producido un error al borrar esta respuesta
|
|
60
|
+
success: Respuesta creada con éxito
|
|
61
|
+
edit:
|
|
62
|
+
title: Editar las respuestas
|
|
63
|
+
update: Actualizar respuesta
|
|
64
|
+
index:
|
|
65
|
+
title: Respuestas
|
|
66
|
+
new:
|
|
67
|
+
create: Crear respuesta
|
|
68
|
+
title: Nueva respuesta
|
|
69
|
+
update:
|
|
70
|
+
invalid: Se ha producido un error al crear esta respuesta
|
|
71
|
+
success: Respuesta actualizada con éxito
|
|
72
|
+
elections:
|
|
73
|
+
create:
|
|
74
|
+
invalid: Se ha producido un error al guardar
|
|
75
|
+
success: Se ha creado la votación correctamente
|
|
76
|
+
destroy:
|
|
77
|
+
invalid: Se ha producido un error al crear esta votación
|
|
78
|
+
success: Se ha eliminado la votación correctamente
|
|
79
|
+
edit:
|
|
80
|
+
title: Editar la votación
|
|
81
|
+
update: Actualizar la votación
|
|
82
|
+
index:
|
|
83
|
+
title: Votaciones
|
|
84
|
+
new:
|
|
85
|
+
create: Crear una votación
|
|
86
|
+
title: Nueva votación
|
|
87
|
+
update:
|
|
88
|
+
invalid: Se ha producido un error al actualizar esta votación
|
|
89
|
+
success: Se ha actualizado la votación correctamente
|
|
90
|
+
models:
|
|
91
|
+
answer:
|
|
92
|
+
name: Respuesta
|
|
93
|
+
election:
|
|
94
|
+
name: Votación
|
|
95
|
+
question:
|
|
96
|
+
name: Pregunta
|
|
97
|
+
questions:
|
|
98
|
+
create:
|
|
99
|
+
invalid: Se ha producido un error al crear esta pregunta
|
|
100
|
+
success: Se ha creado la pregunta correctamente
|
|
101
|
+
destroy:
|
|
102
|
+
invalid: Se ha producido un error al eliminar esta pregunta
|
|
103
|
+
success: Se ha eliminado la pregunta correctamente
|
|
104
|
+
edit:
|
|
105
|
+
title: Editar la pregunta
|
|
106
|
+
update: Actualizar la pregunta
|
|
107
|
+
index:
|
|
108
|
+
title: Preguntas
|
|
109
|
+
new:
|
|
110
|
+
create: Crear una pregunta
|
|
111
|
+
title: Nueva pregunta
|
|
112
|
+
update:
|
|
113
|
+
invalid: Se ha producido un error al actualizar esta pregunta
|
|
114
|
+
success: La pregunta se ha actualizado correctamente
|
|
115
|
+
models:
|
|
116
|
+
answer:
|
|
117
|
+
fields:
|
|
118
|
+
proposals: Propuestas
|
|
119
|
+
title: Título
|
|
120
|
+
election:
|
|
121
|
+
fields:
|
|
122
|
+
end_time: Termina el
|
|
123
|
+
start_time: Empieza el
|
|
124
|
+
title: Título
|
|
125
|
+
question:
|
|
126
|
+
fields:
|
|
127
|
+
answers: Respuestas
|
|
128
|
+
max_selections: Número máximo de elementos a seleccionar
|
|
129
|
+
title: Título
|
|
130
|
+
participatory_processes:
|
|
131
|
+
statistics:
|
|
132
|
+
elections_count: Votaciones
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
es-PY:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
description: Descripción
|
|
6
|
+
image: Imagen
|
|
7
|
+
proposals: Propuestas relacionadas
|
|
8
|
+
title: Título
|
|
9
|
+
election:
|
|
10
|
+
description: Descripción
|
|
11
|
+
end_time: La votación acaba el
|
|
12
|
+
start_time: La votación empieza el
|
|
13
|
+
subtitle: Subtítulo
|
|
14
|
+
title: Título
|
|
15
|
+
question:
|
|
16
|
+
description: Descripción
|
|
17
|
+
max_selections: Número máximo de opciones
|
|
18
|
+
title: Título
|
|
19
|
+
errors:
|
|
20
|
+
models:
|
|
21
|
+
answer:
|
|
22
|
+
attributes:
|
|
23
|
+
attachment:
|
|
24
|
+
needs_to_be_reattached: Es necesario volver a adjuntar el archivo
|
|
25
|
+
activerecord:
|
|
26
|
+
models:
|
|
27
|
+
decidim/elections/answer:
|
|
28
|
+
one: Respuesta
|
|
29
|
+
other: Respuestas
|
|
30
|
+
decidim/elections/election:
|
|
31
|
+
one: Votación
|
|
32
|
+
other: Votaciones
|
|
33
|
+
decidim/elections/question:
|
|
34
|
+
one: Pregunta
|
|
35
|
+
other: Preguntas
|
|
36
|
+
decidim:
|
|
37
|
+
components:
|
|
38
|
+
elections:
|
|
39
|
+
name: Votaciones
|
|
40
|
+
settings:
|
|
41
|
+
global:
|
|
42
|
+
announcement: Aviso
|
|
43
|
+
step:
|
|
44
|
+
announcement: Aviso
|
|
45
|
+
elections:
|
|
46
|
+
actions:
|
|
47
|
+
confirm_destroy: '¿Estás segura?'
|
|
48
|
+
destroy: Destruir
|
|
49
|
+
edit: Editar
|
|
50
|
+
new: Nueva %{name}
|
|
51
|
+
preview: Previsualizar
|
|
52
|
+
title: Acciones
|
|
53
|
+
admin:
|
|
54
|
+
answers:
|
|
55
|
+
create:
|
|
56
|
+
invalid: Se ha producido un error al crear esta respuesta
|
|
57
|
+
success: Respuesta creada con éxito
|
|
58
|
+
destroy:
|
|
59
|
+
invalid: Se ha producido un error al borrar esta respuesta
|
|
60
|
+
success: Respuesta creada con éxito
|
|
61
|
+
edit:
|
|
62
|
+
title: Editar las respuestas
|
|
63
|
+
update: Actualizar respuesta
|
|
64
|
+
index:
|
|
65
|
+
title: Respuestas
|
|
66
|
+
new:
|
|
67
|
+
create: Crear respuesta
|
|
68
|
+
title: Nueva respuesta
|
|
69
|
+
update:
|
|
70
|
+
invalid: Se ha producido un error al crear esta respuesta
|
|
71
|
+
success: Respuesta actualizada con éxito
|
|
72
|
+
elections:
|
|
73
|
+
create:
|
|
74
|
+
invalid: Se ha producido un error al crear esta votación
|
|
75
|
+
success: Se ha creado la votación correctamente
|
|
76
|
+
destroy:
|
|
77
|
+
invalid: Se ha producido un error al crear esta votación
|
|
78
|
+
success: Se ha eliminado la votación correctamente
|
|
79
|
+
edit:
|
|
80
|
+
title: Editar la votación
|
|
81
|
+
update: Actualizar la votación
|
|
82
|
+
index:
|
|
83
|
+
title: Votaciones
|
|
84
|
+
new:
|
|
85
|
+
create: Crear una votación
|
|
86
|
+
title: Nueva votación
|
|
87
|
+
update:
|
|
88
|
+
invalid: Se ha producido un error al actualizar esta votación
|
|
89
|
+
success: Se ha actualizado la votación correctamente
|
|
90
|
+
models:
|
|
91
|
+
answer:
|
|
92
|
+
name: Respuesta
|
|
93
|
+
election:
|
|
94
|
+
name: Votación
|
|
95
|
+
question:
|
|
96
|
+
name: Pregunta
|
|
97
|
+
questions:
|
|
98
|
+
create:
|
|
99
|
+
invalid: Se ha producido un error al crear esta pregunta
|
|
100
|
+
success: Se ha creado la pregunta correctamente
|
|
101
|
+
destroy:
|
|
102
|
+
invalid: Se ha producido un error al eliminar esta pregunta
|
|
103
|
+
success: Se ha eliminado la pregunta correctamente
|
|
104
|
+
edit:
|
|
105
|
+
title: Editar la pregunta
|
|
106
|
+
update: Actualizar la pregunta
|
|
107
|
+
index:
|
|
108
|
+
title: Preguntas
|
|
109
|
+
new:
|
|
110
|
+
create: Crear una pregunta
|
|
111
|
+
title: Nueva pregunta
|
|
112
|
+
update:
|
|
113
|
+
invalid: Se ha producido un error al actualizar esta pregunta
|
|
114
|
+
success: La pregunta se ha actualizado correctamente
|
|
115
|
+
models:
|
|
116
|
+
answer:
|
|
117
|
+
fields:
|
|
118
|
+
proposals: Propuestas
|
|
119
|
+
title: Título
|
|
120
|
+
election:
|
|
121
|
+
fields:
|
|
122
|
+
end_time: Termina el
|
|
123
|
+
start_time: Empieza el
|
|
124
|
+
title: Título
|
|
125
|
+
question:
|
|
126
|
+
fields:
|
|
127
|
+
answers: Respuestas
|
|
128
|
+
max_selections: Número máximo de elementos a seleccionar
|
|
129
|
+
title: Título
|
|
130
|
+
participatory_processes:
|
|
131
|
+
statistics:
|
|
132
|
+
elections_count: Votaciones
|