decidim-elections 0.31.1 → 0.31.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/models/decidim/elections/election.rb +7 -5
- data/app/packs/entrypoints/decidim_elections.scss +2 -2
- data/app/packs/entrypoints/decidim_elections_admin.scss +1 -1
- data/app/packs/src/decidim/elections/admin/election_form.js +1 -0
- data/app/views/decidim/elections/admin/questions/_question.html.erb +2 -2
- data/app/views/decidim/elections/elections/index.html.erb +10 -7
- data/config/locales/bg.yml +6 -1
- data/config/locales/ca-IT.yml +6 -1
- data/config/locales/ca.yml +6 -1
- data/config/locales/cs.yml +23 -4
- data/config/locales/de.yml +6 -1
- data/config/locales/el.yml +5 -0
- data/config/locales/en.yml +5 -0
- data/config/locales/es-MX.yml +5 -0
- data/config/locales/es-PY.yml +5 -0
- data/config/locales/es.yml +5 -0
- data/config/locales/eu.yml +5 -0
- data/config/locales/fi-plain.yml +6 -1
- data/config/locales/fi.yml +6 -1
- data/config/locales/fr-CA.yml +17 -0
- data/config/locales/fr.yml +17 -0
- data/config/locales/ga-IE.yml +0 -11
- data/config/locales/gl.yml +0 -8
- data/config/locales/hu.yml +5 -0
- data/config/locales/it.yml +5 -11
- data/config/locales/ja.yml +4 -0
- data/config/locales/lt.yml +7 -0
- data/config/locales/lv.yml +6 -0
- data/config/locales/nl.yml +5 -11
- data/config/locales/no.yml +5 -4
- data/config/locales/pl.yml +7 -0
- data/config/locales/pt-BR.yml +27 -4
- data/config/locales/pt.yml +5 -11
- data/config/locales/ro-RO.yml +7 -7
- data/config/locales/sv.yml +142 -73
- data/config/locales/tr-TR.yml +5 -7
- data/config/locales/zh-CN.yml +4 -4
- data/config/locales/zh-TW.yml +4 -0
- data/lib/decidim/elections/component.rb +12 -0
- data/lib/decidim/elections/engine.rb +4 -0
- data/lib/decidim/elections/version.rb +1 -1
- metadata +14 -14
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c9203731cdb7279845a1664fa07548b08f3bf28994de42ec90f29f8e4b88f86
|
|
4
|
+
data.tar.gz: 49d283d6cf4ff736ceb466d1142be2fc941519b9b68060fa20a7631171a84179
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e52d58a8f1afced8c7510ab827c0dfdd2752268fb4e96648ea11df080c1d2fbeda86847bf43326e12fea2810a20ea84b74148b1a216ab2eae7a44bf777c9cce5
|
|
7
|
+
data.tar.gz: a09cb371c2fa5de8adcde72dca0543ad92e2073324705f372af3af1bb53e8c40b51293ff4ed41724d5ad3a2e03b371a36c3f6590510cc7976e77c38693a5140c
|
|
@@ -42,11 +42,13 @@ module Decidim
|
|
|
42
42
|
scope :ongoing, -> { published.where(start_at: ..Time.current, end_at: Time.current..) }
|
|
43
43
|
scope :finished, -> { published.where(end_at: ..Time.current) }
|
|
44
44
|
|
|
45
|
-
searchable_fields(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
45
|
+
searchable_fields({
|
|
46
|
+
A: :title,
|
|
47
|
+
D: :description,
|
|
48
|
+
participatory_space: { component: :participatory_space }
|
|
49
|
+
},
|
|
50
|
+
index_on_create: ->(election) { election.visible? },
|
|
51
|
+
index_on_update: ->(election) { election.visible? })
|
|
50
52
|
|
|
51
53
|
def presenter
|
|
52
54
|
Decidim::Elections::ElectionPresenter.new(self)
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
1
|
+
@use "stylesheets/decidim/elections/elections";
|
|
2
|
+
@use "stylesheets/decidim/elections/live_results_update";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@use "stylesheets/decidim/elections/live_results_update";
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<h2 class="card-title flex items-center">
|
|
7
7
|
<span>
|
|
8
8
|
<% if editable %>
|
|
9
|
-
<%= icon("
|
|
9
|
+
<%= icon("draggable", class: "dragger hover:cursor-grab") %>
|
|
10
10
|
<% else %>
|
|
11
11
|
<%= icon("lock-line") %>
|
|
12
12
|
<% end %>
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
</button>
|
|
26
26
|
|
|
27
27
|
<% if editable %>
|
|
28
|
-
<button class="button button__xs button__transparent-secondary small alert remove-question button--title" data-confirm="<%= t("remove_question_confirm", scope: "decidim.elections.admin.questions.edit_questions") %>">
|
|
28
|
+
<button type="button" class="button button__xs button__transparent-secondary small alert remove-question button--title" data-confirm="<%= t("remove_question_confirm", scope: "decidim.elections.admin.questions.edit_questions") %>">
|
|
29
29
|
<%= icon "delete-bin-line" %>
|
|
30
30
|
<span class="hidden md:block"><%= t("remove", scope: "decidim.forms.admin.questionnaires.question") %></span>
|
|
31
31
|
</button>
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
<% add_decidim_meta_tags(
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
description: translated_attribute(current_participatory_space.try(:short_description) || current_participatory_space.description),
|
|
3
|
+
title: t(
|
|
4
|
+
"decidim.components.pagination.page_title",
|
|
5
|
+
component_name: component_name,
|
|
6
|
+
current_page: paginated_elections.current_page,
|
|
7
|
+
total_pages: paginated_elections.total_pages
|
|
8
|
+
),
|
|
9
|
+
url: elections_url,
|
|
10
|
+
resource: current_component
|
|
11
|
+
) %>
|
|
9
12
|
|
|
10
13
|
<% append_stylesheet_pack_tag "decidim_elections", media: "all" %>
|
|
11
14
|
|
data/config/locales/bg.yml
CHANGED
data/config/locales/ca-IT.yml
CHANGED
|
@@ -5,6 +5,11 @@ ca-IT:
|
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Arxiu
|
|
7
7
|
remove_all: Eliminar totes les dades del cens actual
|
|
8
|
+
activerecord:
|
|
9
|
+
models:
|
|
10
|
+
decidim/elections/election:
|
|
11
|
+
one: Votació
|
|
12
|
+
other: Votacions
|
|
8
13
|
decidim:
|
|
9
14
|
admin:
|
|
10
15
|
menu:
|
|
@@ -246,7 +251,7 @@ ca-IT:
|
|
|
246
251
|
active_voting_until: 'Votació activa fins: %{end_date}'
|
|
247
252
|
edit_vote_button: Edita el vot
|
|
248
253
|
vote_button: Votar
|
|
249
|
-
voted: Ja has votat. Pots tornar a votar, això esborrarà el teu vot anterior i, només
|
|
254
|
+
voted: Ja has votat. Pots tornar a votar, això esborrarà el teu vot anterior i, només es comptabilitzarà la teva última votació.
|
|
250
255
|
votes_count:
|
|
251
256
|
one: 1 vot
|
|
252
257
|
other: "%{count} vots"
|
data/config/locales/ca.yml
CHANGED
|
@@ -5,6 +5,11 @@ ca:
|
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Arxiu
|
|
7
7
|
remove_all: Eliminar totes les dades del cens actual
|
|
8
|
+
activerecord:
|
|
9
|
+
models:
|
|
10
|
+
decidim/elections/election:
|
|
11
|
+
one: Votació
|
|
12
|
+
other: Votacions
|
|
8
13
|
decidim:
|
|
9
14
|
admin:
|
|
10
15
|
menu:
|
|
@@ -246,7 +251,7 @@ ca:
|
|
|
246
251
|
active_voting_until: 'Votació activa fins: %{end_date}'
|
|
247
252
|
edit_vote_button: Edita el vot
|
|
248
253
|
vote_button: Votar
|
|
249
|
-
voted: Ja has votat. Pots tornar a votar, això esborrarà el teu vot anterior i, només
|
|
254
|
+
voted: Ja has votat. Pots tornar a votar, això esborrarà el teu vot anterior i, només es comptabilitzarà la teva última votació.
|
|
250
255
|
votes_count:
|
|
251
256
|
one: 1 vot
|
|
252
257
|
other: "%{count} vots"
|
data/config/locales/cs.yml
CHANGED
|
@@ -4,12 +4,19 @@ cs:
|
|
|
4
4
|
attributes:
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Soubor
|
|
7
|
+
activerecord:
|
|
8
|
+
models:
|
|
9
|
+
decidim/elections/election:
|
|
10
|
+
one: Volby
|
|
11
|
+
few: Voleb
|
|
12
|
+
many: Voleb
|
|
13
|
+
other: Volby
|
|
7
14
|
decidim:
|
|
8
15
|
admin:
|
|
9
16
|
menu:
|
|
10
17
|
elections_menu:
|
|
11
18
|
basic_elections: Hlavní
|
|
12
|
-
election_census:
|
|
19
|
+
election_census: Rejstřík obyvatel
|
|
13
20
|
election_dashboard: Ovládací panel
|
|
14
21
|
election_questions: Otázky
|
|
15
22
|
components:
|
|
@@ -48,7 +55,7 @@ cs:
|
|
|
48
55
|
start_election: Zahájit volbu
|
|
49
56
|
title: Kalendář
|
|
50
57
|
census:
|
|
51
|
-
title:
|
|
58
|
+
title: Rejstřík obyvatel
|
|
52
59
|
main:
|
|
53
60
|
labels:
|
|
54
61
|
calendar: Kalendář
|
|
@@ -66,13 +73,24 @@ cs:
|
|
|
66
73
|
questions_table:
|
|
67
74
|
answer: Odpovědi
|
|
68
75
|
percentage: Procenta
|
|
76
|
+
total: Celkem
|
|
69
77
|
votes: Hlasy
|
|
78
|
+
votes_count:
|
|
79
|
+
one: 1 hlas
|
|
80
|
+
few: "%{count} hlasy"
|
|
81
|
+
many: "%{count} hlasů"
|
|
82
|
+
other: "%{count} hlasů"
|
|
70
83
|
results:
|
|
71
84
|
not_started: Volba ještě nezačala.
|
|
85
|
+
per_question_waiting: Hlasování ještě není povoleno pro žádné otázky. Účastníci uvidí zprávu "Čekání na další otázku", dokud se neaktivujete alespoň jednou.
|
|
72
86
|
publish_button: Publikovat výsledky
|
|
87
|
+
results_availability:
|
|
88
|
+
after_end: Všechny výsledky můžete publikovat po ukončení voleb. Výsledky zůstanou skryté, dokud je nezveřejníte ručně.
|
|
89
|
+
per_question: Musíte povolit hlasování a ručně publikovat výsledky pro každou otázku jednotlivě.
|
|
73
90
|
start_question_button: Povolit hlasování
|
|
74
91
|
title: Výsledky
|
|
75
92
|
status:
|
|
93
|
+
census: 'Registr obyvatel:'
|
|
76
94
|
results_availability:
|
|
77
95
|
real_time: Výsledky jsou dostupné v reálném čase
|
|
78
96
|
title: Stav voleb
|
|
@@ -120,6 +138,7 @@ cs:
|
|
|
120
138
|
form:
|
|
121
139
|
errors:
|
|
122
140
|
at_least_one_question: Je vyžadována alespoň jedna otázka.
|
|
141
|
+
form_description: Otázka musí mít alespoň dvě odpovědi, aby mohla jít k dalšímu kroku.
|
|
123
142
|
statuses:
|
|
124
143
|
publish_results:
|
|
125
144
|
invalid: Při publikování výsledků došlo k chybě.
|
|
@@ -191,7 +210,7 @@ cs:
|
|
|
191
210
|
models:
|
|
192
211
|
election:
|
|
193
212
|
fields:
|
|
194
|
-
census:
|
|
213
|
+
census: Rejstřík obyvatel
|
|
195
214
|
end_at: Čas ukončení
|
|
196
215
|
start_at: Čas zahájení
|
|
197
216
|
status: Stav
|
|
@@ -232,4 +251,4 @@ cs:
|
|
|
232
251
|
layouts:
|
|
233
252
|
decidim:
|
|
234
253
|
election_votes_header:
|
|
235
|
-
exit: Zavřít
|
|
254
|
+
exit: Zavřít
|
data/config/locales/de.yml
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
---
|
|
2
2
|
de:
|
|
3
|
+
activerecord:
|
|
4
|
+
models:
|
|
5
|
+
decidim/elections/election:
|
|
6
|
+
one: Wahl
|
|
7
|
+
other: Wahlen
|
|
3
8
|
decidim:
|
|
4
9
|
admin:
|
|
5
10
|
menu:
|
|
@@ -125,7 +130,7 @@ de:
|
|
|
125
130
|
layouts:
|
|
126
131
|
decidim:
|
|
127
132
|
election_votes_header:
|
|
128
|
-
exit:
|
|
133
|
+
exit: Schliessen
|
|
129
134
|
time:
|
|
130
135
|
formats:
|
|
131
136
|
short_with_time: "%b %-d, %Y, %-I:%M %p"
|
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
data/config/locales/es-PY.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/eu.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
|
@@ -5,6 +5,11 @@ fi-pl:
|
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Tiedosto
|
|
7
7
|
remove_all: Poista kaikki nykyiset tiedot henkilötietorekisteristä
|
|
8
|
+
activerecord:
|
|
9
|
+
models:
|
|
10
|
+
decidim/elections/election:
|
|
11
|
+
one: Vaali
|
|
12
|
+
other: Vaalit
|
|
8
13
|
decidim:
|
|
9
14
|
admin:
|
|
10
15
|
menu:
|
|
@@ -216,7 +221,7 @@ fi-pl:
|
|
|
216
221
|
upload_file: Lataa tiedosto
|
|
217
222
|
upload_new_census: Lataa CSV-tiedosto
|
|
218
223
|
token_csv_form:
|
|
219
|
-
email:
|
|
224
|
+
email: Sähköpostiosoite
|
|
220
225
|
email_placeholder: Syötä äänestäjän sähköpostiosoite
|
|
221
226
|
invalid: Sähköpostiosoite tai vahvistustunnus on virheellinen. Tarkasta tiedot ja yritä uudestaan.
|
|
222
227
|
token: Vahvistustunnus
|
data/config/locales/fi.yml
CHANGED
|
@@ -5,6 +5,11 @@ fi:
|
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Tiedosto
|
|
7
7
|
remove_all: Poista kaikki nykyiset tiedot henkilötietorekisteristä
|
|
8
|
+
activerecord:
|
|
9
|
+
models:
|
|
10
|
+
decidim/elections/election:
|
|
11
|
+
one: Vaali
|
|
12
|
+
other: Vaalit
|
|
8
13
|
decidim:
|
|
9
14
|
admin:
|
|
10
15
|
menu:
|
|
@@ -216,7 +221,7 @@ fi:
|
|
|
216
221
|
upload_file: Lataa tiedosto
|
|
217
222
|
upload_new_census: Lataa CSV-tiedosto
|
|
218
223
|
token_csv_form:
|
|
219
|
-
email:
|
|
224
|
+
email: Sähköpostiosoite
|
|
220
225
|
email_placeholder: Syötä äänestäjän sähköpostiosoite
|
|
221
226
|
invalid: Sähköpostiosoite tai vahvistustunnus on virheellinen. Tarkasta tiedot ja yritä uudestaan.
|
|
222
227
|
token: Vahvistustunnus
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -5,6 +5,11 @@ fr-CA:
|
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Fichier
|
|
7
7
|
remove_all: Supprimer toutes les données de recensement actuelles
|
|
8
|
+
activerecord:
|
|
9
|
+
models:
|
|
10
|
+
decidim/elections/election:
|
|
11
|
+
one: Élection
|
|
12
|
+
other: Élections
|
|
8
13
|
decidim:
|
|
9
14
|
admin:
|
|
10
15
|
menu:
|
|
@@ -53,24 +58,34 @@ fr-CA:
|
|
|
53
58
|
success: Recensement mis à jour avec succès.
|
|
54
59
|
dashboard:
|
|
55
60
|
calendar:
|
|
61
|
+
end_at: 'Heure de fin:'
|
|
56
62
|
published_results_at: Résultats publiés à
|
|
63
|
+
start_at: 'Heure de début:'
|
|
64
|
+
title: Calendrier
|
|
57
65
|
census:
|
|
58
66
|
title: Recensement
|
|
59
67
|
main:
|
|
60
68
|
labels:
|
|
69
|
+
calendar: Calendrier
|
|
61
70
|
description: Description
|
|
71
|
+
image: Galerie d'images
|
|
72
|
+
results: Disponibilité des résultats
|
|
73
|
+
title: Titre
|
|
74
|
+
publish_confirm: Êtes-vous sûr(e) de vouloir publier cette élection ?
|
|
62
75
|
questions:
|
|
63
76
|
labels:
|
|
64
77
|
answers: Réponses
|
|
65
78
|
title: Questions
|
|
66
79
|
questions_table:
|
|
67
80
|
answer: Réponses
|
|
81
|
+
percentage: Pourcentage
|
|
68
82
|
total: Total
|
|
69
83
|
votes: Votes
|
|
70
84
|
votes_count:
|
|
71
85
|
one: 1 vote
|
|
72
86
|
other: "%{count} votes"
|
|
73
87
|
results:
|
|
88
|
+
not_started: L'élection n'a pas encore commencé.
|
|
74
89
|
publish_button: Publier les résultats
|
|
75
90
|
title: Résultats
|
|
76
91
|
status:
|
|
@@ -86,6 +101,7 @@ fr-CA:
|
|
|
86
101
|
success: Élection créée avec succès.
|
|
87
102
|
dashboard:
|
|
88
103
|
subtitle: 'Étape finale: éxaminez vos détails. Des modifications peuvent toujours être apportées avant de publier. Une fois publiée, vous serez toujours en mesure de mettre à jour la description de l''élection.'
|
|
104
|
+
title: Tableau de bord
|
|
89
105
|
edit:
|
|
90
106
|
title: Modifier l'élection
|
|
91
107
|
form:
|
|
@@ -134,6 +150,7 @@ fr-CA:
|
|
|
134
150
|
statuses:
|
|
135
151
|
publish_results:
|
|
136
152
|
invalid: Un problème est survenu lors de la publication des résultats.
|
|
153
|
+
unknown: État Inconnu
|
|
137
154
|
admin_log:
|
|
138
155
|
election:
|
|
139
156
|
create: "%{user_name} a créé l'élection %{resource_name} dans %{space_name}"
|
data/config/locales/fr.yml
CHANGED
|
@@ -5,6 +5,11 @@ fr:
|
|
|
5
5
|
token_csv:
|
|
6
6
|
file: Fichier
|
|
7
7
|
remove_all: Supprimer toutes les données de recensement actuelles
|
|
8
|
+
activerecord:
|
|
9
|
+
models:
|
|
10
|
+
decidim/elections/election:
|
|
11
|
+
one: Élection
|
|
12
|
+
other: Élections
|
|
8
13
|
decidim:
|
|
9
14
|
admin:
|
|
10
15
|
menu:
|
|
@@ -53,24 +58,34 @@ fr:
|
|
|
53
58
|
success: Recensement mis à jour avec succès.
|
|
54
59
|
dashboard:
|
|
55
60
|
calendar:
|
|
61
|
+
end_at: 'Heure de fin:'
|
|
56
62
|
published_results_at: Résultats publiés à
|
|
63
|
+
start_at: 'Heure de début:'
|
|
64
|
+
title: Calendrier
|
|
57
65
|
census:
|
|
58
66
|
title: Recensement
|
|
59
67
|
main:
|
|
60
68
|
labels:
|
|
69
|
+
calendar: Calendrier
|
|
61
70
|
description: Description
|
|
71
|
+
image: Galerie d'images
|
|
72
|
+
results: Disponibilité des résultats
|
|
73
|
+
title: Titre
|
|
74
|
+
publish_confirm: Êtes-vous sûr(e) de vouloir publier cette élection ?
|
|
62
75
|
questions:
|
|
63
76
|
labels:
|
|
64
77
|
answers: Réponses
|
|
65
78
|
title: Questions
|
|
66
79
|
questions_table:
|
|
67
80
|
answer: Réponses
|
|
81
|
+
percentage: Pourcentage
|
|
68
82
|
total: Total
|
|
69
83
|
votes: Votes
|
|
70
84
|
votes_count:
|
|
71
85
|
one: 1 vote
|
|
72
86
|
other: "%{count} votes"
|
|
73
87
|
results:
|
|
88
|
+
not_started: L'élection n'a pas encore commencé.
|
|
74
89
|
publish_button: Publier les résultats
|
|
75
90
|
title: Résultats
|
|
76
91
|
status:
|
|
@@ -86,6 +101,7 @@ fr:
|
|
|
86
101
|
success: Élection créée avec succès.
|
|
87
102
|
dashboard:
|
|
88
103
|
subtitle: 'Étape finale: éxaminez vos détails. Des modifications peuvent toujours être apportées avant de publier. Une fois publiée, vous serez toujours en mesure de mettre à jour la description de l''élection.'
|
|
104
|
+
title: Tableau de bord
|
|
89
105
|
edit:
|
|
90
106
|
title: Modifier l'élection
|
|
91
107
|
form:
|
|
@@ -134,6 +150,7 @@ fr:
|
|
|
134
150
|
statuses:
|
|
135
151
|
publish_results:
|
|
136
152
|
invalid: Un problème est survenu lors de la publication des résultats.
|
|
153
|
+
unknown: État Inconnu
|
|
137
154
|
admin_log:
|
|
138
155
|
election:
|
|
139
156
|
create: "%{user_name} a créé l'élection %{resource_name} dans %{space_name}"
|
data/config/locales/ga-IE.yml
CHANGED
|
@@ -4,7 +4,6 @@ ga:
|
|
|
4
4
|
admin:
|
|
5
5
|
menu:
|
|
6
6
|
elections_menu:
|
|
7
|
-
election_census: Móráireamh
|
|
8
7
|
election_questions: Ceisteanna
|
|
9
8
|
components:
|
|
10
9
|
elections:
|
|
@@ -18,8 +17,6 @@ ga:
|
|
|
18
17
|
title: Gníomhartha
|
|
19
18
|
admin:
|
|
20
19
|
dashboard:
|
|
21
|
-
census:
|
|
22
|
-
title: Móráireamh
|
|
23
20
|
questions:
|
|
24
21
|
labels:
|
|
25
22
|
answers: Freagraí
|
|
@@ -35,9 +32,6 @@ ga:
|
|
|
35
32
|
questions:
|
|
36
33
|
edit_questions:
|
|
37
34
|
title: Ceisteanna
|
|
38
|
-
censuses:
|
|
39
|
-
token_csv_form:
|
|
40
|
-
email: Seoladh ríomhphoist
|
|
41
35
|
elections:
|
|
42
36
|
filters:
|
|
43
37
|
all: Uile
|
|
@@ -54,7 +48,6 @@ ga:
|
|
|
54
48
|
models:
|
|
55
49
|
election:
|
|
56
50
|
fields:
|
|
57
|
-
census: Móráireamh
|
|
58
51
|
status: Stádas
|
|
59
52
|
title: Teideal
|
|
60
53
|
status:
|
|
@@ -65,7 +58,3 @@ ga:
|
|
|
65
58
|
question:
|
|
66
59
|
back: Ar Ais
|
|
67
60
|
next: I ndiaidh
|
|
68
|
-
layouts:
|
|
69
|
-
decidim:
|
|
70
|
-
election_votes_header:
|
|
71
|
-
exit: Dún
|
data/config/locales/gl.yml
CHANGED
|
@@ -4,7 +4,6 @@ gl:
|
|
|
4
4
|
admin:
|
|
5
5
|
menu:
|
|
6
6
|
elections_menu:
|
|
7
|
-
election_census: Censo
|
|
8
7
|
election_questions: Preguntas
|
|
9
8
|
components:
|
|
10
9
|
elections:
|
|
@@ -16,8 +15,6 @@ gl:
|
|
|
16
15
|
title: Accións
|
|
17
16
|
admin:
|
|
18
17
|
dashboard:
|
|
19
|
-
census:
|
|
20
|
-
title: Censo
|
|
21
18
|
main:
|
|
22
19
|
labels:
|
|
23
20
|
description: Descrición
|
|
@@ -55,7 +52,6 @@ gl:
|
|
|
55
52
|
models:
|
|
56
53
|
election:
|
|
57
54
|
fields:
|
|
58
|
-
census: Censo
|
|
59
55
|
title: Título
|
|
60
56
|
status:
|
|
61
57
|
active: Activa
|
|
@@ -66,7 +62,3 @@ gl:
|
|
|
66
62
|
back: Volver
|
|
67
63
|
statistics:
|
|
68
64
|
elections_count: Eleccións
|
|
69
|
-
layouts:
|
|
70
|
-
decidim:
|
|
71
|
-
election_votes_header:
|
|
72
|
-
exit: Pechar
|
data/config/locales/hu.yml
CHANGED
data/config/locales/it.yml
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
---
|
|
2
2
|
it:
|
|
3
|
+
activerecord:
|
|
4
|
+
models:
|
|
5
|
+
decidim/elections/election:
|
|
6
|
+
one: Elezione
|
|
7
|
+
other: Elezioni
|
|
3
8
|
decidim:
|
|
4
9
|
admin:
|
|
5
10
|
menu:
|
|
6
11
|
elections_menu:
|
|
7
|
-
election_census: Censimento
|
|
8
12
|
election_questions: Quesiti
|
|
9
13
|
components:
|
|
10
14
|
elections:
|
|
@@ -27,8 +31,6 @@ it:
|
|
|
27
31
|
edit:
|
|
28
32
|
created_at: Creato il
|
|
29
33
|
dashboard:
|
|
30
|
-
census:
|
|
31
|
-
title: Censimento
|
|
32
34
|
main:
|
|
33
35
|
labels:
|
|
34
36
|
description: Descrizione
|
|
@@ -58,9 +60,6 @@ it:
|
|
|
58
60
|
edit_questions:
|
|
59
61
|
new_question: Nuovo quesito
|
|
60
62
|
title: Quesiti
|
|
61
|
-
censuses:
|
|
62
|
-
token_csv_form:
|
|
63
|
-
email: Email
|
|
64
63
|
elections:
|
|
65
64
|
count:
|
|
66
65
|
elections_count:
|
|
@@ -83,7 +82,6 @@ it:
|
|
|
83
82
|
models:
|
|
84
83
|
election:
|
|
85
84
|
fields:
|
|
86
|
-
census: Censimento
|
|
87
85
|
status: Stato
|
|
88
86
|
title: Titolo
|
|
89
87
|
status:
|
|
@@ -100,7 +98,3 @@ it:
|
|
|
100
98
|
next: Successivo
|
|
101
99
|
statistics:
|
|
102
100
|
elections_count: Elezioni
|
|
103
|
-
layouts:
|
|
104
|
-
decidim:
|
|
105
|
-
election_votes_header:
|
|
106
|
-
exit: Chiuso
|
data/config/locales/ja.yml
CHANGED
data/config/locales/lt.yml
CHANGED