decidim-initiatives 0.11.2 → 0.12.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/app/assets/config/decidim_initiatives_manifest.css +4 -0
- data/app/assets/config/decidim_initiatives_manifest.js +0 -2
- data/app/assets/stylesheet/decidim/initiatives/{application.css.scss → initiatives.scss} +0 -1
- data/app/cells/decidim/initiatives/initiative_cell.rb +19 -0
- data/app/cells/decidim/initiatives/initiative_m/author.erb +10 -0
- data/app/cells/decidim/initiatives/initiative_m/footer.erb +28 -0
- data/app/cells/decidim/initiatives/initiative_m/tags.erb +9 -0
- data/app/cells/decidim/initiatives/initiative_m_cell.rb +45 -0
- data/app/commands/decidim/initiatives/vote_initiative.rb +22 -0
- data/app/controllers/concerns/decidim/initiatives/admin/initiative_admin.rb +0 -4
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +18 -23
- data/app/controllers/decidim/initiatives/admin/application_controller.rb +13 -0
- data/app/controllers/decidim/initiatives/admin/committee_requests_controller.rb +4 -4
- data/app/controllers/decidim/initiatives/admin/initiative_attachments_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +11 -11
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +5 -5
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +7 -7
- data/app/controllers/decidim/initiatives/application_controller.rb +30 -0
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +4 -5
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +3 -3
- data/app/controllers/decidim/initiatives/initiative_types_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +3 -17
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +3 -7
- data/app/controllers/decidim/initiatives/initiatives_type_scopes_controller.rb +2 -2
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +4 -45
- data/app/events/decidim/initiatives/milestone_completed_event.rb +17 -0
- data/app/models/decidim/initiative.rb +5 -4
- data/app/models/decidim/initiatives_committee_member.rb +1 -0
- data/app/permissions/decidim/initiatives/admin/permissions.rb +188 -0
- data/app/permissions/decidim/initiatives/permissions.rb +139 -0
- data/app/presenters/decidim/initiative_presenter.rb +16 -0
- data/app/views/decidim/initiatives/_initiative.html.erb +1 -35
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +2 -3
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +3 -3
- data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +8 -8
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +4 -4
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +0 -2
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +2 -2
- data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +2 -2
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +3 -5
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +17 -15
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/index.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/show.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/signature_identities.html.erb +15 -13
- data/app/views/layouts/decidim/admin/initiative.html.erb +9 -6
- data/app/views/layouts/decidim/admin/initiatives.html.erb +11 -3
- data/app/views/layouts/decidim/initiative_creation.html.erb +0 -1
- data/config/locales/ca.yml +31 -11
- data/config/locales/en.yml +32 -11
- data/config/locales/es.yml +33 -12
- data/config/locales/eu.yml +32 -11
- data/config/locales/fi.yml +32 -11
- data/config/locales/fr.yml +32 -11
- data/config/locales/gl.yml +32 -11
- data/config/locales/it.yml +32 -11
- data/config/locales/nl.yml +32 -11
- data/config/locales/pl.yml +42 -13
- data/config/locales/pt-BR.yml +32 -11
- data/config/locales/pt.yml +32 -11
- data/config/locales/sv.yml +32 -11
- data/config/locales/uk.yml +43 -14
- data/db/migrate/20171109132011_enable_pg_trgm_extension_for_initiatives.rb +18 -0
- data/lib/decidim/initiatives/admin_engine.rb +1 -15
- data/lib/decidim/initiatives/engine.rb +6 -11
- data/lib/decidim/initiatives/participatory_space.rb +12 -4
- data/lib/decidim/initiatives/test/factories.rb +17 -1
- data/lib/decidim/initiatives/version.rb +1 -1
- metadata +27 -29
- data/app/controllers/concerns/decidim/initiatives/action_authorization.rb +0 -38
- data/app/models/decidim/initiatives/abilities/admin/attachments_ability.rb +0 -55
- data/app/models/decidim/initiatives/abilities/admin/committee_admin_ability.rb +0 -36
- data/app/models/decidim/initiatives/abilities/admin/committee_user_ability.rb +0 -50
- data/app/models/decidim/initiatives/abilities/admin/components_ability.rb +0 -24
- data/app/models/decidim/initiatives/abilities/admin/initiative_admin_ability.rb +0 -65
- data/app/models/decidim/initiatives/abilities/admin/initiative_type_ability.rb +0 -42
- data/app/models/decidim/initiatives/abilities/admin/initiative_user_ability.rb +0 -68
- data/app/models/decidim/initiatives/abilities/current_user_ability.rb +0 -58
- data/app/models/decidim/initiatives/abilities/everyone_ability.rb +0 -22
- data/app/models/decidim/initiatives/abilities/non_logged_user_ability.rb +0 -33
- data/app/models/decidim/initiatives/abilities/vote_ability.rb +0 -57
- data/app/views/decidim/initiatives/initiatives/_supports_count.html.erb +0 -6
- data/db/migrate/20171109132011_enable_pg_extensions.rb +0 -9
data/config/locales/fi.yml
CHANGED
@@ -32,6 +32,17 @@ fi:
|
|
32
32
|
address: Osoite
|
33
33
|
id_document: CIF
|
34
34
|
name: Koko nimi
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: aloitteestaan
|
39
|
+
other: Initatives
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: pääsihteerien
|
42
|
+
other: Valiokunnat
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Allekirjoitus
|
45
|
+
other: allekirjoitukset
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ fi:
|
|
57
68
|
titles:
|
58
69
|
initiatives: aloitteita
|
59
70
|
initiatives_types: Aloitustyypit
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: Aloite %{resource_title} on saavuttanut %{percentage}% allekirjoituksista!
|
75
|
+
email_outro: Olet saanut tämän ilmoituksen, koska seuraat %{resource_title}. Voit lopettaa ilmoitusten vastaanottamisen edellisen linkin jälkeen.
|
76
|
+
email_subject: Uusi virstanpylväs valmis!
|
77
|
+
notification_title: Aloite <a href="%{resource_path}">%{resource_title}</a> on saavuttanut %{percentage}% allekirjoituksista.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ fi:
|
|
214
232
|
title: aloitteita
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error:
|
235
|
+
error: Aloitteita allekirjoitettaessa on ollut virheitä.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: poistettu
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: ja vielä yksi henkilö
|
242
|
+
other: ja %{count} muuta ihmistä
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} aloite"
|
@@ -242,7 +264,7 @@ fi:
|
|
242
264
|
orders:
|
243
265
|
label: 'Lajittele aloitteita:'
|
244
266
|
most_commented: Useimmat kommentoi
|
245
|
-
most_voted:
|
267
|
+
most_voted: Useimmat allekirjoittivat
|
246
268
|
random: satunnainen
|
247
269
|
recent: Viimeisin
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ fi:
|
|
253
275
|
offline_method: Tämä kansalaisaloitteet kerää vain kasvotusten tuet.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Valitse käyttäjän identiteetti
|
278
|
+
signatures_count:
|
279
|
+
one: " allekirjoitus"
|
280
|
+
other: " allekirjoituksia"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: avustajat
|
258
283
|
comments_count_title: Kommentit
|
259
284
|
meetings_count_title: kokoukset
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: allekirjoitukset
|
261
286
|
supports:
|
262
|
-
title:
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " tuki"
|
266
|
-
other: " tukee"
|
287
|
+
title: Allekirjoitusten luettelo
|
267
288
|
vote_cabin:
|
268
|
-
already_voted: Jo
|
269
|
-
supports_required: "%{total_supports}
|
289
|
+
already_voted: Jo allekirjoitettu
|
290
|
+
supports_required: "%{total_supports} allekirjoitusta vaaditaan"
|
270
291
|
vote: Merkki
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: Allekirjoitus poistettu käytöstä
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: ALLEKIRJOITUS
|
data/config/locales/fr.yml
CHANGED
@@ -32,6 +32,17 @@ fr:
|
|
32
32
|
address: Adresse
|
33
33
|
id_document: CAF
|
34
34
|
name: Nom complet
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Initatif
|
39
|
+
other: Initiatives
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: Comité
|
42
|
+
other: Comités
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Signature
|
45
|
+
other: Signatures
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ fr:
|
|
57
68
|
titles:
|
58
69
|
initiatives: Initiatives
|
59
70
|
initiatives_types: Types d'initiative
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: L'initiative %{resource_title} a atteint le %{percentage}% de signatures!
|
75
|
+
email_outro: Vous avez reçu cette notification parce que vous suivez %{resource_title}. Vous pouvez arrêter de recevoir des notifications en suivant le lien précédent.
|
76
|
+
email_subject: Nouvelle étape franchie!
|
77
|
+
notification_title: L'initiative <a href="%{resource_path}">%{resource_title}</a> a atteint les %{percentage}% de signatures.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ fr:
|
|
214
232
|
title: Initiatives
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error: Il y a eu des erreurs lors
|
235
|
+
error: Il y a eu des erreurs lors de la signature de l'initiative.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: Supprimé
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: et 1 autre personne
|
242
|
+
other: et %{count} autres personnes
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} initiative"
|
@@ -242,7 +264,7 @@ fr:
|
|
242
264
|
orders:
|
243
265
|
label: 'Trier les initiatives par:'
|
244
266
|
most_commented: Le plus commenté
|
245
|
-
most_voted: Le plus
|
267
|
+
most_voted: Le plus signé
|
246
268
|
random: au hasard
|
247
269
|
recent: Le plus récent
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ fr:
|
|
253
275
|
offline_method: Cette initiative citoyenne ne recueille que des soutiens face à face.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Sélectionnez l'identité de l'utilisateur
|
278
|
+
signatures_count:
|
279
|
+
one: " Signature"
|
280
|
+
other: " signatures"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: Assistants
|
258
283
|
comments_count_title: commentaires
|
259
284
|
meetings_count_title: Réunions
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: Signatures
|
261
286
|
supports:
|
262
|
-
title: Liste des
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " soutien"
|
266
|
-
other: " les soutiens"
|
287
|
+
title: Liste des signatures
|
267
288
|
vote_cabin:
|
268
|
-
already_voted: Déjà
|
269
|
-
supports_required: "%{total_supports}
|
289
|
+
already_voted: Déjà signé
|
290
|
+
supports_required: "%{total_supports} signatures requises"
|
270
291
|
vote: Signe
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: Signature désactivée
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: SIGNATURE
|
data/config/locales/gl.yml
CHANGED
@@ -32,6 +32,17 @@ gl:
|
|
32
32
|
address: Enderezo
|
33
33
|
id_document: CIF
|
34
34
|
name: Nome completo
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Initativo
|
39
|
+
other: Iniciais
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: Comite
|
42
|
+
other: Comités
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Sinatura
|
45
|
+
other: Sinaturas
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ gl:
|
|
57
68
|
titles:
|
58
69
|
initiatives: Iniciativas
|
59
70
|
initiatives_types: Tipos de iniciativa
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: A iniciativa %{resource_title} alcanzou o %{percentage}% das sinaturas.
|
75
|
+
email_outro: Recibiches esta notificación porque estás seguindo %{resource_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
76
|
+
email_subject: Novo fito rematado!
|
77
|
+
notification_title: A iniciativa <a href="%{resource_path}">%{resource_title}</a> acadou o %{percentage}% das sinaturas.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ gl:
|
|
214
232
|
title: Iniciativas
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error: Houbo erros ao
|
235
|
+
error: Houbo erros ao asinar a iniciativa.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: Eliminado
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: e 1 persoa máis
|
242
|
+
other: e %{count} persoas máis
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "Iniciativa %{count}"
|
@@ -242,7 +264,7 @@ gl:
|
|
242
264
|
orders:
|
243
265
|
label: 'Ordenar iniciativas por:'
|
244
266
|
most_commented: A maioría comentada
|
245
|
-
most_voted:
|
267
|
+
most_voted: Máis asinado
|
246
268
|
random: Aleatorio
|
247
269
|
recent: Máis recente
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ gl:
|
|
253
275
|
offline_method: Esta iniciativa cidadá só recolle apoios cara a cara.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Seleccionar a identidade do usuario
|
278
|
+
signatures_count:
|
279
|
+
one: " sinatura"
|
280
|
+
other: " sinaturas"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: Asistentes
|
258
283
|
comments_count_title: Comentarios
|
259
284
|
meetings_count_title: Reunións
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: Sinaturas
|
261
286
|
supports:
|
262
|
-
title: Listado de
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " apoiar"
|
266
|
-
other: " soportes"
|
287
|
+
title: Listado de sinaturas
|
267
288
|
vote_cabin:
|
268
|
-
already_voted: Xa
|
269
|
-
supports_required: "
|
289
|
+
already_voted: Xa está asinado
|
290
|
+
supports_required: "Requírense as %{total_supports} firmas"
|
270
291
|
vote: Iniciar sesión
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: A sinatura está desactivada
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: FIRMA
|
data/config/locales/it.yml
CHANGED
@@ -32,6 +32,17 @@ it:
|
|
32
32
|
address: Indirizzo
|
33
33
|
id_document: CIF
|
34
34
|
name: Nome completo
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Initative
|
39
|
+
other: Interventi a favore
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: Comitato di
|
42
|
+
other: COMITATI
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Firma
|
45
|
+
other: firme
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ it:
|
|
57
68
|
titles:
|
58
69
|
initiatives: iniziative
|
59
70
|
initiatives_types: Tipi di iniziativa
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: L'iniziativa %{resource_title} ha raggiunto l' %{percentage}% delle firme!
|
75
|
+
email_outro: Hai ricevuto questa notifica perché stai seguendo %{resource_title}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
|
76
|
+
email_subject: Nuova pietra miliare completata!
|
77
|
+
notification_title: L'iniziativa <a href="%{resource_path}">%{resource_title}</a> ha raggiunto il %{percentage}% delle firme.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ it:
|
|
214
232
|
title: iniziative
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error: Ci sono stati errori
|
235
|
+
error: Ci sono stati degli errori durante la firma dell'iniziativa.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: eliminata
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: e 1 altra persona
|
242
|
+
other: e altre %{count} persone
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} iniziativa"
|
@@ -242,7 +264,7 @@ it:
|
|
242
264
|
orders:
|
243
265
|
label: 'Ordina le iniziative per:'
|
244
266
|
most_commented: Più commentato
|
245
|
-
most_voted: Più
|
267
|
+
most_voted: Più firmato
|
246
268
|
random: Casuale
|
247
269
|
recent: Piu recente
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ it:
|
|
253
275
|
offline_method: Questa iniziativa cittadina raccoglie solo supporti faccia a faccia.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Seleziona l'identità dell'utente
|
278
|
+
signatures_count:
|
279
|
+
one: " firma"
|
280
|
+
other: " firme"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: assistenti
|
258
283
|
comments_count_title: Commenti
|
259
284
|
meetings_count_title: incontri
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: firme
|
261
286
|
supports:
|
262
|
-
title: Elenco delle
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " supporto"
|
266
|
-
other: " supporti"
|
287
|
+
title: Elenco delle firme
|
267
288
|
vote_cabin:
|
268
|
-
already_voted: Già
|
269
|
-
supports_required: "%{total_supports}
|
289
|
+
already_voted: Già firmato
|
290
|
+
supports_required: "%{total_supports} firme richieste"
|
270
291
|
vote: Cartello
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: Firma disabilitata
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: FIRMA
|
data/config/locales/nl.yml
CHANGED
@@ -32,6 +32,17 @@ nl:
|
|
32
32
|
address: Adres
|
33
33
|
id_document: CIF
|
34
34
|
name: Volledige naam
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Initiative
|
39
|
+
other: initatieven
|
40
|
+
decidim/initiative_comittee:
|
41
|
+
one: Comittee
|
42
|
+
other: Comités
|
43
|
+
decidim/initiative_vote:
|
44
|
+
one: Handtekening
|
45
|
+
other: handtekeningen
|
35
46
|
decidim:
|
36
47
|
admin:
|
37
48
|
menu:
|
@@ -57,6 +68,13 @@ nl:
|
|
57
68
|
titles:
|
58
69
|
initiatives: initiatieven
|
59
70
|
initiatives_types: Initiatieftypen
|
71
|
+
events:
|
72
|
+
initiatives:
|
73
|
+
milestone_completed:
|
74
|
+
email_intro: Het initiatief %{resource_title} heeft de %{percentage}% handtekeningen bereikt!
|
75
|
+
email_outro: Je hebt deze melding ontvangen omdat je %{resource_title}volgt. Je kunt stoppen met het ontvangen van meldingen na de vorige link.
|
76
|
+
email_subject: Nieuwe mijlpaal voltooid!
|
77
|
+
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief heeft de %{percentage}% handtekeningen behaald.
|
60
78
|
initiatives:
|
61
79
|
admin:
|
62
80
|
committee_requests:
|
@@ -214,10 +232,14 @@ nl:
|
|
214
232
|
title: initiatieven
|
215
233
|
initiative_votes:
|
216
234
|
create:
|
217
|
-
error: Er zijn fouten opgetreden bij het
|
235
|
+
error: Er zijn fouten opgetreden bij het ondertekenen van het initiatief.
|
218
236
|
initiatives:
|
219
237
|
author:
|
220
238
|
deleted: verwijderde
|
239
|
+
author_list:
|
240
|
+
hidden_authors_count:
|
241
|
+
one: en nog 1 persoon
|
242
|
+
other: en nog %{count} mensen
|
221
243
|
count:
|
222
244
|
title:
|
223
245
|
one: "%{count} initiatief"
|
@@ -242,7 +264,7 @@ nl:
|
|
242
264
|
orders:
|
243
265
|
label: 'Sorteer initiatieven op:'
|
244
266
|
most_commented: Meest gereageerd
|
245
|
-
most_voted: Meest
|
267
|
+
most_voted: Meest ondertekend
|
246
268
|
random: Willekeurig
|
247
269
|
recent: Meest recente
|
248
270
|
result:
|
@@ -253,22 +275,21 @@ nl:
|
|
253
275
|
offline_method: Dit burgerinitiatief verzamelt alleen face-to-face stemmen.
|
254
276
|
signature_identities:
|
255
277
|
select_identity: Selecteer gebruikersidentiteit
|
278
|
+
signatures_count:
|
279
|
+
one: " handtekening"
|
280
|
+
other: " handtekeningen"
|
256
281
|
statistics:
|
257
282
|
assistants_count_title: assistenten
|
258
283
|
comments_count_title: Reacties
|
259
284
|
meetings_count_title: Events
|
260
|
-
supports_count_title:
|
285
|
+
supports_count_title: handtekeningen
|
261
286
|
supports:
|
262
|
-
title: Lijst van
|
263
|
-
supports_count:
|
264
|
-
count:
|
265
|
-
one: " ondersteuning"
|
266
|
-
other: " ondersteuningen"
|
287
|
+
title: Lijst van handtekeningen
|
267
288
|
vote_cabin:
|
268
|
-
already_voted:
|
269
|
-
supports_required: "%{total_supports}
|
289
|
+
already_voted: Al getekend
|
290
|
+
supports_required: "%{total_supports} handtekeningen vereist"
|
270
291
|
vote: Teken
|
271
|
-
votes_blocked:
|
292
|
+
votes_blocked: Ondertekenen uitgeschakeld
|
272
293
|
votes_count:
|
273
294
|
count:
|
274
295
|
one: HANDTEKENING
|
data/config/locales/pl.yml
CHANGED
@@ -32,6 +32,23 @@ pl:
|
|
32
32
|
address: Adres
|
33
33
|
id_document: CIF
|
34
34
|
name: Pełne imię
|
35
|
+
activerecord:
|
36
|
+
models:
|
37
|
+
decidim/initiative:
|
38
|
+
one: Initative
|
39
|
+
few: Inicjatywy
|
40
|
+
many: Inicjatywy
|
41
|
+
other: Inicjatywy
|
42
|
+
decidim/initiative_comittee:
|
43
|
+
one: Komitet
|
44
|
+
few: Komitety
|
45
|
+
many: Komitety
|
46
|
+
other: Komitety
|
47
|
+
decidim/initiative_vote:
|
48
|
+
one: Podpis
|
49
|
+
few: Podpisy
|
50
|
+
many: Podpisy
|
51
|
+
other: Podpisy
|
35
52
|
decidim:
|
36
53
|
admin:
|
37
54
|
menu:
|
@@ -57,6 +74,13 @@ pl:
|
|
57
74
|
titles:
|
58
75
|
initiatives: Inicjatywy
|
59
76
|
initiatives_types: Rodzaje inicjatyw
|
77
|
+
events:
|
78
|
+
initiatives:
|
79
|
+
milestone_completed:
|
80
|
+
email_intro: Inicjatywa %{resource_title} osiągnęła %{percentage}% podpisów!
|
81
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{resource_title}. Możesz przestać otrzymywać powiadomienia po poprzednim linku.
|
82
|
+
email_subject: Nowy kamień milowy zakończony!
|
83
|
+
notification_title: Inicjatywa <a href="%{resource_path}">%{resource_title}</a> osiągnęła %{percentage}% podpisów.
|
60
84
|
initiatives:
|
61
85
|
admin:
|
62
86
|
committee_requests:
|
@@ -214,10 +238,16 @@ pl:
|
|
214
238
|
title: Inicjatywy
|
215
239
|
initiative_votes:
|
216
240
|
create:
|
217
|
-
error: Podczas
|
241
|
+
error: Podczas podpisywania inicjatywy wystąpiły błędy.
|
218
242
|
initiatives:
|
219
243
|
author:
|
220
244
|
deleted: Usunięto
|
245
|
+
author_list:
|
246
|
+
hidden_authors_count:
|
247
|
+
one: i jeszcze 1 osoba
|
248
|
+
few: i %{count} więcej osób
|
249
|
+
many: i %{count} więcej osób
|
250
|
+
other: i %{count} więcej osób
|
221
251
|
count:
|
222
252
|
title:
|
223
253
|
one: "%{count} inicjatywa"
|
@@ -244,7 +274,7 @@ pl:
|
|
244
274
|
orders:
|
245
275
|
label: 'Sortuj inicjatywy według:'
|
246
276
|
most_commented: Najczęściej komentowane
|
247
|
-
most_voted: Większość
|
277
|
+
most_voted: Większość podpisana
|
248
278
|
random: Losowy
|
249
279
|
recent: Najnowszy
|
250
280
|
result:
|
@@ -255,24 +285,23 @@ pl:
|
|
255
285
|
offline_method: Ta inicjatywa obywatelska zbiera jedynie osobiste wsparcie.
|
256
286
|
signature_identities:
|
257
287
|
select_identity: Wybierz tożsamość użytkownika
|
288
|
+
signatures_count:
|
289
|
+
one: " podpis"
|
290
|
+
few: " podpisy"
|
291
|
+
many: " podpisy"
|
292
|
+
other: " podpisy"
|
258
293
|
statistics:
|
259
294
|
assistants_count_title: Asystenci
|
260
295
|
comments_count_title: Komentarze
|
261
296
|
meetings_count_title: Spotkania
|
262
|
-
supports_count_title:
|
297
|
+
supports_count_title: Podpisy
|
263
298
|
supports:
|
264
|
-
title: Lista
|
265
|
-
supports_count:
|
266
|
-
count:
|
267
|
-
one: " wsparcie"
|
268
|
-
few: " obsługuje"
|
269
|
-
many: " obsługuje"
|
270
|
-
other: " obsługuje"
|
299
|
+
title: Lista podpisów
|
271
300
|
vote_cabin:
|
272
|
-
already_voted: Już
|
273
|
-
supports_required: "%{total_supports}
|
301
|
+
already_voted: Już podpisane
|
302
|
+
supports_required: "Wymagane %{total_supports} podpisów"
|
274
303
|
vote: Znak
|
275
|
-
votes_blocked:
|
304
|
+
votes_blocked: Podpisywanie wyłączone
|
276
305
|
votes_count:
|
277
306
|
count:
|
278
307
|
one: PODPIS
|