decidim-elections 0.31.2 → 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/views/decidim/elections/admin/questions/_question.html.erb +2 -2
- data/config/locales/bg.yml +1 -1
- data/config/locales/cs.yml +5 -4
- data/config/locales/de.yml +1 -1
- data/config/locales/fi-plain.yml +1 -1
- data/config/locales/fi.yml +1 -1
- data/config/locales/ga-IE.yml +0 -11
- data/config/locales/gl.yml +0 -8
- data/config/locales/it.yml +0 -11
- data/config/locales/nl.yml +0 -11
- data/config/locales/no.yml +0 -4
- data/config/locales/pt-BR.yml +0 -4
- data/config/locales/pt.yml +0 -11
- data/config/locales/ro-RO.yml +1 -7
- data/config/locales/sv.yml +41 -41
- data/config/locales/tr-TR.yml +0 -7
- data/config/locales/zh-CN.yml +0 -4
- 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)
|
|
@@ -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>
|
data/config/locales/bg.yml
CHANGED
data/config/locales/cs.yml
CHANGED
|
@@ -16,7 +16,7 @@ cs:
|
|
|
16
16
|
menu:
|
|
17
17
|
elections_menu:
|
|
18
18
|
basic_elections: Hlavní
|
|
19
|
-
election_census:
|
|
19
|
+
election_census: Rejstřík obyvatel
|
|
20
20
|
election_dashboard: Ovládací panel
|
|
21
21
|
election_questions: Otázky
|
|
22
22
|
components:
|
|
@@ -55,7 +55,7 @@ cs:
|
|
|
55
55
|
start_election: Zahájit volbu
|
|
56
56
|
title: Kalendář
|
|
57
57
|
census:
|
|
58
|
-
title:
|
|
58
|
+
title: Rejstřík obyvatel
|
|
59
59
|
main:
|
|
60
60
|
labels:
|
|
61
61
|
calendar: Kalendář
|
|
@@ -138,6 +138,7 @@ cs:
|
|
|
138
138
|
form:
|
|
139
139
|
errors:
|
|
140
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.
|
|
141
142
|
statuses:
|
|
142
143
|
publish_results:
|
|
143
144
|
invalid: Při publikování výsledků došlo k chybě.
|
|
@@ -209,7 +210,7 @@ cs:
|
|
|
209
210
|
models:
|
|
210
211
|
election:
|
|
211
212
|
fields:
|
|
212
|
-
census:
|
|
213
|
+
census: Rejstřík obyvatel
|
|
213
214
|
end_at: Čas ukončení
|
|
214
215
|
start_at: Čas zahájení
|
|
215
216
|
status: Stav
|
|
@@ -250,4 +251,4 @@ cs:
|
|
|
250
251
|
layouts:
|
|
251
252
|
decidim:
|
|
252
253
|
election_votes_header:
|
|
253
|
-
exit: Zavřít
|
|
254
|
+
exit: Zavřít
|
data/config/locales/de.yml
CHANGED
data/config/locales/fi-plain.yml
CHANGED
|
@@ -221,7 +221,7 @@ fi-pl:
|
|
|
221
221
|
upload_file: Lataa tiedosto
|
|
222
222
|
upload_new_census: Lataa CSV-tiedosto
|
|
223
223
|
token_csv_form:
|
|
224
|
-
email:
|
|
224
|
+
email: Sähköpostiosoite
|
|
225
225
|
email_placeholder: Syötä äänestäjän sähköpostiosoite
|
|
226
226
|
invalid: Sähköpostiosoite tai vahvistustunnus on virheellinen. Tarkasta tiedot ja yritä uudestaan.
|
|
227
227
|
token: Vahvistustunnus
|
data/config/locales/fi.yml
CHANGED
|
@@ -221,7 +221,7 @@ fi:
|
|
|
221
221
|
upload_file: Lataa tiedosto
|
|
222
222
|
upload_new_census: Lataa CSV-tiedosto
|
|
223
223
|
token_csv_form:
|
|
224
|
-
email:
|
|
224
|
+
email: Sähköpostiosoite
|
|
225
225
|
email_placeholder: Syötä äänestäjän sähköpostiosoite
|
|
226
226
|
invalid: Sähköpostiosoite tai vahvistustunnus on virheellinen. Tarkasta tiedot ja yritä uudestaan.
|
|
227
227
|
token: Vahvistustunnus
|
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/it.yml
CHANGED
|
@@ -9,7 +9,6 @@ it:
|
|
|
9
9
|
admin:
|
|
10
10
|
menu:
|
|
11
11
|
elections_menu:
|
|
12
|
-
election_census: Censimento
|
|
13
12
|
election_questions: Quesiti
|
|
14
13
|
components:
|
|
15
14
|
elections:
|
|
@@ -32,8 +31,6 @@ it:
|
|
|
32
31
|
edit:
|
|
33
32
|
created_at: Creato il
|
|
34
33
|
dashboard:
|
|
35
|
-
census:
|
|
36
|
-
title: Censimento
|
|
37
34
|
main:
|
|
38
35
|
labels:
|
|
39
36
|
description: Descrizione
|
|
@@ -63,9 +60,6 @@ it:
|
|
|
63
60
|
edit_questions:
|
|
64
61
|
new_question: Nuovo quesito
|
|
65
62
|
title: Quesiti
|
|
66
|
-
censuses:
|
|
67
|
-
token_csv_form:
|
|
68
|
-
email: Email
|
|
69
63
|
elections:
|
|
70
64
|
count:
|
|
71
65
|
elections_count:
|
|
@@ -88,7 +82,6 @@ it:
|
|
|
88
82
|
models:
|
|
89
83
|
election:
|
|
90
84
|
fields:
|
|
91
|
-
census: Censimento
|
|
92
85
|
status: Stato
|
|
93
86
|
title: Titolo
|
|
94
87
|
status:
|
|
@@ -105,7 +98,3 @@ it:
|
|
|
105
98
|
next: Successivo
|
|
106
99
|
statistics:
|
|
107
100
|
elections_count: Elezioni
|
|
108
|
-
layouts:
|
|
109
|
-
decidim:
|
|
110
|
-
election_votes_header:
|
|
111
|
-
exit: Chiuso
|
data/config/locales/nl.yml
CHANGED
|
@@ -9,7 +9,6 @@ nl:
|
|
|
9
9
|
admin:
|
|
10
10
|
menu:
|
|
11
11
|
elections_menu:
|
|
12
|
-
election_census: Kiezerslijst
|
|
13
12
|
election_questions: vragen
|
|
14
13
|
components:
|
|
15
14
|
elections:
|
|
@@ -32,8 +31,6 @@ nl:
|
|
|
32
31
|
edit:
|
|
33
32
|
created_at: Aangemaakt op
|
|
34
33
|
dashboard:
|
|
35
|
-
census:
|
|
36
|
-
title: Kiezerslijst
|
|
37
34
|
main:
|
|
38
35
|
labels:
|
|
39
36
|
description: Beschrijving
|
|
@@ -62,9 +59,6 @@ nl:
|
|
|
62
59
|
edit_questions:
|
|
63
60
|
new_question: Nieuwe vraag
|
|
64
61
|
title: vragen
|
|
65
|
-
censuses:
|
|
66
|
-
token_csv_form:
|
|
67
|
-
email: E-mail
|
|
68
62
|
elections:
|
|
69
63
|
count:
|
|
70
64
|
elections_count:
|
|
@@ -79,7 +73,6 @@ nl:
|
|
|
79
73
|
models:
|
|
80
74
|
election:
|
|
81
75
|
fields:
|
|
82
|
-
census: Kiezerslijst
|
|
83
76
|
status: Status
|
|
84
77
|
title: Aanspreektitel
|
|
85
78
|
status:
|
|
@@ -92,7 +85,3 @@ nl:
|
|
|
92
85
|
next: Volgende
|
|
93
86
|
statistics:
|
|
94
87
|
elections_count: Verkiezingen
|
|
95
|
-
layouts:
|
|
96
|
-
decidim:
|
|
97
|
-
election_votes_header:
|
|
98
|
-
exit: Afsluiten
|
data/config/locales/no.yml
CHANGED
data/config/locales/pt-BR.yml
CHANGED
|
@@ -320,10 +320,6 @@ pt-BR:
|
|
|
320
320
|
published_results: 'Resultados publicados: %{end_date}'
|
|
321
321
|
statistics:
|
|
322
322
|
elections_count: Eleições
|
|
323
|
-
layouts:
|
|
324
|
-
decidim:
|
|
325
|
-
election_votes_header:
|
|
326
|
-
exit: Fechado
|
|
327
323
|
time:
|
|
328
324
|
formats:
|
|
329
325
|
short_with_time: "%b %-d, %Y %-I:%M%p"
|
data/config/locales/pt.yml
CHANGED
|
@@ -9,7 +9,6 @@ pt:
|
|
|
9
9
|
admin:
|
|
10
10
|
menu:
|
|
11
11
|
elections_menu:
|
|
12
|
-
election_census: Recenseamento
|
|
13
12
|
election_questions: Perguntas
|
|
14
13
|
components:
|
|
15
14
|
elections:
|
|
@@ -32,8 +31,6 @@ pt:
|
|
|
32
31
|
edit:
|
|
33
32
|
created_at: Criado em
|
|
34
33
|
dashboard:
|
|
35
|
-
census:
|
|
36
|
-
title: Recenseamento
|
|
37
34
|
main:
|
|
38
35
|
labels:
|
|
39
36
|
description: Descrição
|
|
@@ -63,9 +60,6 @@ pt:
|
|
|
63
60
|
edit_questions:
|
|
64
61
|
new_question: Nova pergunta
|
|
65
62
|
title: Perguntas
|
|
66
|
-
censuses:
|
|
67
|
-
token_csv_form:
|
|
68
|
-
email: E-Mail
|
|
69
63
|
elections:
|
|
70
64
|
count:
|
|
71
65
|
elections_count:
|
|
@@ -88,7 +82,6 @@ pt:
|
|
|
88
82
|
models:
|
|
89
83
|
election:
|
|
90
84
|
fields:
|
|
91
|
-
census: Recenseamento
|
|
92
85
|
status: Estado
|
|
93
86
|
title: Título
|
|
94
87
|
status:
|
|
@@ -104,7 +97,3 @@ pt:
|
|
|
104
97
|
next: Seguinte
|
|
105
98
|
statistics:
|
|
106
99
|
elections_count: Eleições
|
|
107
|
-
layouts:
|
|
108
|
-
decidim:
|
|
109
|
-
election_votes_header:
|
|
110
|
-
exit: Fechar
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -54,9 +54,6 @@ ro:
|
|
|
54
54
|
edit_questions:
|
|
55
55
|
new_question: Întrebare nouă
|
|
56
56
|
title: Întrebări
|
|
57
|
-
censuses:
|
|
58
|
-
token_csv_form:
|
|
59
|
-
email: E-mail
|
|
60
57
|
elections:
|
|
61
58
|
count:
|
|
62
59
|
elections_count:
|
|
@@ -83,6 +80,7 @@ ro:
|
|
|
83
80
|
active: Activ
|
|
84
81
|
finished: Terminat
|
|
85
82
|
not_started: Nu a început
|
|
83
|
+
unpublished: Nepublicate
|
|
86
84
|
votes:
|
|
87
85
|
confirm:
|
|
88
86
|
title: Confirmă votul tău
|
|
@@ -90,7 +88,3 @@ ro:
|
|
|
90
88
|
next: Următoarea
|
|
91
89
|
statistics:
|
|
92
90
|
elections_count: Alegeri
|
|
93
|
-
layouts:
|
|
94
|
-
decidim:
|
|
95
|
-
election_votes_header:
|
|
96
|
-
exit: Inchide
|
data/config/locales/sv.yml
CHANGED
|
@@ -62,7 +62,7 @@ sv:
|
|
|
62
62
|
end_at: 'Sluttid:'
|
|
63
63
|
end_election: Avsluta omröstning
|
|
64
64
|
manual_start: Manuell
|
|
65
|
-
published_results_at:
|
|
65
|
+
published_results_at: Resultaten publicerades
|
|
66
66
|
start_at: 'Starttid:'
|
|
67
67
|
start_election: Börja omröstning
|
|
68
68
|
title: Kalender
|
|
@@ -140,16 +140,16 @@ sv:
|
|
|
140
140
|
manage_trash:
|
|
141
141
|
title: Borttagna omröstningar
|
|
142
142
|
new:
|
|
143
|
-
title:
|
|
143
|
+
title: Ny omröstning
|
|
144
144
|
publish:
|
|
145
|
-
invalid: Det gick inte att publicera
|
|
146
|
-
success:
|
|
145
|
+
invalid: Det gick inte att publicera omröstningen.
|
|
146
|
+
success: Omröstningen publicerades.
|
|
147
147
|
unpublish:
|
|
148
|
-
invalid: Det gick inte att
|
|
149
|
-
success:
|
|
148
|
+
invalid: Det gick inte att avpublicera omröstningen.
|
|
149
|
+
success: Omröstningen avpublicerades.
|
|
150
150
|
update:
|
|
151
|
-
invalid: Det gick inte att uppdatera
|
|
152
|
-
success:
|
|
151
|
+
invalid: Det gick inte att uppdatera omröstningen.
|
|
152
|
+
success: Omröstningen har uppdaterats.
|
|
153
153
|
questions:
|
|
154
154
|
edit_questions:
|
|
155
155
|
new_question: Ny fråga
|
|
@@ -177,12 +177,12 @@ sv:
|
|
|
177
177
|
unknown: Okänd status
|
|
178
178
|
admin_log:
|
|
179
179
|
election:
|
|
180
|
-
create: "%{user_name} Skapade
|
|
181
|
-
publish: "%{user_name}
|
|
182
|
-
restore: "%{user_name}
|
|
183
|
-
soft_delete: "%{user_name}
|
|
184
|
-
unpublish: "%{user_name}
|
|
185
|
-
update: "%{user_name}
|
|
180
|
+
create: "%{user_name} Skapade omröstningen %{resource_name} i %{space_name}"
|
|
181
|
+
publish: "%{user_name} publicerade omröstningen %{resource_name} i %{space_name}"
|
|
182
|
+
restore: "%{user_name} återställde omröstningen %{resource_name} i %{space_name}"
|
|
183
|
+
soft_delete: "%{user_name} flyttade omröstningen %{resource_name} i %{space_name} till papperskorgen"
|
|
184
|
+
unpublish: "%{user_name} avpublicerade omröstningen %{resource_name} i %{space_name}"
|
|
185
|
+
update: "%{user_name} uppdaterade omröstningen %{resource_name} i %{space_name}"
|
|
186
186
|
question:
|
|
187
187
|
update: "%{user_name} uppdaterade frågor för omröstningen %{resource_name}"
|
|
188
188
|
censuses:
|
|
@@ -214,24 +214,24 @@ sv:
|
|
|
214
214
|
info_html: |
|
|
215
215
|
Måste vara en fil i CSV-format med två kolumner, en med e-postadressen och en annan med värdet av en token som användaren måste visa för att kunna rösta.
|
|
216
216
|
De måste separeras med en semikolon (;)
|
|
217
|
-
label: Oregistrerade deltagare med tokens (
|
|
217
|
+
label: Oregistrerade deltagare med tokens (fast)
|
|
218
218
|
remove_before_upload: Om du vill ladda upp en ny röstlängd måste du först ta bort den befintliga.
|
|
219
219
|
upload_file: Ladda upp fil
|
|
220
220
|
upload_new_census: Ladda upp en CSV-fil
|
|
221
221
|
token_csv_form:
|
|
222
222
|
email: E-post
|
|
223
|
-
email_placeholder: Ange
|
|
224
|
-
invalid: E-postadress eller lösenord är ogiltigt. Kontrollera
|
|
225
|
-
token:
|
|
226
|
-
token_placeholder: Ange
|
|
223
|
+
email_placeholder: Ange den röstandes e-postadress
|
|
224
|
+
invalid: E-postadress eller lösenord är ogiltigt. Kontrollera uppgifterna och försök igen.
|
|
225
|
+
token: Token
|
|
226
|
+
token_placeholder: Ange den röstandes token
|
|
227
227
|
elections:
|
|
228
228
|
count:
|
|
229
229
|
elections_count:
|
|
230
230
|
one: "%{count} val"
|
|
231
231
|
other: "%{count} val"
|
|
232
232
|
elections:
|
|
233
|
-
empty: Det finns inga
|
|
234
|
-
empty_filters: Det finns inga
|
|
233
|
+
empty: Det finns inga omröstningar.
|
|
234
|
+
empty_filters: Det finns inga omröstningar som matchar dina filter.
|
|
235
235
|
filters:
|
|
236
236
|
all: Allt
|
|
237
237
|
state: Status
|
|
@@ -241,27 +241,27 @@ sv:
|
|
|
241
241
|
scheduled: Kommande
|
|
242
242
|
orders:
|
|
243
243
|
end_at: Slutdatum
|
|
244
|
-
label: Sortera
|
|
244
|
+
label: Sortera
|
|
245
245
|
recent: Senaste
|
|
246
246
|
start_at: Startdatum
|
|
247
247
|
questions:
|
|
248
|
-
subtitle: '
|
|
248
|
+
subtitle: 'Det här är frågorna för omröstningen:'
|
|
249
249
|
show:
|
|
250
|
-
active_voting_until: '
|
|
251
|
-
edit_vote_button:
|
|
250
|
+
active_voting_until: 'Omröstning aktiv till: %{end_date}'
|
|
251
|
+
edit_vote_button: Ändra röst
|
|
252
252
|
vote_button: Rösta
|
|
253
253
|
voted: Du har redan röstat. Om du röstar igen kommer bara den senaste rösten att räknas.
|
|
254
254
|
votes_count:
|
|
255
255
|
one: 1 röst
|
|
256
256
|
other: "%{count} röster"
|
|
257
|
-
voting_began: 'Omröstningen började
|
|
257
|
+
voting_began: 'Omröstningen började: %{start_date}'
|
|
258
258
|
vote_results:
|
|
259
259
|
subtitle:
|
|
260
|
-
after_end:
|
|
261
|
-
per_question:
|
|
262
|
-
real_time: Resultaten är tillgängliga i realtid. Du kan
|
|
260
|
+
after_end: Omröstningen har avslutats. Du kan nu visa resultatet.
|
|
261
|
+
per_question: Resultatet finns tillgängliga per fråga. Du kan se resultaten för varje fråga efter att omröstningen har aktiverats och resultaten är publicerade.
|
|
262
|
+
real_time: Resultaten är tillgängliga i realtid. Du kan visa resultaten medan omröstningen pågår.
|
|
263
263
|
title: Resultat
|
|
264
|
-
total: '
|
|
264
|
+
total: 'TOTALT:'
|
|
265
265
|
total_votes:
|
|
266
266
|
one: 1 röst
|
|
267
267
|
other: "%{count} röster"
|
|
@@ -275,8 +275,8 @@ sv:
|
|
|
275
275
|
title: Titel
|
|
276
276
|
per_question_votes:
|
|
277
277
|
waiting:
|
|
278
|
-
description: Du kan vänta här tills nästa fråga är tillgänglig. Du kommer automatiskt
|
|
279
|
-
edit_vote:
|
|
278
|
+
description: Du kan vänta här tills nästa fråga är tillgänglig. Du kommer automatiskt skickas till nästa fråga när den är klar.
|
|
279
|
+
edit_vote: Ändra din röst
|
|
280
280
|
exit_button: Lämna väntrummet
|
|
281
281
|
title: Väntar på nästa fråga
|
|
282
282
|
status:
|
|
@@ -293,25 +293,25 @@ sv:
|
|
|
293
293
|
success: Din röst har tagits emot.
|
|
294
294
|
check_census:
|
|
295
295
|
access: Åtkomst
|
|
296
|
-
election_not_open:
|
|
297
|
-
failed:
|
|
296
|
+
election_not_open: Omröstningen har inte börjat. Kontrollera datumen och försök igen.
|
|
297
|
+
failed: Dina användaruppgifter kunde inte verifieras. Kontrollera informationen du angav och försök igen.
|
|
298
298
|
form_title: Verifiera din identitet
|
|
299
|
-
invalid: Användaren hittades inte i
|
|
299
|
+
invalid: Användaren hittades inte i röstlängden.
|
|
300
300
|
confirm:
|
|
301
301
|
cast_vote: Rösta
|
|
302
|
-
edit_vote:
|
|
302
|
+
edit_vote: Ändra din röst
|
|
303
303
|
not_answered: Du har inte besvarat frågan.
|
|
304
304
|
title: Bekräfta din röst
|
|
305
|
-
not_authorized: Du har inte behörighet att rösta i
|
|
305
|
+
not_authorized: Du har inte behörighet att rösta i den här omröstningen.
|
|
306
306
|
question:
|
|
307
307
|
back: Tillbaka
|
|
308
308
|
cast_vote: Rösta
|
|
309
309
|
next: Nästa
|
|
310
310
|
receipt:
|
|
311
|
-
description: Du kan rösta igen så länge omröstningsperioden pågår. En ny
|
|
312
|
-
edit_vote:
|
|
313
|
-
exit_button: Lämna
|
|
314
|
-
title:
|
|
311
|
+
description: Du kan rösta igen så länge omröstningsperioden pågår. En ny röst kommer att skriva över den gamla.
|
|
312
|
+
edit_vote: Ändra din röst
|
|
313
|
+
exit_button: Lämna röstningsbåset
|
|
314
|
+
title: Dina röst är mottagen
|
|
315
315
|
metadata:
|
|
316
316
|
progress:
|
|
317
317
|
published_results: 'Resultaten publicerades: %{end_date}'
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -48,9 +48,6 @@ tr:
|
|
|
48
48
|
edit_questions:
|
|
49
49
|
new_question: Yeni soru
|
|
50
50
|
title: Sorular
|
|
51
|
-
censuses:
|
|
52
|
-
token_csv_form:
|
|
53
|
-
email: E-posta
|
|
54
51
|
elections:
|
|
55
52
|
count:
|
|
56
53
|
elections_count:
|
|
@@ -80,7 +77,3 @@ tr:
|
|
|
80
77
|
title: Oyunu onayla
|
|
81
78
|
question:
|
|
82
79
|
next: Sonraki
|
|
83
|
-
layouts:
|
|
84
|
-
decidim:
|
|
85
|
-
election_votes_header:
|
|
86
|
-
exit: Kapat
|
data/config/locales/zh-CN.yml
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-elections
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.
|
|
4
|
+
version: 0.31.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Vergés
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: decidim-admin
|
|
@@ -16,84 +16,84 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.31.
|
|
19
|
+
version: 0.31.3
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.31.
|
|
26
|
+
version: 0.31.3
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: decidim-core
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.31.
|
|
33
|
+
version: 0.31.3
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.31.
|
|
40
|
+
version: 0.31.3
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: decidim-forms
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.31.
|
|
47
|
+
version: 0.31.3
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.31.
|
|
54
|
+
version: 0.31.3
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: decidim-admin
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 0.31.
|
|
61
|
+
version: 0.31.3
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 0.31.
|
|
68
|
+
version: 0.31.3
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: decidim-dev
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 0.31.
|
|
75
|
+
version: 0.31.3
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 0.31.
|
|
82
|
+
version: 0.31.3
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: decidim-participatory_processes
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
86
86
|
requirements:
|
|
87
87
|
- - '='
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.31.
|
|
89
|
+
version: 0.31.3
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - '='
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0.31.
|
|
96
|
+
version: 0.31.3
|
|
97
97
|
description: A module that aims to provide a set of tools to create elections in Decidim.
|
|
98
98
|
email:
|
|
99
99
|
- ivan@pokecode.net
|