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
|
+
fr:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
description: Description
|
|
6
|
+
image: Image
|
|
7
|
+
proposals: Propositions associées
|
|
8
|
+
title: Titre
|
|
9
|
+
election:
|
|
10
|
+
description: Description
|
|
11
|
+
end_time: Le vote se termine à
|
|
12
|
+
start_time: Le vote commence à
|
|
13
|
+
subtitle: Sous-titre
|
|
14
|
+
title: Titre
|
|
15
|
+
question:
|
|
16
|
+
description: Description
|
|
17
|
+
max_selections: Nombre maximum de sélections
|
|
18
|
+
title: Titre
|
|
19
|
+
errors:
|
|
20
|
+
models:
|
|
21
|
+
answer:
|
|
22
|
+
attributes:
|
|
23
|
+
attachment:
|
|
24
|
+
needs_to_be_reattached: Doit être téléchargé de nouveau
|
|
25
|
+
activerecord:
|
|
26
|
+
models:
|
|
27
|
+
decidim/elections/answer:
|
|
28
|
+
one: Réponse
|
|
29
|
+
other: Réponses
|
|
30
|
+
decidim/elections/election:
|
|
31
|
+
one: Élection
|
|
32
|
+
other: Élections
|
|
33
|
+
decidim/elections/question:
|
|
34
|
+
one: Question
|
|
35
|
+
other: Questions
|
|
36
|
+
decidim:
|
|
37
|
+
components:
|
|
38
|
+
elections:
|
|
39
|
+
name: Élections
|
|
40
|
+
settings:
|
|
41
|
+
global:
|
|
42
|
+
announcement: Annonce
|
|
43
|
+
step:
|
|
44
|
+
announcement: Annonce
|
|
45
|
+
elections:
|
|
46
|
+
actions:
|
|
47
|
+
confirm_destroy: Êtes-vous certain ?
|
|
48
|
+
destroy: Détruire
|
|
49
|
+
edit: Modifier
|
|
50
|
+
new: Nouveau %{name}
|
|
51
|
+
preview: Aperçu
|
|
52
|
+
title: Actions
|
|
53
|
+
admin:
|
|
54
|
+
answers:
|
|
55
|
+
create:
|
|
56
|
+
invalid: Il y a eu un problème lors de la création de cette réponse
|
|
57
|
+
success: Réponse créée avec succès
|
|
58
|
+
destroy:
|
|
59
|
+
invalid: Un problème est survenu lors de la suppression de cette réponse
|
|
60
|
+
success: Réponse supprimée avec succès
|
|
61
|
+
edit:
|
|
62
|
+
title: Modifier la réponse
|
|
63
|
+
update: Mettre à jour la réponse
|
|
64
|
+
index:
|
|
65
|
+
title: Réponses
|
|
66
|
+
new:
|
|
67
|
+
create: Créer une réponse
|
|
68
|
+
title: Nouvelle réponse
|
|
69
|
+
update:
|
|
70
|
+
invalid: Un problème est survenu lors de la mise à jour de cette réponse
|
|
71
|
+
success: Réponse mise à jour avec succès
|
|
72
|
+
elections:
|
|
73
|
+
create:
|
|
74
|
+
invalid: Il y a eu un problème lors de la création de cette élection
|
|
75
|
+
success: Élection créée avec succès
|
|
76
|
+
destroy:
|
|
77
|
+
invalid: Il y a eu un problème lors de la suppression de cette élection
|
|
78
|
+
success: Élection supprimée avec succès
|
|
79
|
+
edit:
|
|
80
|
+
title: Modifier l'élection
|
|
81
|
+
update: Mettre à jour l'élection
|
|
82
|
+
index:
|
|
83
|
+
title: Élections
|
|
84
|
+
new:
|
|
85
|
+
create: Créer une élection
|
|
86
|
+
title: Nouvelle élection
|
|
87
|
+
update:
|
|
88
|
+
invalid: Il y a eu un problème lors de la mise à jour de cette élection
|
|
89
|
+
success: Élection mise à jour avec succès
|
|
90
|
+
models:
|
|
91
|
+
answer:
|
|
92
|
+
name: Réponse
|
|
93
|
+
election:
|
|
94
|
+
name: Élection
|
|
95
|
+
question:
|
|
96
|
+
name: Question
|
|
97
|
+
questions:
|
|
98
|
+
create:
|
|
99
|
+
invalid: Il y a eu un problème lors de la création de cette question
|
|
100
|
+
success: Question créée avec succès
|
|
101
|
+
destroy:
|
|
102
|
+
invalid: Un problème est survenu lors de la suppression de cette question
|
|
103
|
+
success: Question supprimée avec succès
|
|
104
|
+
edit:
|
|
105
|
+
title: Modifier la question
|
|
106
|
+
update: Mettre à jour la question
|
|
107
|
+
index:
|
|
108
|
+
title: Questions
|
|
109
|
+
new:
|
|
110
|
+
create: Créer une question
|
|
111
|
+
title: Nouvelle question
|
|
112
|
+
update:
|
|
113
|
+
invalid: Une erreur s'est produite lors de la mise à jour de cette question
|
|
114
|
+
success: Question mise à jour avec succès
|
|
115
|
+
models:
|
|
116
|
+
answer:
|
|
117
|
+
fields:
|
|
118
|
+
proposals: Propositions
|
|
119
|
+
title: Titre
|
|
120
|
+
election:
|
|
121
|
+
fields:
|
|
122
|
+
end_time: Prend fin à
|
|
123
|
+
start_time: Commence à
|
|
124
|
+
title: Titre
|
|
125
|
+
question:
|
|
126
|
+
fields:
|
|
127
|
+
answers: Réponses
|
|
128
|
+
max_selections: Nombre maximum de sélections
|
|
129
|
+
title: Titre
|
|
130
|
+
participatory_processes:
|
|
131
|
+
statistics:
|
|
132
|
+
elections_count: Élections
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ga:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gl:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hr:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hu:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
id:
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
is-IS:
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
it:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
description: Descrizione
|
|
6
|
+
image: Immagine
|
|
7
|
+
proposals: Proposte correlate
|
|
8
|
+
title: Titolo
|
|
9
|
+
election:
|
|
10
|
+
description: Descrizione
|
|
11
|
+
end_time: La votazione termina il
|
|
12
|
+
start_time: La votazione inizia il
|
|
13
|
+
subtitle: Sottotitolo
|
|
14
|
+
title: Titolo
|
|
15
|
+
question:
|
|
16
|
+
description: Descrizione
|
|
17
|
+
max_selections: Numero massimo di selezioni
|
|
18
|
+
title: Titolo
|
|
19
|
+
errors:
|
|
20
|
+
models:
|
|
21
|
+
answer:
|
|
22
|
+
attributes:
|
|
23
|
+
attachment:
|
|
24
|
+
needs_to_be_reattached: Necessita di essere riallegato
|
|
25
|
+
activerecord:
|
|
26
|
+
models:
|
|
27
|
+
decidim/elections/answer:
|
|
28
|
+
one: Risposta
|
|
29
|
+
other: Risposte
|
|
30
|
+
decidim/elections/election:
|
|
31
|
+
one: Elezione
|
|
32
|
+
other: Elezioni
|
|
33
|
+
decidim/elections/question:
|
|
34
|
+
one: Domanda
|
|
35
|
+
other: Domande
|
|
36
|
+
decidim:
|
|
37
|
+
components:
|
|
38
|
+
elections:
|
|
39
|
+
name: Elezioni
|
|
40
|
+
settings:
|
|
41
|
+
global:
|
|
42
|
+
announcement: Annuncio
|
|
43
|
+
step:
|
|
44
|
+
announcement: Annuncio
|
|
45
|
+
elections:
|
|
46
|
+
actions:
|
|
47
|
+
confirm_destroy: Sei sicuro?
|
|
48
|
+
destroy: Elimina
|
|
49
|
+
edit: Modifica
|
|
50
|
+
new: Nuovo %{name}
|
|
51
|
+
preview: Anteprima
|
|
52
|
+
title: Azioni
|
|
53
|
+
admin:
|
|
54
|
+
answers:
|
|
55
|
+
create:
|
|
56
|
+
invalid: Si è verificato un errore durante la creazione di questa risposta
|
|
57
|
+
success: Risposta creata con successo
|
|
58
|
+
destroy:
|
|
59
|
+
invalid: Si è verificato un problema durante l'eliminazione di questa risposta
|
|
60
|
+
success: Risposta eliminata con successo
|
|
61
|
+
edit:
|
|
62
|
+
title: Modifica risposta
|
|
63
|
+
update: Aggiorna risposta
|
|
64
|
+
index:
|
|
65
|
+
title: Risposte
|
|
66
|
+
new:
|
|
67
|
+
create: Crea risposta
|
|
68
|
+
title: Nuova risposta
|
|
69
|
+
update:
|
|
70
|
+
invalid: Si è verificato un errore durante l'aggiornamento di questa risposta
|
|
71
|
+
success: Risposta aggiornata con successo
|
|
72
|
+
elections:
|
|
73
|
+
create:
|
|
74
|
+
invalid: Si è verificato un errore durante la creazione di questa elezione
|
|
75
|
+
success: Elezione creata con successo
|
|
76
|
+
destroy:
|
|
77
|
+
invalid: Si è verificato un problema durante l'eliminazione di questa elezione
|
|
78
|
+
success: Elezione eliminata con successo
|
|
79
|
+
edit:
|
|
80
|
+
title: Modifica elezione
|
|
81
|
+
update: Aggiorna elezione
|
|
82
|
+
index:
|
|
83
|
+
title: Elezioni
|
|
84
|
+
new:
|
|
85
|
+
create: Crea elezione
|
|
86
|
+
title: Nuova elezione
|
|
87
|
+
update:
|
|
88
|
+
invalid: Si è verificato un problema durante l'aggiornamento di questa elezione
|
|
89
|
+
success: Elezione aggiornata con successo
|
|
90
|
+
models:
|
|
91
|
+
answer:
|
|
92
|
+
name: Risposta
|
|
93
|
+
election:
|
|
94
|
+
name: Elezione
|
|
95
|
+
question:
|
|
96
|
+
name: Quesito
|
|
97
|
+
questions:
|
|
98
|
+
create:
|
|
99
|
+
invalid: Si è verificato un errore durante la creazione di questa domanda
|
|
100
|
+
success: Domanda creata con successo
|
|
101
|
+
destroy:
|
|
102
|
+
invalid: Si è verificato un errore durante l'eliminazione di questa domanda
|
|
103
|
+
success: Domanda eliminata con successo
|
|
104
|
+
edit:
|
|
105
|
+
title: Modifica quesito
|
|
106
|
+
update: Aggiorna quesito
|
|
107
|
+
index:
|
|
108
|
+
title: Quesiti
|
|
109
|
+
new:
|
|
110
|
+
create: Crea quesito
|
|
111
|
+
title: Nuovo quesito
|
|
112
|
+
update:
|
|
113
|
+
invalid: Si è verificato un errore durante l'aggiornamento del quesito
|
|
114
|
+
success: Quesito aggiornato correttamente
|
|
115
|
+
models:
|
|
116
|
+
answer:
|
|
117
|
+
fields:
|
|
118
|
+
proposals: Proposte
|
|
119
|
+
title: Titolo
|
|
120
|
+
election:
|
|
121
|
+
fields:
|
|
122
|
+
end_time: Finisce il
|
|
123
|
+
start_time: Inizia il
|
|
124
|
+
title: Titolo
|
|
125
|
+
question:
|
|
126
|
+
fields:
|
|
127
|
+
answers: Risposte
|
|
128
|
+
max_selections: Max. selezioni
|
|
129
|
+
title: Titolo
|
|
130
|
+
participatory_processes:
|
|
131
|
+
statistics:
|
|
132
|
+
elections_count: Elezioni
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
ja:
|
|
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
|
+
other: 回答
|
|
29
|
+
decidim/elections/election:
|
|
30
|
+
other: 選挙
|
|
31
|
+
decidim/elections/question:
|
|
32
|
+
other: 質問
|
|
33
|
+
decidim:
|
|
34
|
+
components:
|
|
35
|
+
elections:
|
|
36
|
+
name: 選挙
|
|
37
|
+
settings:
|
|
38
|
+
global:
|
|
39
|
+
announcement: お知らせ
|
|
40
|
+
step:
|
|
41
|
+
announcement: お知らせ
|
|
42
|
+
elections:
|
|
43
|
+
actions:
|
|
44
|
+
confirm_destroy: よろしいですか?
|
|
45
|
+
destroy: 破壊
|
|
46
|
+
edit: 編集
|
|
47
|
+
new: 新しい %{name}
|
|
48
|
+
preview: プレビュー
|
|
49
|
+
title: アクション
|
|
50
|
+
admin:
|
|
51
|
+
answers:
|
|
52
|
+
create:
|
|
53
|
+
invalid: この回答を作成する際に問題が発生しました
|
|
54
|
+
success: 回答を作成しました
|
|
55
|
+
destroy:
|
|
56
|
+
invalid: この回答を削除する際に問題が発生しました
|
|
57
|
+
success: 正常に回答を削除しました
|
|
58
|
+
edit:
|
|
59
|
+
title: 回答を編集
|
|
60
|
+
update: 回答を更新
|
|
61
|
+
index:
|
|
62
|
+
title: 回答
|
|
63
|
+
new:
|
|
64
|
+
create: 回答を作成
|
|
65
|
+
title: 新しい回答
|
|
66
|
+
update:
|
|
67
|
+
invalid: この回答の更新中に問題が発生しました
|
|
68
|
+
success: 回答が更新されました
|
|
69
|
+
elections:
|
|
70
|
+
create:
|
|
71
|
+
invalid: この選挙の作成中に問題が発生しました
|
|
72
|
+
success: 選挙が正常に作成されました
|
|
73
|
+
destroy:
|
|
74
|
+
invalid: この選挙を削除する際に問題が発生しました
|
|
75
|
+
success: 選挙は正常に削除されました
|
|
76
|
+
edit:
|
|
77
|
+
title: 選挙を編集
|
|
78
|
+
update: 選挙を更新
|
|
79
|
+
index:
|
|
80
|
+
title: 選挙
|
|
81
|
+
new:
|
|
82
|
+
create: 選挙を作成
|
|
83
|
+
title: 新しい選挙
|
|
84
|
+
update:
|
|
85
|
+
invalid: 選挙の更新中に問題が発生しました
|
|
86
|
+
success: 選挙が正常に更新されました
|
|
87
|
+
models:
|
|
88
|
+
answer:
|
|
89
|
+
name: 回答
|
|
90
|
+
election:
|
|
91
|
+
name: 選挙
|
|
92
|
+
question:
|
|
93
|
+
name: 質問
|
|
94
|
+
questions:
|
|
95
|
+
create:
|
|
96
|
+
invalid: この質問を作成中に問題が発生しました
|
|
97
|
+
success: 問題を作成しました
|
|
98
|
+
destroy:
|
|
99
|
+
invalid: この質問を削除する際に問題が発生しました
|
|
100
|
+
success: 問題が削除されました
|
|
101
|
+
edit:
|
|
102
|
+
title: 質問を編集
|
|
103
|
+
update: 質問を更新
|
|
104
|
+
index:
|
|
105
|
+
title: 質問
|
|
106
|
+
new:
|
|
107
|
+
create: 質問を作成
|
|
108
|
+
title: 新しい質問
|
|
109
|
+
update:
|
|
110
|
+
invalid: この質問の更新中に問題が発生しました
|
|
111
|
+
success: 問題が正常に更新されました
|
|
112
|
+
models:
|
|
113
|
+
answer:
|
|
114
|
+
fields:
|
|
115
|
+
proposals: 提案
|
|
116
|
+
title: タイトル
|
|
117
|
+
election:
|
|
118
|
+
fields:
|
|
119
|
+
end_time: 終了時刻
|
|
120
|
+
start_time: 開始
|
|
121
|
+
title: タイトル
|
|
122
|
+
question:
|
|
123
|
+
fields:
|
|
124
|
+
answers: 回答
|
|
125
|
+
max_selections: 最大選挙数
|
|
126
|
+
title: タイトル
|
|
127
|
+
participatory_processes:
|
|
128
|
+
statistics:
|
|
129
|
+
elections_count: 選挙
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
lt:
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
lv:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
answer:
|
|
5
|
+
description: Apraksts
|
|
6
|
+
image: Attēls
|
|
7
|
+
proposals: Saistītie priekšlikumi
|
|
8
|
+
title: Nosaukums
|
|
9
|
+
election:
|
|
10
|
+
description: Apraksts
|
|
11
|
+
end_time: Balsošana beidzas plkst.
|
|
12
|
+
start_time: Balsošanas sākas plkst.
|
|
13
|
+
subtitle: Apakšvirsraksts
|
|
14
|
+
title: Nosaukums
|
|
15
|
+
question:
|
|
16
|
+
description: Apraksts
|
|
17
|
+
max_selections: Maksimālais izvēļu skaits
|
|
18
|
+
title: Nosaukums
|
|
19
|
+
errors:
|
|
20
|
+
models:
|
|
21
|
+
answer:
|
|
22
|
+
attributes:
|
|
23
|
+
attachment:
|
|
24
|
+
needs_to_be_reattached: Jāpievieno no jauna
|
|
25
|
+
activerecord:
|
|
26
|
+
models:
|
|
27
|
+
decidim/elections/answer:
|
|
28
|
+
zero: Atbildes
|
|
29
|
+
one: Atbilde
|
|
30
|
+
other: Atbildes
|
|
31
|
+
decidim/elections/election:
|
|
32
|
+
zero: Vēlēšanas
|
|
33
|
+
one: Vēlēšanas
|
|
34
|
+
other: Vēlēšanas
|
|
35
|
+
decidim/elections/question:
|
|
36
|
+
zero: Jautājumi
|
|
37
|
+
one: Jautājums
|
|
38
|
+
other: Jautājumi
|
|
39
|
+
decidim:
|
|
40
|
+
components:
|
|
41
|
+
elections:
|
|
42
|
+
name: Vēlēšanas
|
|
43
|
+
settings:
|
|
44
|
+
global:
|
|
45
|
+
announcement: Paziņojums
|
|
46
|
+
step:
|
|
47
|
+
announcement: Paziņojums
|
|
48
|
+
elections:
|
|
49
|
+
actions:
|
|
50
|
+
confirm_destroy: Vai esat pārliecināts?
|
|
51
|
+
destroy: Dzēst
|
|
52
|
+
edit: Labot
|
|
53
|
+
new: Jauns %{name}
|
|
54
|
+
preview: Priekšskatīt
|
|
55
|
+
title: Darbības
|
|
56
|
+
admin:
|
|
57
|
+
answers:
|
|
58
|
+
create:
|
|
59
|
+
invalid: Šīs atbildes izveides laikā radās problēma
|
|
60
|
+
success: Atbilde ir veiksmīgi izveidota
|
|
61
|
+
destroy:
|
|
62
|
+
invalid: Šīs atbildes dzēšanas laikā radās problēma
|
|
63
|
+
success: Atbilde ir veiksmīgi izdzēsta
|
|
64
|
+
edit:
|
|
65
|
+
title: Rediģēt atbildi
|
|
66
|
+
update: Atjaunināt atbildi
|
|
67
|
+
index:
|
|
68
|
+
title: Atbildes
|
|
69
|
+
new:
|
|
70
|
+
create: Izveidot atbildi
|
|
71
|
+
title: Jauna atbilde
|
|
72
|
+
update:
|
|
73
|
+
invalid: Atbildes atjaunināšanas laikā radās problēma
|
|
74
|
+
success: Atbilde ir veiksmīgi atjaunināta
|
|
75
|
+
elections:
|
|
76
|
+
create:
|
|
77
|
+
invalid: Šo vēlēšanu izveides laikā radās problēma
|
|
78
|
+
success: Vēlēšanas ir veiksmīgi izveidotas
|
|
79
|
+
destroy:
|
|
80
|
+
invalid: Šo vēlēšanu dzēšanas laikā radās problēma
|
|
81
|
+
success: Vēlēšanas ir veiksmīgi izdzēstas
|
|
82
|
+
edit:
|
|
83
|
+
title: Rediģēt vēlēšanas
|
|
84
|
+
update: Atjaunināt vēlēšanas
|
|
85
|
+
index:
|
|
86
|
+
title: Vēlēšanas
|
|
87
|
+
new:
|
|
88
|
+
create: Izveidot vēlēšanas
|
|
89
|
+
title: Jaunas vēlēšanas
|
|
90
|
+
update:
|
|
91
|
+
invalid: Šo vēlēšanu atjaunināšanas laikā radās problēma
|
|
92
|
+
success: Vēlēšanas ir veiksmīgi atjauninātas
|
|
93
|
+
models:
|
|
94
|
+
answer:
|
|
95
|
+
name: Atbilde
|
|
96
|
+
election:
|
|
97
|
+
name: Vēlēšanas
|
|
98
|
+
question:
|
|
99
|
+
name: Jautājums
|
|
100
|
+
questions:
|
|
101
|
+
create:
|
|
102
|
+
invalid: Šī jautājuma izveides laikā radās problēma
|
|
103
|
+
success: Jautājums ir veiksmīgi izveidots
|
|
104
|
+
destroy:
|
|
105
|
+
invalid: Šī jautājuma dzēšanas laikā radās problēma
|
|
106
|
+
success: Jautājums ir veiksmīgi izdzēsts
|
|
107
|
+
edit:
|
|
108
|
+
title: Rediģēt jautājumu
|
|
109
|
+
update: Atjaunināt jautājumu
|
|
110
|
+
index:
|
|
111
|
+
title: Jautājumi
|
|
112
|
+
new:
|
|
113
|
+
create: Izveidot jautājumu
|
|
114
|
+
title: Jauns jautājums
|
|
115
|
+
update:
|
|
116
|
+
invalid: Šī jautājuma atjaunināšanas laikā radās problēma
|
|
117
|
+
success: Jautājums ir veiksmīgi atjaunināts
|
|
118
|
+
models:
|
|
119
|
+
answer:
|
|
120
|
+
fields:
|
|
121
|
+
proposals: Priekšlikumi
|
|
122
|
+
title: Nosaukums
|
|
123
|
+
election:
|
|
124
|
+
fields:
|
|
125
|
+
end_time: Beidzas plkst.
|
|
126
|
+
start_time: Sākas plkst.
|
|
127
|
+
title: Nosaukums
|
|
128
|
+
question:
|
|
129
|
+
fields:
|
|
130
|
+
answers: Atbildes
|
|
131
|
+
max_selections: Maks. izvēles
|
|
132
|
+
title: Nosaukums
|
|
133
|
+
participatory_processes:
|
|
134
|
+
statistics:
|
|
135
|
+
elections_count: Vēlēšanas
|