decidim-initiatives 0.29.2 → 0.30.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_settings_form/show.erb +1 -1
- data/app/commands/decidim/initiatives/create_initiative.rb +16 -4
- data/app/commands/decidim/initiatives/update_initiative.rb +23 -9
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/application_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/component_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/initiatives/admin/initiative_share_tokens_controller.rb +18 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +8 -8
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +3 -2
- data/app/controllers/decidim/initiatives/initiative_types_controller.rb +1 -1
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +3 -0
- data/app/forms/decidim/initiatives/admin/initiative_answer_form.rb +1 -1
- data/app/forms/decidim/initiatives/vote_form.rb +1 -1
- data/app/helpers/decidim/initiatives/initiative_helper.rb +1 -39
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +8 -5
- data/app/helpers/decidim/initiatives/scopes_helper.rb +43 -0
- data/app/jobs/decidim/initiatives/export_initiatives_job.rb +5 -1
- data/app/models/decidim/initiative.rb +40 -27
- data/app/models/decidim/initiatives_type_scope.rb +9 -0
- data/app/permissions/decidim/initiatives/admin/permissions.rb +7 -0
- data/app/permissions/decidim/initiatives/permissions.rb +10 -3
- data/app/queries/decidim/initiatives/outdated_validating_initiatives.rb +1 -1
- data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +2 -2
- data/app/serializers/decidim/initiatives/download_your_data_initiative_serializer.rb +15 -0
- data/app/serializers/decidim/initiatives/initiative_serializer.rb +5 -24
- data/app/serializers/decidim/initiatives/open_data_initiative_serializer.rb +54 -0
- data/app/services/decidim/initiatives/data_encryptor.rb +1 -1
- data/app/services/decidim/initiatives/pdf_signature_example.rb +0 -2
- data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +1 -2
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +7 -0
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +1 -2
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +3 -3
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +10 -2
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +16 -13
- data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +9 -3
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/show.html.erb +7 -8
- data/app/views/layouts/decidim/admin/_manage_initiatives.html.erb +11 -0
- data/app/views/layouts/decidim/admin/initiatives.html.erb +1 -9
- data/config/assets.rb +1 -3
- data/config/locales/ar.yml +7 -8
- data/config/locales/bg.yml +2 -22
- data/config/locales/ca.yml +55 -21
- data/config/locales/cs.yml +55 -21
- data/config/locales/de.yml +55 -21
- data/config/locales/el.yml +2 -9
- data/config/locales/en.yml +53 -19
- data/config/locales/es-MX.yml +55 -21
- data/config/locales/es-PY.yml +55 -21
- data/config/locales/es.yml +55 -21
- data/config/locales/eu.yml +55 -21
- data/config/locales/fi-plain.yml +55 -21
- data/config/locales/fi.yml +55 -21
- data/config/locales/fr-CA.yml +9 -22
- data/config/locales/fr.yml +9 -22
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +2 -10
- data/config/locales/hu.yml +2 -20
- data/config/locales/id-ID.yml +2 -8
- data/config/locales/is-IS.yml +0 -9
- data/config/locales/it.yml +2 -11
- data/config/locales/ja.yml +55 -21
- data/config/locales/lb.yml +2 -7
- data/config/locales/lt.yml +2 -22
- data/config/locales/lv.yml +2 -9
- data/config/locales/nl.yml +2 -11
- data/config/locales/no.yml +2 -13
- data/config/locales/pl.yml +2 -21
- data/config/locales/pt-BR.yml +2 -27
- data/config/locales/pt.yml +2 -11
- data/config/locales/ro-RO.yml +2 -19
- data/config/locales/ru.yml +0 -9
- data/config/locales/sk.yml +2 -8
- data/config/locales/sl.yml +0 -1
- data/config/locales/sv.yml +12 -21
- data/config/locales/tr-TR.yml +2 -11
- data/config/locales/uk.yml +0 -9
- data/config/locales/zh-CN.yml +2 -10
- data/config/locales/zh-TW.yml +2 -21
- data/db/migrate/20241127104718_add_taxonomy_to_initiatives_type_scope.rb +7 -0
- data/decidim-initiatives.gemspec +1 -3
- data/lib/decidim/api/initiative_api_type.rb +9 -10
- data/lib/decidim/api/initiative_committee_member_type.rb +3 -4
- data/lib/decidim/api/initiative_type.rb +15 -21
- data/lib/decidim/api/initiative_type_interface.rb +1 -5
- data/lib/decidim/exporters/initiative_votes_pdf.rb +163 -0
- data/lib/decidim/initiatives/admin_engine.rb +68 -49
- data/lib/decidim/initiatives/application_form_pdf.rb +181 -0
- data/lib/decidim/initiatives/engine.rb +6 -0
- data/lib/decidim/initiatives/menu.rb +8 -0
- data/lib/decidim/initiatives/participatory_space.rb +8 -1
- data/lib/decidim/initiatives/test/factories.rb +5 -8
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/decidim/initiatives.rb +7 -1
- metadata +25 -59
- data/app/cells/decidim/initiatives_votes/vote/show.erb +0 -39
- data/app/cells/decidim/initiatives_votes/vote_cell.rb +0 -58
- data/app/packs/entrypoints/decidim_initiatives_initiatives_votes.js +0 -1
- data/app/packs/entrypoints/decidim_initiatives_initiatives_votes.scss +0 -1
- data/app/packs/entrypoints/decidim_initiatives_print.js +0 -1
- data/app/packs/entrypoints/decidim_initiatives_print.scss +0 -1
- data/app/packs/stylesheets/decidim/initiatives/initiatives-votes.scss +0 -96
- data/app/packs/stylesheets/decidim/initiatives/print-initiative.scss +0 -172
- data/app/views/decidim/initiatives/admin/initiatives/_signatures.html.erb +0 -87
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.html.erb +0 -8
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.pdf.erb +0 -5
- data/app/views/decidim/initiatives/initiatives/_linked_initiatives.html.erb +0 -0
- data/app/views/decidim/initiatives/initiatives/print.html.erb +0 -161
- data/app/views/layouts/decidim/admin/initiatives_votes.pdf.erb +0 -11
- data/config/initializers/wicked_pdf.rb +0 -22
data/config/locales/no.yml
CHANGED
@@ -74,7 +74,6 @@
|
|
74
74
|
accepted: Nok signaturer
|
75
75
|
created: Opprettet
|
76
76
|
discarded: Forkastet
|
77
|
-
published: Publisert
|
78
77
|
rejected: Ikke nok signaturer
|
79
78
|
validating: Teknisk validering
|
80
79
|
type_id_eq:
|
@@ -120,8 +119,6 @@
|
|
120
119
|
initiative_title: Tittel på initiativet
|
121
120
|
name_and_surname: Navn og etternavn
|
122
121
|
postal_code: Postnummer
|
123
|
-
scope: Tema
|
124
|
-
time_and_date: Tid og dato
|
125
122
|
timestamp: Tidsstempel
|
126
123
|
titles:
|
127
124
|
initiatives: Initiativer
|
@@ -164,8 +161,8 @@
|
|
164
161
|
badges:
|
165
162
|
initiatives:
|
166
163
|
conditions:
|
167
|
-
|
168
|
-
|
164
|
+
- Gå til deltakelsesområdet av Initiativer
|
165
|
+
- Følg trinnene for å opprette et nytt initiativ
|
169
166
|
description: Dette merket blir gitt når du setter i gang nye initiativer, og samarbeider med andre for å gjennomføre dem.
|
170
167
|
description_another: Denne deltakeren har fått %{score} initiativer publisert.
|
171
168
|
name: Publiserte initiativ
|
@@ -269,7 +266,6 @@
|
|
269
266
|
accepted: Nok signaturer
|
270
267
|
created: Opprettet
|
271
268
|
discarded: Forkastet
|
272
|
-
published: Publisert
|
273
269
|
rejected: Ikke nok signaturer
|
274
270
|
validating: Teknisk validering
|
275
271
|
application_helper:
|
@@ -356,8 +352,6 @@
|
|
356
352
|
email_outro: 'Du mottok dette varselet fordi du søkte på dette initiativet: %{resource_title}.'
|
357
353
|
email_subject: "%{author_nickname} avviste din søknad til promotørkomiteen"
|
358
354
|
notification_title: <a href="%{author_profile_url}">%{author_nickname}</a> avviste søknaden din om å være en del av promotørutvalget i følgende initiativ <a href="%{resource_url}">%{resource_title}</a>.
|
359
|
-
form:
|
360
|
-
attachment_legend: "(Valgfritt) Legg til et vedlegg"
|
361
355
|
initiative_signatures:
|
362
356
|
fill_personal_data:
|
363
357
|
continue: Fortsett
|
@@ -430,9 +424,7 @@
|
|
430
424
|
phone_number: Telefonnummer
|
431
425
|
place_date: Sted, dato
|
432
426
|
postal_code: Postnummer
|
433
|
-
print: Skriv ut
|
434
427
|
province: Fylke
|
435
|
-
section: 'Hvis organisasjonen ber om det, vennligst skriv ut og fyll ut dette skjemaet for å levere der det angitt:'
|
436
428
|
signature: Signatur
|
437
429
|
result:
|
438
430
|
initiative_rejected_reason: Dette initiativet er blitt avvist på grunn av manglende underskrifter.
|
@@ -445,7 +437,6 @@
|
|
445
437
|
other: " underskrifter"
|
446
438
|
vote_cabin:
|
447
439
|
already_voted: Allerede signert
|
448
|
-
verification_required: Verifiser kontoen din for å signere initiativet
|
449
440
|
vote: Signer
|
450
441
|
votes_blocked: Underskriving deaktivert
|
451
442
|
votes_count:
|
@@ -473,7 +464,6 @@
|
|
473
464
|
accepted: Nok signaturer
|
474
465
|
created: Opprettet
|
475
466
|
discarded: Forkastet
|
476
|
-
published: Publisert
|
477
467
|
rejected: Ikke nok signaturer
|
478
468
|
validating: Teknisk validering
|
479
469
|
states:
|
@@ -488,7 +478,6 @@
|
|
488
478
|
comment: Kommenter
|
489
479
|
initiatives_type:
|
490
480
|
actions:
|
491
|
-
create: Opprett
|
492
481
|
title: Handlinger
|
493
482
|
vote: Signer
|
494
483
|
layouts:
|
data/config/locales/pl.yml
CHANGED
@@ -98,7 +98,6 @@ pl:
|
|
98
98
|
accepted: Wystarczająca liczba podpisów
|
99
99
|
created: Utworzono
|
100
100
|
discarded: Odrzucono
|
101
|
-
published: Opublikowano
|
102
101
|
rejected: Niewystarczająca liczba podpisów
|
103
102
|
validating: Walidacja techniczna
|
104
103
|
type_id_eq:
|
@@ -107,7 +106,6 @@ pl:
|
|
107
106
|
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Wyszukaj %{collection} według tytułu, opisu, ID lub nazwy autora.
|
108
107
|
initiatives_settings:
|
109
108
|
update:
|
110
|
-
error: Wystąpił błąd.
|
111
109
|
success: Ustawienia inicjatyw zostały pomyślnie zaktualizowane.
|
112
110
|
menu:
|
113
111
|
attachments: Załączniki
|
@@ -153,8 +151,6 @@ pl:
|
|
153
151
|
initiative_title: Tytuł inicjatywy
|
154
152
|
name_and_surname: Imię i nazwisko
|
155
153
|
postal_code: Kod pocztowy
|
156
|
-
scope: Zakres
|
157
|
-
time_and_date: Czas i data
|
158
154
|
timestamp: Znacznik czasu
|
159
155
|
titles:
|
160
156
|
initiatives: Inicjatywy
|
@@ -197,8 +193,8 @@ pl:
|
|
197
193
|
badges:
|
198
194
|
initiatives:
|
199
195
|
conditions:
|
200
|
-
|
201
|
-
|
196
|
+
- Idź do przestrzeni partycypacyjnej Inicjatyw
|
197
|
+
- Postępuj zgodnie z instrukcjami, aby utworzyć nową inicjatywę
|
202
198
|
description: Ta odznaka jest przyznawana, gdy tworzysz nowe inicjatywy, współpracując z innymi, aby je zrealizować.
|
203
199
|
description_another: Ten użytkownik posiada %{score} opublikowanych inicjatyw.
|
204
200
|
description_own: Masz %{score} opublikowanych inicjatyw.
|
@@ -272,7 +268,6 @@ pl:
|
|
272
268
|
new: Nowy
|
273
269
|
photos: Zdjęcia
|
274
270
|
update:
|
275
|
-
error: Wystąpił błąd.
|
276
271
|
success: Inicjatywa została zaktualizowana.
|
277
272
|
initiatives_settings:
|
278
273
|
edit:
|
@@ -286,7 +281,6 @@ pl:
|
|
286
281
|
title: Ustawienia dla inicjatyw
|
287
282
|
initiatives_type_scopes:
|
288
283
|
create:
|
289
|
-
error: Wystąpił błąd.
|
290
284
|
success: Utworzono nowy zakres dla danego typu inicjatywy.
|
291
285
|
destroy:
|
292
286
|
success: Zakres został pomyślnie usunięty.
|
@@ -297,11 +291,9 @@ pl:
|
|
297
291
|
create: Utwórz
|
298
292
|
title: Utwórz zakres typu inicjatywy
|
299
293
|
update:
|
300
|
-
error: Wystąpił błąd.
|
301
294
|
success: Zakres został zaktualizowany.
|
302
295
|
initiatives_types:
|
303
296
|
create:
|
304
|
-
error: Wystąpił błąd.
|
305
297
|
success: Nowy typ inicjatywy został pomyślnie utworzony. Musisz zdefiniować co najmniej jeden zakres dla tego typu inicjatywy, aby można go było użyć.
|
306
298
|
destroy:
|
307
299
|
success: Typ inicjatywy został usunięty.
|
@@ -318,7 +310,6 @@ pl:
|
|
318
310
|
create: Utwórz
|
319
311
|
title: Nowy typ inicjatywy
|
320
312
|
update:
|
321
|
-
error: Wystąpił błąd.
|
322
313
|
success: Typ inicjatywy został zaktualizowany.
|
323
314
|
admin_log:
|
324
315
|
initiative:
|
@@ -336,7 +327,6 @@ pl:
|
|
336
327
|
accepted: Wystarczająca liczba podpisów
|
337
328
|
created: Utworzono
|
338
329
|
discarded: Odrzucono
|
339
|
-
published: Opublikowano
|
340
330
|
rejected: Niewystarczająca liczba podpisów
|
341
331
|
validating: Weryfikacja techniczna
|
342
332
|
application_helper:
|
@@ -434,10 +424,7 @@ pl:
|
|
434
424
|
email_subject: "%{applicant_nickname} chce dołączyć do Twojej inicjatywy"
|
435
425
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> złożył wniosek na członka komitetu organizacyjnego Twojej inicjatywy <a href="%{resource_url}">%{resource_title}</a>. Aby zaakceptować lub odrzucić kliknij <a href="%{resource_url}/edit">tutaj</a>.
|
436
426
|
form:
|
437
|
-
add_documents: Dodaj dokumenty
|
438
427
|
add_image: Dodaj obraz
|
439
|
-
attachment_legend: "(Opcjonalnie) Dodaj załącznik"
|
440
|
-
edit_documents: Edytuj dokumenty
|
441
428
|
edit_image: Edytuj obraz
|
442
429
|
image_legend: "(Opcjonalnie) Dodaj obraz"
|
443
430
|
index:
|
@@ -532,9 +519,7 @@ pl:
|
|
532
519
|
phone_number: Numer telefonu
|
533
520
|
place_date: Miejsce, data
|
534
521
|
postal_code: Kod pocztowy
|
535
|
-
print: Drukuj
|
536
522
|
province: Województwo
|
537
|
-
section: 'Na wniosek organizacji proszę wydrukować i wypełnić niniejszy formularz w celu przesłania, jeśli jest to wskazane:'
|
538
523
|
signature: Podpis
|
539
524
|
result:
|
540
525
|
answer_title: Odpowiedziano na tę inicjatywę.
|
@@ -558,7 +543,6 @@ pl:
|
|
558
543
|
other: " podpisy"
|
559
544
|
vote_cabin:
|
560
545
|
already_voted: Już podpisano
|
561
|
-
verification_required: Zweryfikuj swoje konto, aby podpisać inicjatywę
|
562
546
|
vote: Podpisz
|
563
547
|
votes_blocked: Podpisywanie wyłączone
|
564
548
|
votes_count:
|
@@ -595,7 +579,6 @@ pl:
|
|
595
579
|
accepted: Wystarczająca liczba podpisów
|
596
580
|
created: Utworzone
|
597
581
|
discarded: Odrzucone
|
598
|
-
published: Opublikowane
|
599
582
|
rejected: Niewystarczająca liczba podpisów
|
600
583
|
validating: Walidacja techniczna
|
601
584
|
states:
|
@@ -603,7 +586,6 @@ pl:
|
|
603
586
|
expired: Przedawnione
|
604
587
|
unavailable_scope: Niedostępny zakres
|
605
588
|
update:
|
606
|
-
error: Wystąpił błąd.
|
607
589
|
success: Inicjatywa została zaktualizowana.
|
608
590
|
menu:
|
609
591
|
initiatives: Inicjatywy
|
@@ -613,7 +595,6 @@ pl:
|
|
613
595
|
comment: Skomentuj
|
614
596
|
initiatives_type:
|
615
597
|
actions:
|
616
|
-
create: Utwórz
|
617
598
|
title: Działania
|
618
599
|
vote: Wspieranie
|
619
600
|
layouts:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -80,7 +80,6 @@ pt-BR:
|
|
80
80
|
accepted: Assinaturas suficientes
|
81
81
|
created: Criado
|
82
82
|
discarded: Descartado
|
83
|
-
published: Publicado
|
84
83
|
rejected: Não há assinaturas suficientes
|
85
84
|
validating: Validação técnica
|
86
85
|
type_id_eq:
|
@@ -89,7 +88,6 @@ pt-BR:
|
|
89
88
|
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Pesquisar %{collection} por título, descrição, ID ou nome do autor.
|
90
89
|
initiatives_settings:
|
91
90
|
update:
|
92
|
-
error: Ocorreu um erro.
|
93
91
|
success: As configurações de iniciativas foram atualizadas com sucesso.
|
94
92
|
menu:
|
95
93
|
attachments: Anexos
|
@@ -129,8 +127,6 @@ pt-BR:
|
|
129
127
|
initiative_title: Título da iniciativa
|
130
128
|
name_and_surname: Nome e sobrenome
|
131
129
|
postal_code: Código postal
|
132
|
-
scope: Escopo
|
133
|
-
time_and_date: Hora e data
|
134
130
|
timestamp: Timestamp
|
135
131
|
titles:
|
136
132
|
initiatives: Iniciativas
|
@@ -173,8 +169,8 @@ pt-BR:
|
|
173
169
|
badges:
|
174
170
|
initiatives:
|
175
171
|
conditions:
|
176
|
-
|
177
|
-
|
172
|
+
- Ir para o espaço de participação de Iniciativas
|
173
|
+
- Siga os passos para criar uma nova iniciativa
|
178
174
|
description: Esse selo é concedido quando você lança novas iniciativas, estabelecendo parcerias com outras pessoas para realizá-las.
|
179
175
|
description_another: Este usuário obteve %{score} iniciativas publicadas.
|
180
176
|
name: Iniciativas publicadas
|
@@ -238,8 +234,6 @@ pt-BR:
|
|
238
234
|
edit: Editar
|
239
235
|
new: Novo
|
240
236
|
photos: Fotos
|
241
|
-
update:
|
242
|
-
error: Ocorreu um erro.
|
243
237
|
initiatives_settings:
|
244
238
|
form:
|
245
239
|
comments: Mais comentado
|
@@ -249,19 +243,13 @@ pt-BR:
|
|
249
243
|
signatures: Mais assinadas
|
250
244
|
title: Configurações de iniciativas
|
251
245
|
initiatives_type_scopes:
|
252
|
-
create:
|
253
|
-
error: Ocorreu um erro.
|
254
246
|
edit:
|
255
247
|
title: Editar o âmbito do tipo de iniciativa
|
256
248
|
update: Atualizar
|
257
249
|
new:
|
258
250
|
create: Criar
|
259
251
|
title: Criar âmbito de tipo de iniciativa
|
260
|
-
update:
|
261
|
-
error: Ocorreu um erro.
|
262
252
|
initiatives_types:
|
263
|
-
create:
|
264
|
-
error: Ocorreu um erro.
|
265
253
|
edit:
|
266
254
|
update: Atualizar
|
267
255
|
form:
|
@@ -274,8 +262,6 @@ pt-BR:
|
|
274
262
|
new:
|
275
263
|
create: Criar
|
276
264
|
title: Novo tipo de iniciativa
|
277
|
-
update:
|
278
|
-
error: Ocorreu um erro.
|
279
265
|
admin_log:
|
280
266
|
initiative:
|
281
267
|
publish: "%{user_name} publicou a iniciativa %{resource_name}"
|
@@ -292,7 +278,6 @@ pt-BR:
|
|
292
278
|
accepted: Assinaturas suficientes
|
293
279
|
created: Criada
|
294
280
|
discarded: Descartado
|
295
|
-
published: Publicados
|
296
281
|
rejected: Não há assinaturas suficientes
|
297
282
|
validating: Validação técnica
|
298
283
|
application_helper:
|
@@ -388,10 +373,7 @@ pt-BR:
|
|
388
373
|
email_subject: "%{applicant_nickname} quer participar de sua iniciativa"
|
389
374
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> se candidatou ao comitê de promotores da sua iniciativa <a href="%{resource_url}">%{resource_title}</a>. Para aceitar ou rejeitar, clique <a href="%{resource_url}/edit">aqui</a>.
|
390
375
|
form:
|
391
|
-
add_documents: Adicionar Documentos
|
392
376
|
add_image: Adicionar imagem
|
393
|
-
attachment_legend: "(Opcional) Adicionar um anexo"
|
394
|
-
edit_documents: Editar documentos
|
395
377
|
edit_image: Editar imagem
|
396
378
|
image_legend: "(Opcional) Adicionar um anexo"
|
397
379
|
index:
|
@@ -470,9 +452,7 @@ pt-BR:
|
|
470
452
|
phone_number: Número de telefone
|
471
453
|
place_date: Local, data
|
472
454
|
postal_code: CEP/CEP
|
473
|
-
print: Impressão
|
474
455
|
province: Cidade/Estado
|
475
|
-
section: 'Se solicitado pela organização, por favor imprima e preencha este formulário para enviar quando indicado:'
|
476
456
|
signature: Assinatura
|
477
457
|
result:
|
478
458
|
initiative_rejected_reason: Esta iniciativa foi rejeitada devido à falta de suporte.
|
@@ -491,7 +471,6 @@ pt-BR:
|
|
491
471
|
other: " assinaturas"
|
492
472
|
vote_cabin:
|
493
473
|
already_voted: Já assinadas
|
494
|
-
verification_required: Confirme sua conta para assinar a iniciativa
|
495
474
|
vote: Placa
|
496
475
|
votes_blocked: Assinatura desativada
|
497
476
|
votes_count:
|
@@ -524,21 +503,17 @@ pt-BR:
|
|
524
503
|
accepted: Assinaturas suficientes
|
525
504
|
created: Criado
|
526
505
|
discarded: Descartado
|
527
|
-
published: Publicados
|
528
506
|
rejected: Não há assinaturas suficientes
|
529
507
|
validating: Validação técnica
|
530
508
|
states:
|
531
509
|
accepted: Aceitaram
|
532
510
|
expired: Expirado
|
533
511
|
unavailable_scope: Escopo não disponível
|
534
|
-
update:
|
535
|
-
error: Ocorreu um erro.
|
536
512
|
menu:
|
537
513
|
initiatives: Iniciativas
|
538
514
|
resources:
|
539
515
|
initiatives_type:
|
540
516
|
actions:
|
541
|
-
create: Criar
|
542
517
|
title: Ações
|
543
518
|
vote: Voto
|
544
519
|
layouts:
|
data/config/locales/pt.yml
CHANGED
@@ -74,7 +74,6 @@ pt:
|
|
74
74
|
accepted: Assinaturas suficientes
|
75
75
|
created: Criado
|
76
76
|
discarded: Abandonado
|
77
|
-
published: Publicado
|
78
77
|
rejected: Assinaturas insuficientes
|
79
78
|
validating: Validação técnica
|
80
79
|
type_id_eq:
|
@@ -119,8 +118,6 @@ pt:
|
|
119
118
|
initiative_title: Título da iniciativa
|
120
119
|
name_and_surname: Nome e apelido
|
121
120
|
postal_code: Código postal
|
122
|
-
scope: Âmbito
|
123
|
-
time_and_date: Hora e data
|
124
121
|
timestamp: Data e hora
|
125
122
|
titles:
|
126
123
|
initiatives: Iniciativas
|
@@ -163,8 +160,8 @@ pt:
|
|
163
160
|
badges:
|
164
161
|
initiatives:
|
165
162
|
conditions:
|
166
|
-
|
167
|
-
|
163
|
+
- Ir para o espaço de participação de Iniciativas
|
164
|
+
- Siga os passos para criar uma nova iniciativa
|
168
165
|
description: Este distintivo é concedido quando lança novas iniciativas, estabelecendo parcerias com outras pessoas para realizá-las.
|
169
166
|
description_another: Este participante teve %{score} iniciativas publicadas.
|
170
167
|
name: Iniciativas publicadas
|
@@ -256,7 +253,6 @@ pt:
|
|
256
253
|
accepted: Assinaturas suficientes
|
257
254
|
created: Criado
|
258
255
|
discarded: Descartado
|
259
|
-
published: Publicado
|
260
256
|
rejected: Assinaturas insuficientes
|
261
257
|
validating: Validação técnica
|
262
258
|
application_helper:
|
@@ -422,9 +418,7 @@ pt:
|
|
422
418
|
phone_number: Número de telefone
|
423
419
|
place_date: Local, data
|
424
420
|
postal_code: Código postal
|
425
|
-
print: Impressão
|
426
421
|
province: Província/Estado
|
427
|
-
section: 'Se for requerido pela organização, por favor imprima e preencha este formulário a submeter onde indicado:'
|
428
422
|
signature: Assinatura
|
429
423
|
result:
|
430
424
|
initiative_rejected_reason: Esta iniciativa foi rejeitada devido à falta de assinaturas.
|
@@ -437,7 +431,6 @@ pt:
|
|
437
431
|
other: " assinaturas"
|
438
432
|
vote_cabin:
|
439
433
|
already_voted: Já assinou
|
440
|
-
verification_required: Verifique a sua conta para assinar a iniciativa
|
441
434
|
vote: Assinar
|
442
435
|
votes_blocked: Assinatura desativada
|
443
436
|
votes_count:
|
@@ -465,7 +458,6 @@ pt:
|
|
465
458
|
accepted: Assinaturas suficientes
|
466
459
|
created: Criado
|
467
460
|
discarded: Eliminado
|
468
|
-
published: Publicado
|
469
461
|
rejected: Assinaturas insuficientes
|
470
462
|
validating: Verificação técnica
|
471
463
|
states:
|
@@ -480,7 +472,6 @@ pt:
|
|
480
472
|
comment: Comentários
|
481
473
|
initiatives_type:
|
482
474
|
actions:
|
483
|
-
create: Criar
|
484
475
|
title: Ações
|
485
476
|
vote: Assinar
|
486
477
|
layouts:
|
data/config/locales/ro-RO.yml
CHANGED
@@ -87,16 +87,12 @@ ro:
|
|
87
87
|
accepted: Semnături suficiente
|
88
88
|
created: Creat
|
89
89
|
discarded: Respins
|
90
|
-
published: Publicat
|
91
90
|
rejected: Semnături insuficiente
|
92
91
|
validating: Validarea tehnică
|
93
92
|
type_id_eq:
|
94
93
|
label: Tip
|
95
94
|
search_placeholder:
|
96
95
|
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Caută %{collection} după titlu, descriere, ID sau numele autorului.
|
97
|
-
initiatives_settings:
|
98
|
-
update:
|
99
|
-
error: A apărut o eroare.
|
100
96
|
menu:
|
101
97
|
attachments: Atașamente
|
102
98
|
committee_members: Membrii comitetului
|
@@ -135,8 +131,6 @@ ro:
|
|
135
131
|
initiative_title: Titlul inițiativei
|
136
132
|
name_and_surname: Nume și prenume
|
137
133
|
postal_code: Cod poștal
|
138
|
-
scope: Domeniu de interes
|
139
|
-
time_and_date: Ora și data
|
140
134
|
timestamp: Ora
|
141
135
|
titles:
|
142
136
|
initiatives: Inițiative
|
@@ -179,8 +173,8 @@ ro:
|
|
179
173
|
badges:
|
180
174
|
initiatives:
|
181
175
|
conditions:
|
182
|
-
|
183
|
-
|
176
|
+
- Mergeți la spațiul de participare al inițiativelor
|
177
|
+
- Urmează pașii necesari pentru a crea o nouă inițiativă
|
184
178
|
description: Această insignă este acordată atunci când lansezi noi inițiative, colaborând cu alții pentru a o realiza.
|
185
179
|
description_another: Acest participant a publicat %{score} inițiative.
|
186
180
|
name: Inițiative publicate
|
@@ -256,7 +250,6 @@ ro:
|
|
256
250
|
unpublish:
|
257
251
|
success: Inițiativa a fost ascunsă cu succes.
|
258
252
|
update:
|
259
|
-
error: A apărut o eroare.
|
260
253
|
success: Inițiativa a fost actualizată cu succes.
|
261
254
|
initiatives_settings:
|
262
255
|
edit:
|
@@ -269,7 +262,6 @@ ro:
|
|
269
262
|
title: Setări pentru inițiative
|
270
263
|
initiatives_type_scopes:
|
271
264
|
create:
|
272
|
-
error: A apărut o eroare.
|
273
265
|
success: A fost creat un nou domeniu de interes pentru un anumit tip de inițiativă.
|
274
266
|
destroy:
|
275
267
|
success: Domeniul de interes a fost eliminat cu succes.
|
@@ -280,7 +272,6 @@ ro:
|
|
280
272
|
create: Creează
|
281
273
|
title: Creează tipul domeniului pentru inițiative
|
282
274
|
update:
|
283
|
-
error: A apărut o eroare.
|
284
275
|
success: Domeniul de interes a fost actualizat cu succes.
|
285
276
|
initiatives_types:
|
286
277
|
edit:
|
@@ -303,7 +294,6 @@ ro:
|
|
303
294
|
accepted: Semnături suficiente
|
304
295
|
created: Creat
|
305
296
|
discarded: Respins
|
306
|
-
published: Publicate
|
307
297
|
rejected: Semnături insuficiente
|
308
298
|
validating: Validarea tehnică
|
309
299
|
application_helper:
|
@@ -397,8 +387,6 @@ ro:
|
|
397
387
|
email_outro: 'Ai primit această notificare deoarece ești autorul acestei inițiative: %{resource_title}'
|
398
388
|
email_subject: "%{applicant_nickname} vrea să se alăture inițiativei tale"
|
399
389
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> a depus cerere pentru comitetul de promovare al inițiativa tale <a href="%{resource_url}">%{resource_title}</a>. Pentru a accepta sau respinge apasă <a href="%{resource_url}/edit">aici</a>.
|
400
|
-
form:
|
401
|
-
attachment_legend: "(Opțional) Adaugă un atașament"
|
402
390
|
initiative_signatures:
|
403
391
|
fill_personal_data:
|
404
392
|
continue: Continuă
|
@@ -474,9 +462,7 @@ ro:
|
|
474
462
|
phone_number: Număr de telefon
|
475
463
|
place_date: Locul, data
|
476
464
|
postal_code: Cod poștal
|
477
|
-
print: Tipărește
|
478
465
|
province: Județ/stat
|
479
|
-
section: 'Dacă organizația solicită acest lucru, te rugăm tipărește și completează acest formular pentru a-l depune conform indicațiilor:'
|
480
466
|
signature: Semnătură
|
481
467
|
result:
|
482
468
|
initiative_rejected_reason: Această inițiativă a fost respinsă din cauza lipsei de semnături.
|
@@ -490,7 +476,6 @@ ro:
|
|
490
476
|
other: " semnături"
|
491
477
|
vote_cabin:
|
492
478
|
already_voted: Deja semnat
|
493
|
-
verification_required: Verifică-ți contul pentru a semna inițiativa
|
494
479
|
vote: Semnare
|
495
480
|
votes_blocked: Semnarea este dezactivată
|
496
481
|
votes_count:
|
@@ -519,7 +504,6 @@ ro:
|
|
519
504
|
accepted: Semnături suficiente
|
520
505
|
created: Creat
|
521
506
|
discarded: Respins
|
522
|
-
published: Publicat
|
523
507
|
rejected: Semnături insuficiente
|
524
508
|
validating: Validarea tehnică
|
525
509
|
states:
|
@@ -534,7 +518,6 @@ ro:
|
|
534
518
|
comment: Comentează
|
535
519
|
initiatives_type:
|
536
520
|
actions:
|
537
|
-
create: Creează
|
538
521
|
title: Acțiuni
|
539
522
|
vote: Semnare
|
540
523
|
layouts:
|
data/config/locales/ru.yml
CHANGED
@@ -62,9 +62,6 @@ ru:
|
|
62
62
|
created_at: 'Создано:'
|
63
63
|
title: Виды починов
|
64
64
|
name: Вид почина
|
65
|
-
initiatives_votes:
|
66
|
-
fields:
|
67
|
-
scope: Охват
|
68
65
|
titles:
|
69
66
|
initiatives: Почины
|
70
67
|
initiatives_types: Виды починов
|
@@ -132,7 +129,6 @@ ru:
|
|
132
129
|
admin_states:
|
133
130
|
created: Созданные
|
134
131
|
discarded: Отброшенные
|
135
|
-
published: Обнародовано
|
136
132
|
validating: Техническая проверка
|
137
133
|
application_helper:
|
138
134
|
filter_state_values:
|
@@ -210,7 +206,6 @@ ru:
|
|
210
206
|
recent: Самые последние
|
211
207
|
print:
|
212
208
|
city: Город
|
213
|
-
print: Распечатать
|
214
209
|
result:
|
215
210
|
initiative_rejected_reason: Этот почин был отвергнут из-за недостатка поддержки.
|
216
211
|
signatures_count:
|
@@ -244,10 +239,6 @@ ru:
|
|
244
239
|
expired: Истекшие
|
245
240
|
menu:
|
246
241
|
initiatives: Почины
|
247
|
-
resources:
|
248
|
-
initiatives_type:
|
249
|
-
actions:
|
250
|
-
create: Создать
|
251
242
|
layouts:
|
252
243
|
decidim:
|
253
244
|
initiative_creation_header:
|
data/config/locales/sk.yml
CHANGED
@@ -89,8 +89,6 @@ sk:
|
|
89
89
|
initiative_title: Názov iniciatívy
|
90
90
|
name_and_surname: Meno a priezvisko
|
91
91
|
postal_code: Poštové smerovacie číslo
|
92
|
-
scope: Rozsah
|
93
|
-
time_and_date: Čas a dátum
|
94
92
|
timestamp: Časová pečiatka
|
95
93
|
titles:
|
96
94
|
initiatives: Iniciatívy
|
@@ -117,8 +115,8 @@ sk:
|
|
117
115
|
badges:
|
118
116
|
initiatives:
|
119
117
|
conditions:
|
120
|
-
|
121
|
-
|
118
|
+
- Prejsť na priestor Iniciatív
|
119
|
+
- Nasledovať kroky pre vytvorenie novej iniciatívy
|
122
120
|
help:
|
123
121
|
participatory_spaces:
|
124
122
|
initiatives:
|
@@ -176,7 +174,6 @@ sk:
|
|
176
174
|
admin_states:
|
177
175
|
created: Vytvorené
|
178
176
|
discarded: Odstránená
|
179
|
-
published: Publikované
|
180
177
|
application_helper:
|
181
178
|
filter_state_values:
|
182
179
|
closed: Uzavreté
|
@@ -276,7 +273,6 @@ sk:
|
|
276
273
|
recent: Najnovšie
|
277
274
|
print:
|
278
275
|
city: Mesto
|
279
|
-
print: Tlač
|
280
276
|
result:
|
281
277
|
initiative_rejected_reason: Táto iniciatíva bola zamietnutá z dôvodu nedostatočnej podpory.
|
282
278
|
signatures_count:
|
@@ -286,7 +282,6 @@ sk:
|
|
286
282
|
other: "podpisy"
|
287
283
|
vote_cabin:
|
288
284
|
already_voted: Už ste podpísal
|
289
|
-
verification_required: Overte svoj účet, aby ste podpísali iniciatívu
|
290
285
|
vote: Podpísať
|
291
286
|
votes_blocked: Podpis zakázaný
|
292
287
|
votes_count:
|
@@ -315,7 +310,6 @@ sk:
|
|
315
310
|
resources:
|
316
311
|
initiatives_type:
|
317
312
|
actions:
|
318
|
-
create: Vytvoriť
|
319
313
|
title: Akcia
|
320
314
|
vote: Hlasovanie
|
321
315
|
layouts:
|