decidim-initiatives 0.20.1 → 0.23.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +22 -0
- data/app/assets/images/decidim/gamification/badges/initiatives.svg +1 -87
- data/app/assets/images/decidim/initiatives/icon.svg +1 -3
- data/app/assets/javascripts/decidim/initiatives/admin/initiatives_types.js.es6 +18 -0
- data/app/assets/stylesheet/decidim/initiatives/initiatives-votes.css.scss +0 -1
- data/app/assets/stylesheet/decidim/initiatives/initiatives.scss +6 -8
- data/app/assets/stylesheet/decidim/initiatives/popularity_item.css.scss +0 -1
- data/app/assets/stylesheet/decidim/initiatives/print-initiative.css.scss +0 -3
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives/show.erb +4 -3
- data/app/cells/decidim/initiatives/initiative_m_cell.rb +25 -0
- data/app/cells/decidim/initiatives_votes/vote/show.erb +12 -9
- data/app/cells/decidim/initiatives_votes/vote_cell.rb +7 -0
- data/app/commands/decidim/initiatives/admin/create_initiative_type.rb +6 -1
- data/app/commands/decidim/initiatives/admin/send_initiative_to_technical_validation.rb +17 -0
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +29 -10
- data/app/commands/decidim/initiatives/admin/update_initiative_type.rb +6 -1
- data/app/commands/decidim/initiatives/attachment_methods.rb +37 -0
- data/app/commands/decidim/initiatives/create_initiative.rb +25 -3
- data/app/commands/decidim/initiatives/unvote_initiative.rb +4 -10
- data/app/commands/decidim/initiatives/vote_initiative.rb +47 -31
- data/app/controllers/concerns/decidim/initiatives/admin/filterable.rb +51 -0
- data/app/controllers/concerns/decidim/initiatives/orderable.rb +3 -1
- data/app/controllers/concerns/decidim/initiatives/single_initiative_type.rb +26 -0
- data/app/controllers/decidim/initiatives/admin/answers_controller.rb +2 -3
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +28 -15
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +36 -6
- data/app/controllers/decidim/initiatives/initiative_signatures_controller.rb +19 -23
- data/app/controllers/decidim/initiatives/initiative_votes_controller.rb +11 -5
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +28 -13
- data/app/controllers/decidim/initiatives/initiatives_type_scopes_controller.rb +9 -1
- data/app/controllers/decidim/initiatives/versions_controller.rb +20 -0
- data/app/controllers/decidim/initiatives/{initiative_widgets_controller.rb → widgets_controller.rb} +2 -2
- data/app/events/decidim/initiatives/admin/initiative_sent_to_technical_validation_event.rb +21 -0
- data/app/events/decidim/initiatives/admin/support_threshold_reached_event.rb +13 -0
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +49 -7
- data/app/forms/decidim/initiatives/admin/initiative_type_form.rb +8 -1
- data/app/forms/decidim/initiatives/initiative_form.rb +56 -1
- data/app/forms/decidim/initiatives/vote_form.rb +133 -76
- data/app/helpers/decidim/initiatives/application_helper.rb +104 -0
- data/app/helpers/decidim/initiatives/initiative_helper.rb +13 -0
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +10 -0
- data/app/jobs/decidim/initiatives/export_initiatives_job.rb +25 -0
- data/app/mailers/decidim/initiatives/initiatives_mailer.rb +0 -21
- data/app/models/concerns/decidim/initiatives/has_area.rb +30 -0
- data/app/models/decidim/initiative.rb +184 -44
- data/app/models/decidim/initiatives_type.rb +5 -2
- data/app/models/decidim/initiatives_type_scope.rb +5 -1
- data/app/models/decidim/initiatives_vote.rb +19 -23
- data/app/permissions/decidim/initiatives/admin/permissions.rb +19 -8
- data/app/permissions/decidim/initiatives/permissions.rb +37 -14
- data/app/presenters/decidim/initiatives/initiative_stats_presenter.rb +1 -5
- data/app/queries/decidim/initiatives/admin/manageable_initiatives.rb +7 -39
- data/app/serializers/decidim/initiatives/initiative_serializer.rb +32 -0
- data/app/services/decidim/initiatives/diff_renderer.rb +18 -0
- data/app/services/decidim/initiatives/initiative_search.rb +59 -15
- data/app/services/decidim/initiatives/status_change_notifier.rb +4 -5
- data/app/types/decidim/initiatives/initiative_api_type.rb +26 -0
- data/app/types/decidim/initiatives/initiative_committee_member_type.rb +18 -0
- data/app/types/decidim/initiatives/initiative_type.rb +42 -0
- data/app/views/decidim/initiatives/admin/answers/_info_initiative.html.erb +1 -1
- data/app/views/decidim/initiatives/admin/exports/_dropdown.html.erb +8 -0
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +59 -14
- data/app/views/decidim/initiatives/admin/initiatives/_initiative_attachments.erb +43 -0
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.pdf.erb +12 -9
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +10 -45
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +47 -10
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +28 -25
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +46 -10
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +17 -10
- data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +2 -1
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +1 -1
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +1 -2
- data/app/views/decidim/initiatives/create_initiative/show_similar_initiatives.html.erb +1 -1
- data/app/views/decidim/initiatives/initiative_signatures/fill_personal_data.html.erb +1 -1
- data/app/views/decidim/initiatives/initiative_signatures/update_buttons_and_counters.js.erb +1 -1
- data/app/views/decidim/initiatives/initiative_votes/update_buttons_and_counters.js.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_author.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_filters.html.erb +16 -28
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +39 -5
- data/app/views/decidim/initiatives/initiatives/_initiatives.html.erb +11 -1
- data/app/views/decidim/initiatives/initiatives/_interactions.html.erb +2 -3
- data/app/views/decidim/initiatives/initiatives/_progress_bar.html.erb +24 -9
- data/app/views/decidim/initiatives/initiatives/_tags.html.erb +3 -0
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +1 -13
- data/app/views/decidim/initiatives/initiatives/index.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/show.html.erb +2 -3
- data/app/views/decidim/initiatives/versions/index.html.erb +8 -0
- data/app/views/decidim/initiatives/versions/show.html.erb +10 -0
- data/app/views/layouts/decidim/_initiative_creation_header.html.erb +2 -1
- data/app/views/layouts/decidim/_initiative_header.html.erb +2 -1
- data/app/views/layouts/decidim/_initiative_signature_creation_header.html.erb +1 -1
- data/app/views/layouts/decidim/initiative.html.erb +1 -0
- data/app/views/layouts/decidim/initiative_creation.html.erb +1 -2
- data/app/views/layouts/decidim/initiative_signature_creation.html.erb +2 -2
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +12 -21
- data/config/locales/bg-BG.yml +13 -0
- data/config/locales/bg.yml +13 -0
- data/config/locales/ca.yml +99 -21
- data/config/locales/cs.yml +110 -32
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +75 -21
- data/config/locales/el.yml +525 -0
- data/config/locales/en.yml +102 -24
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +99 -21
- data/config/locales/es-PY.yml +99 -21
- data/config/locales/es.yml +103 -25
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +4 -21
- data/config/locales/fi-plain.yml +99 -21
- data/config/locales/fi.yml +117 -39
- data/config/locales/fr-CA.yml +557 -0
- data/config/locales/fr.yml +101 -23
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +4 -21
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +27 -21
- data/config/locales/id-ID.yml +4 -21
- data/config/locales/is-IS.yml +4 -17
- data/config/locales/is.yml +251 -0
- data/config/locales/it.yml +116 -61
- data/config/locales/ja-JP.yml +529 -0
- data/config/locales/ja.yml +549 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +525 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +76 -21
- data/config/locales/no.yml +62 -31
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +260 -189
- data/config/locales/pt-BR.yml +5 -22
- data/config/locales/pt.yml +231 -179
- data/config/locales/ro-RO.yml +533 -0
- data/config/locales/ru.yml +4 -21
- data/config/locales/sk-SK.yml +468 -0
- data/config/locales/sk.yml +458 -0
- data/config/locales/sl.yml +24 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +8 -0
- data/config/locales/sv.yml +102 -31
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +4 -21
- data/config/locales/uk.yml +4 -21
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +549 -0
- data/config/locales/zh-TW.yml +1 -0
- data/db/migrate/20191106144259_add_settings_to_initiatives_types.rb +8 -0
- data/db/migrate/20191107134847_add_scopes_to_initiatives_votes.rb +28 -0
- data/db/migrate/20191116170841_allow_multiple_initiative_votes_counter_caches.rb +32 -0
- data/db/migrate/20191118105634_allow_multiple_offline_votes.rb +34 -0
- data/db/migrate/20200320105920_index_foreign_keys_in_decidim_initiatives.rb +8 -0
- data/db/migrate/20200320105921_index_foreign_keys_in_decidim_initiatives_votes.rb +8 -0
- data/db/migrate/20200417120551_add_custom_signature_end_time_option.rb +7 -0
- data/db/migrate/20200424110930_add_attachments_enabled_option.rb +7 -0
- data/db/migrate/20200514085422_add_area_to_initiatives.rb +7 -0
- data/db/migrate/20200514102631_add_area_enabled_option_to_initiatives.rb +7 -0
- data/db/migrate/20200528151456_remove_user_groups_from_initiative_votes.rb +7 -0
- data/db/migrate/20200827154214_add_commentable_counter_cache_to_initiatives.rb +9 -0
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/lib/decidim/api/initiative_type_interface.rb +13 -0
- data/lib/decidim/initiatives/admin_engine.rb +5 -0
- data/lib/decidim/initiatives/api.rb +7 -0
- data/lib/decidim/initiatives/engine.rb +11 -2
- data/lib/decidim/initiatives/participatory_space.rb +18 -1
- data/lib/decidim/initiatives/query_extensions.rb +40 -0
- data/lib/decidim/initiatives/test/factories.rb +51 -4
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/tasks/decidim_initiatives.rake +1 -3
- metadata +92 -21
- data/app/views/decidim/initiatives/initiative_widgets/show.html.erb +0 -4
- data/app/views/decidim/initiatives/initiatives/_supports.html.erb +0 -22
- data/app/views/decidim/initiatives/initiatives/signature_identities.html.erb +0 -42
- data/app/views/decidim/initiatives/initiatives_mailer/notify_validating_request.html.erb +0 -3
@@ -0,0 +1 @@
|
|
1
|
+
mt:
|
@@ -0,0 +1 @@
|
|
1
|
+
mt:
|
data/config/locales/nl.yml
CHANGED
@@ -26,8 +26,11 @@ nl:
|
|
26
26
|
initiatives_committee_member:
|
27
27
|
user: Commissielid
|
28
28
|
initiatives_type:
|
29
|
+
area_enabled: Sta auteurs toe het gebied te kiezen voor hun initiatief
|
30
|
+
attachments_enabled: Bijlagen inschakelen
|
29
31
|
banner_image: Banner afbeelding
|
30
32
|
collect_user_extra_fields: Persoonlijke gebruikersgegevens verzamelen bij ondertekening
|
33
|
+
custom_signature_end_date_enabled: Sta auteurs toe het einde van de handtekeningperiode te kiezen
|
31
34
|
description: Beschrijving
|
32
35
|
document_number_authorization_handler: Autorisatie om documentnummer op handtekeningen te verifiëren
|
33
36
|
extra_fields_legal_information: Juridische informatie over het verzamelen van persoonlijke gegevens
|
@@ -46,6 +49,14 @@ nl:
|
|
46
49
|
address: Adres
|
47
50
|
id_document: Identiteitsbewijs
|
48
51
|
name: Volledige naam
|
52
|
+
errors:
|
53
|
+
models:
|
54
|
+
initiative:
|
55
|
+
attributes:
|
56
|
+
attachment:
|
57
|
+
file: Bestand is ongeldig
|
58
|
+
needs_to_be_reattached: Moet opnieuw worden gekoppeld
|
59
|
+
title: Titel mag niet leeg zijn
|
49
60
|
activerecord:
|
50
61
|
models:
|
51
62
|
decidim/initiative:
|
@@ -61,6 +72,9 @@ nl:
|
|
61
72
|
admin:
|
62
73
|
actions:
|
63
74
|
new_initiative_type: Nieuw initiatiefstype
|
75
|
+
filters:
|
76
|
+
search_placeholder:
|
77
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Zoek %{collection} op titel, beschrijving, ID of auteur naam.
|
64
78
|
menu:
|
65
79
|
initiatives: initiatieven
|
66
80
|
initiatives_types: Initiatieftypes
|
@@ -69,6 +83,7 @@ nl:
|
|
69
83
|
fields:
|
70
84
|
created_at: Aangemaakt op
|
71
85
|
id: ID kaart
|
86
|
+
published_at: Gepubliceerd op
|
72
87
|
state: Status
|
73
88
|
supports_count: Handtekeningen
|
74
89
|
title: initiatieven
|
@@ -101,6 +116,12 @@ nl:
|
|
101
116
|
initiatives_types: Initiatieftypes
|
102
117
|
events:
|
103
118
|
initiatives:
|
119
|
+
admin:
|
120
|
+
initiative_sent_to_technical_validation:
|
121
|
+
email_intro: Het initiatief "%{resource_title}" is verzonden naar technische validatie. Bekijk het via <a href="%{admin_initiative_url}">het beheerpaneel</a>
|
122
|
+
email_outro: Je hebt deze melding ontvangen omdat je beheerder bent van het platform.
|
123
|
+
email_subject: Initiatief "%{resource_title}" werd verzonden naar technische validatie.
|
124
|
+
notification_title: Het initiatief "%{resource_title}" is verzonden naar technische validatie. Bekijk het via <a href="%{admin_initiative_path}">het beheerpaneel</a>
|
104
125
|
initiative_extended:
|
105
126
|
email_intro: De einddatum voor de handtekeningen van initiatief %{resource_title} is verlengd!
|
106
127
|
email_outro: U hebt deze melding ontvangen omdat u %{resource_title} volgt. Je kunt de meldingen stoppen door de vorige link te volgen.
|
@@ -117,6 +138,11 @@ nl:
|
|
117
138
|
email_outro: U hebt deze melding ontvangen omdat u %{resource_title} volgt. Je kunt de meldingen stoppen door de vorige link te volgen.
|
118
139
|
email_subject: Nieuwe mijlpaal voltooid!
|
119
140
|
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief heeft %{percentage}% handtekeningen behaald.
|
141
|
+
support_threshold_reached:
|
142
|
+
email_intro: Het initiatief %{resource_title} heeft de steundrempel bereikt
|
143
|
+
email_outro: Je hebt deze melding ontvangen omdat je beheerder bent van het platform.
|
144
|
+
email_subject: Ondersteuningsdrempel bereikt
|
145
|
+
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> initiatief heeft de support drempel bereikt
|
120
146
|
gamification:
|
121
147
|
badges:
|
122
148
|
initiatives:
|
@@ -161,6 +187,8 @@ nl:
|
|
161
187
|
content_blocks:
|
162
188
|
highlighted_initiatives:
|
163
189
|
max_results: Maximum aantal elementen dat kan worden weergegeven
|
190
|
+
exports:
|
191
|
+
initiatives: Initiatieven
|
164
192
|
initiatives:
|
165
193
|
edit:
|
166
194
|
accept: Accepteer initiatief
|
@@ -173,21 +201,18 @@ nl:
|
|
173
201
|
success: Het initiatief is verzonden naar technische validatie
|
174
202
|
update: Bijwerken
|
175
203
|
form:
|
204
|
+
attachments: Bijlagen
|
205
|
+
settings: Instellingen
|
176
206
|
title: Algemene informatie
|
177
207
|
index:
|
178
208
|
actions_title: Actie
|
179
|
-
filter:
|
180
|
-
accepted: Aanvaard
|
181
|
-
all: Alle
|
182
|
-
created: gemaakt
|
183
|
-
discarded: Afgedankte
|
184
|
-
published: Gepubliceerd
|
185
|
-
rejected: Afgewezen
|
186
|
-
validating: Technische validatie
|
187
|
-
filter_by: Sorteer op
|
188
209
|
preview: Voorbeeld
|
189
210
|
print: Afdrukken
|
190
|
-
|
211
|
+
initiative_attachments:
|
212
|
+
documents: Documenten
|
213
|
+
edit: Bewerken
|
214
|
+
new: Nieuw
|
215
|
+
photos: Foto's
|
191
216
|
show:
|
192
217
|
print: Afdrukken
|
193
218
|
update:
|
@@ -239,12 +264,26 @@ nl:
|
|
239
264
|
unpublish: "%{user_name} heeft het initiatief %{resource_name} verwijderd"
|
240
265
|
update: "%{user_name} heeft het initiatief %{resource_name} bijgewerkt"
|
241
266
|
admin_states:
|
242
|
-
accepted:
|
267
|
+
accepted: Genoeg handtekeningen
|
243
268
|
created: gemaakt
|
244
269
|
discarded: Afgedankte
|
245
270
|
published: Gepubliceerd
|
246
|
-
rejected:
|
271
|
+
rejected: Niet genoeg handtekeningen
|
247
272
|
validating: Technische validatie
|
273
|
+
application_helper:
|
274
|
+
filter_area_values:
|
275
|
+
all: Allemaal
|
276
|
+
filter_scope_values:
|
277
|
+
all: Allemaal
|
278
|
+
filter_state_values:
|
279
|
+
accepted: Genoeg handtekeningen
|
280
|
+
all: Allemaal
|
281
|
+
answered: beantwoord
|
282
|
+
closed: Gesloten
|
283
|
+
open: Open
|
284
|
+
rejected: Niet genoeg handtekeningen
|
285
|
+
filter_type_values:
|
286
|
+
all: Allemaal
|
248
287
|
committee_requests:
|
249
288
|
new:
|
250
289
|
continue: Doorgaan met
|
@@ -261,13 +300,17 @@ nl:
|
|
261
300
|
fill_data_help: "<ul> <li>Herbekijk de inhoud van je initiatief. Is uw titel gemakkelijk te begrijpen? Is het doel van uw initiatief duidelijk?</li> <li>Je moet het type handtekening kiezen. Persoonlijk, online of een combinatie van beide</li> <li>Wat is de geografische reikwijdte van het initiatief? Stad, streek?</li> </ul>"
|
262
301
|
initiative_type: Initiatieftype
|
263
302
|
more_information: "(Meer informatie)"
|
303
|
+
select_area: Selecteer een gebied
|
264
304
|
select_scope: Selecteer een scope
|
265
305
|
finish:
|
266
306
|
back: Terug
|
267
307
|
back_to_initiatives: Terug naar initiatieven
|
268
308
|
callout_text: Proficiat! Je burgerinitiatief is aangemaakt.
|
309
|
+
confirm: Bevestigen
|
310
|
+
edit_my_initiative: Bewerk mijn initiatieven
|
269
311
|
go_to_my_initiatives: Ga naar mijn initiatieven
|
270
312
|
more_information: "(Meer informatie)"
|
313
|
+
send_my_initiative: Stuur mijn initiatief
|
271
314
|
finish_help:
|
272
315
|
access_reminder: Vergeet niet dat je altijd toegang hebt tot je initiatieven via het gebruikersmenu.
|
273
316
|
help_for_organizations: Als u een vereniging bent, moet u de notulen van het directiecomité uploaden van alle organisaties die de promotieraad vormen
|
@@ -351,14 +394,13 @@ nl:
|
|
351
394
|
other: "%{count} initiatieven"
|
352
395
|
filters:
|
353
396
|
any: Alle
|
397
|
+
area: Oppervlak
|
354
398
|
author: Auteur
|
355
|
-
closed: Gesloten
|
356
399
|
myself: Mijn initiatieven
|
357
|
-
|
400
|
+
scope: Bereik
|
358
401
|
search: Zoeken
|
359
402
|
state: Staat
|
360
403
|
type: Type
|
361
|
-
type_prompt: Selecteer een type
|
362
404
|
filters_small_view:
|
363
405
|
close_modal: Sluit venster
|
364
406
|
filter: Sorteer
|
@@ -366,6 +408,13 @@ nl:
|
|
366
408
|
unfold: Uitvouwen
|
367
409
|
index_header:
|
368
410
|
new_initiative: Nieuw initiatief
|
411
|
+
not_authorized:
|
412
|
+
authorizations_page: Bekijk autorisaties
|
413
|
+
close: Afsluiten
|
414
|
+
explanation: Je moet geverifieerd worden om een nieuw initiatief te kunnen maken.
|
415
|
+
title: Autorisatie vereist
|
416
|
+
initiatives:
|
417
|
+
no_initiatives_warning: De zoekopdracht heeft geen resultaten opgeleverd.
|
369
418
|
interactions:
|
370
419
|
comments_count:
|
371
420
|
count:
|
@@ -377,6 +426,7 @@ nl:
|
|
377
426
|
most_voted: Meest ondertekend
|
378
427
|
random: Willekeurig
|
379
428
|
recent: Meest recente
|
429
|
+
recently_published: Meest recent gepubliceerd
|
380
430
|
result:
|
381
431
|
answer_title:
|
382
432
|
accepted: Dit voorstel is geaccepteerd omdat
|
@@ -390,13 +440,9 @@ nl:
|
|
390
440
|
any_vote_method: Dit burgerinitiatief verzamelt zowel online als face-to-face stemmen.
|
391
441
|
follow_description: Ontvang een melding wanneer er nieuws is in dit initiatief
|
392
442
|
offline_method: Dit burgerinitiatief verzamelt alleen face-to-face stemmen.
|
393
|
-
signature_identities:
|
394
|
-
select_identity: Selecteer gebruikers-ID
|
395
443
|
signatures_count:
|
396
444
|
one: " handtekening"
|
397
445
|
other: " handtekeningen"
|
398
|
-
supports:
|
399
|
-
title: Lijst van handtekeningen
|
400
446
|
vote_cabin:
|
401
447
|
already_voted: Al getekend
|
402
448
|
supports_required: "%{total_supports} handtekeningen vereist"
|
@@ -420,8 +466,6 @@ nl:
|
|
420
466
|
promotal_committee_help: Vergeet niet dat u ten minste %{member_count} personen moet uitnodigen voor een promotieraad. Stuur de volgende link door om mensen uit te nodigen voor de promotieraad
|
421
467
|
status_change_body_for: 'Het initiatief %{title} heeft de status gewijzigd in: %{state}'
|
422
468
|
status_change_for: Het initiatief %{title} is van status veranderd
|
423
|
-
technical_validation_body_for: Het initiatief %{title} heeft om technische validatie ervan verzocht.
|
424
|
-
technical_validation_for: Het initiatief %{title} heeft om technische validatie ervan verzocht.
|
425
469
|
last_activity:
|
426
470
|
new_initiative: Nieuw initiatief
|
427
471
|
pages:
|
@@ -429,10 +473,21 @@ nl:
|
|
429
473
|
highlighted_initiatives:
|
430
474
|
active_initiatives: Actieve initiatieven
|
431
475
|
see_all_initiatives: Bekijk alle initiatieven
|
476
|
+
show:
|
477
|
+
badge_name:
|
478
|
+
accepted: Genoeg handtekeningen
|
479
|
+
created: Aangemaakt
|
480
|
+
discarded: Verwijderd
|
481
|
+
published: Ingediend
|
482
|
+
rejected: Niet genoeg handtekeningen
|
483
|
+
validating: Technische validatie
|
432
484
|
states:
|
433
485
|
accepted: Aanvaard
|
434
486
|
expired: Vervallen
|
435
487
|
unavailable_scope: Niet beschikbaar bereik
|
488
|
+
versions:
|
489
|
+
shared:
|
490
|
+
back_to_resource: Ga terug naar het initiatief
|
436
491
|
menu:
|
437
492
|
initiatives: initiatieven
|
438
493
|
resources:
|
data/config/locales/no.yml
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
decidim_user_group_id: Forfatter
|
6
6
|
description: Beskrivelse
|
7
7
|
offline_votes: Personlige underskrifter
|
8
|
-
scope_id:
|
8
|
+
scope_id: Tema
|
9
9
|
signature_end_date: Slutt av innsamlingsperiode for signatur
|
10
10
|
signature_start_date: Start av innsamlingsperiode for signatur
|
11
11
|
signature_type: Signatur innsamingstype
|
@@ -26,8 +26,11 @@
|
|
26
26
|
initiatives_committee_member:
|
27
27
|
user: Komité medlem
|
28
28
|
initiatives_type:
|
29
|
+
area_enabled: Muliggjør at forfattere velger område for sitt initiativ
|
30
|
+
attachments_enabled: Aktiver vedlegg
|
29
31
|
banner_image: Bannerafbeelding
|
30
32
|
collect_user_extra_fields: Samle deltakerens personlige data ved signatur
|
33
|
+
custom_signature_end_date_enabled: Muliggjør at forfattere kan velge slutten av signaturinnsamlingsperioden
|
31
34
|
description: Beskrivelse
|
32
35
|
document_number_authorization_handler: Fullmakt til å verifisere dokumentnummer på underskrifter
|
33
36
|
extra_fields_legal_information: Juridisk informasjon om innsamling av personopplysninger
|
@@ -46,6 +49,14 @@
|
|
46
49
|
address: Adresse
|
47
50
|
id_document: ID dokument
|
48
51
|
name: Komplett navn
|
52
|
+
errors:
|
53
|
+
models:
|
54
|
+
initiative:
|
55
|
+
attributes:
|
56
|
+
attachment:
|
57
|
+
file: Filen er ugyldig
|
58
|
+
needs_to_be_reattached: Må festes på nytt
|
59
|
+
title: Tittelen bør ikke være tom
|
49
60
|
activerecord:
|
50
61
|
models:
|
51
62
|
decidim/initiative:
|
@@ -61,6 +72,23 @@
|
|
61
72
|
admin:
|
62
73
|
actions:
|
63
74
|
new_initiative_type: Ny intiativtype
|
75
|
+
filters:
|
76
|
+
initiatives:
|
77
|
+
decidim_area_id_eq:
|
78
|
+
label: Område
|
79
|
+
state_eq:
|
80
|
+
label: Tilstand
|
81
|
+
values:
|
82
|
+
accepted: Nok signaturer
|
83
|
+
created: Opprettet
|
84
|
+
discarded: Forkastet
|
85
|
+
published: Publisert
|
86
|
+
rejected: Ikke nok signaturer
|
87
|
+
validating: Teknisk validering
|
88
|
+
type_id_eq:
|
89
|
+
label: Type
|
90
|
+
search_placeholder:
|
91
|
+
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Søk i %{collection} etter tittel, beskrivelse, ID eller forfatternavn.
|
64
92
|
menu:
|
65
93
|
initiatives: Initiativer
|
66
94
|
initiatives_types: Initiativtyper
|
@@ -69,12 +97,13 @@
|
|
69
97
|
fields:
|
70
98
|
created_at: Opprettet på
|
71
99
|
id: ID
|
100
|
+
published_at: Publisert i
|
72
101
|
state: Status
|
73
102
|
supports_count: Underskrifter
|
74
103
|
title: Initiativer
|
75
104
|
initiatives_type_scope:
|
76
105
|
fields:
|
77
|
-
scope:
|
106
|
+
scope: Tema
|
78
107
|
supports_required: Signaturer påkrevd
|
79
108
|
name: Initiativtypens omgang
|
80
109
|
initiatives_types:
|
@@ -101,6 +130,12 @@
|
|
101
130
|
initiatives_types: Initiativtyper
|
102
131
|
events:
|
103
132
|
initiatives:
|
133
|
+
admin:
|
134
|
+
initiative_sent_to_technical_validation:
|
135
|
+
email_intro: Initiativet "%{resource_title}" er sendt til teknisk validering. Sjekk det ut i <a href="%{admin_initiative_url}">admin panelet</a>
|
136
|
+
email_outro: Du har mottatt dette varselet fordi du er en administrator av plattformen.
|
137
|
+
email_subject: Initiativ "%{resource_title}" ble sendt til teknisk validering.
|
138
|
+
notification_title: Initiativet "%{resource_title}" er sendt til teknisk validering. Sjekk det ut i <a href="%{admin_initiative_path}">admin panelet</a>
|
104
139
|
initiative_extended:
|
105
140
|
email_intro: Slutdatoen for signaturene for initiativet %{resource_title} er blitt utvidet!
|
106
141
|
email_outro: Du har mottatt denne varslingen fordi du følger %{resource_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
@@ -117,6 +152,11 @@
|
|
117
152
|
email_outro: Du har mottatt denne varslingen fordi du følger %{resource_title}. Du kan slutte å motta varsler hvis du følger den forrige lenken.
|
118
153
|
email_subject: Ny milepæl fullført!
|
119
154
|
notification_title: <a href="%{resource_path}">%{resource_title}</a> initiativet har oppnådd de %{percentage}% av signaturer.
|
155
|
+
support_threshold_reached:
|
156
|
+
email_intro: Initiativet %{resource_title} har nådd grensen for støtte
|
157
|
+
email_outro: Du har mottatt dette varselet fordi du er en administrator av plattformen.
|
158
|
+
email_subject: Støtteterskelen er nådd
|
159
|
+
notification_title: Initiativet <a href="%{resource_path}">%{resource_title}</a> har nådd terskelen for støtte
|
120
160
|
gamification:
|
121
161
|
badges:
|
122
162
|
initiatives:
|
@@ -161,6 +201,8 @@
|
|
161
201
|
content_blocks:
|
162
202
|
highlighted_initiatives:
|
163
203
|
max_results: Maksimal mengde elementer som skal vises
|
204
|
+
exports:
|
205
|
+
initiatives: Initiativer
|
164
206
|
initiatives:
|
165
207
|
edit:
|
166
208
|
accept: Godta initiativ
|
@@ -173,21 +215,12 @@
|
|
173
215
|
success: Initiativet er sendt til teknisk validering
|
174
216
|
update: Oppdater
|
175
217
|
form:
|
218
|
+
attachments: Vedlegg
|
176
219
|
title: Generell informasjon
|
177
220
|
index:
|
178
221
|
actions_title: Handling
|
179
|
-
filter:
|
180
|
-
accepted: Aksepterte
|
181
|
-
all: Alle
|
182
|
-
created: Opprettet
|
183
|
-
discarded: Forkastet
|
184
|
-
published: Publisert
|
185
|
-
rejected: Avvist
|
186
|
-
validating: Teknisk validering
|
187
|
-
filter_by: Filtrer etter
|
188
222
|
preview: Forhåndsvis
|
189
223
|
print: Skriv ut
|
190
|
-
search: Søk
|
191
224
|
show:
|
192
225
|
print: Skriv ut
|
193
226
|
update:
|
@@ -196,9 +229,9 @@
|
|
196
229
|
initiatives_type_scopes:
|
197
230
|
create:
|
198
231
|
error: Det oppstod en feil
|
199
|
-
success: Et nytt
|
232
|
+
success: Et nytt tema for den gitte initiativtypen er blitt opprettet
|
200
233
|
destroy:
|
201
|
-
success:
|
234
|
+
success: Temaet ble fjernet
|
202
235
|
edit:
|
203
236
|
back: Tilbake
|
204
237
|
confirm_destroy: Er du sikker?
|
@@ -208,10 +241,10 @@
|
|
208
241
|
new:
|
209
242
|
back: Tilbake
|
210
243
|
create: Opprett
|
211
|
-
title: Opprett initiativtype
|
244
|
+
title: Opprett tema for initiativtype
|
212
245
|
update:
|
213
246
|
error: Det oppstod en feil
|
214
|
-
success:
|
247
|
+
success: Temaet ble oppdatert
|
215
248
|
initiatives_types:
|
216
249
|
create:
|
217
250
|
error: Det oppstod en feil
|
@@ -225,7 +258,7 @@
|
|
225
258
|
form:
|
226
259
|
title: Generell informasjon
|
227
260
|
initiative_type_scopes:
|
228
|
-
title:
|
261
|
+
title: Tema for initiativtypen
|
229
262
|
new:
|
230
263
|
create: Opprett
|
231
264
|
title: Ny intiativtype
|
@@ -239,12 +272,14 @@
|
|
239
272
|
unpublish: "%{user_name} forkastet %{resource_name} initiativet"
|
240
273
|
update: "%{user_name} oppdaterte %{resource_name} initiativet"
|
241
274
|
admin_states:
|
242
|
-
accepted: Aksepterte
|
243
275
|
created: Opprettet
|
244
276
|
discarded: Forkastet
|
245
277
|
published: Publisert
|
246
|
-
rejected: Avvist
|
247
278
|
validating: Teknisk validering
|
279
|
+
application_helper:
|
280
|
+
filter_state_values:
|
281
|
+
closed: Lukket
|
282
|
+
open: Åpen
|
248
283
|
committee_requests:
|
249
284
|
new:
|
250
285
|
continue: Fortsett
|
@@ -258,10 +293,10 @@
|
|
258
293
|
fill_data:
|
259
294
|
back: Tilbake
|
260
295
|
continue: Fortsett
|
261
|
-
fill_data_help: "<ul> <li>Gå gjennom innholdet av initiativet ditt. Er tittelen din lett å forstå? Er målet med ditt initiativ klart?</li> <li>Du må velge
|
296
|
+
fill_data_help: "<ul> <li>Gå gjennom innholdet av initiativet ditt. Er tittelen din lett å forstå? Er målet med ditt initiativ klart?</li> <li>Du må velge signaturtypen. Personlig, online eller en kombinasjon av begge</li> <li>Hva er det geografiske omfanget av initiativet? By, distrikt?</li> </ul>"
|
262
297
|
initiative_type: Initiativtype
|
263
298
|
more_information: "(Mer informasjon)"
|
264
|
-
select_scope: Velg et
|
299
|
+
select_scope: Velg et temaet
|
265
300
|
finish:
|
266
301
|
back: Tilbake
|
267
302
|
back_to_initiatives: Tilbake til initiativer
|
@@ -352,13 +387,10 @@
|
|
352
387
|
filters:
|
353
388
|
any: Alle
|
354
389
|
author: Forfatter
|
355
|
-
closed: Lukket
|
356
390
|
myself: Initiativene mine
|
357
|
-
open: Åpen
|
358
391
|
search: Søk
|
359
392
|
state: Status
|
360
393
|
type: Type
|
361
|
-
type_prompt: Velg en type
|
362
394
|
filters_small_view:
|
363
395
|
close_modal: Lukk vindu
|
364
396
|
filter: Filter
|
@@ -366,6 +398,11 @@
|
|
366
398
|
unfold: Åpne
|
367
399
|
index_header:
|
368
400
|
new_initiative: Nytt initiativ
|
401
|
+
not_authorized:
|
402
|
+
authorizations_page: Vis godkjennelser
|
403
|
+
close: Lukk
|
404
|
+
explanation: Du må verifiseres for å opprette et nytt initiativ.
|
405
|
+
title: Autorisasjon kreves
|
369
406
|
interactions:
|
370
407
|
comments_count:
|
371
408
|
count:
|
@@ -390,13 +427,9 @@
|
|
390
427
|
any_vote_method: Dette innbyggerinitiativet samler både online og personlige underskrifter.
|
391
428
|
follow_description: Motta et varsel når det er nyheter i dette initiativet
|
392
429
|
offline_method: Dette innbyggerinitiativet samler bare inn personlige underskrifter.
|
393
|
-
signature_identities:
|
394
|
-
select_identity: Velg deltaker identifikator
|
395
430
|
signatures_count:
|
396
431
|
one: " underskrift"
|
397
432
|
other: " underskrifter"
|
398
|
-
supports:
|
399
|
-
title: Liste over underskrifter
|
400
433
|
vote_cabin:
|
401
434
|
already_voted: Allerede signert
|
402
435
|
supports_required: "%{total_supports} signaturer påkrevd"
|
@@ -420,8 +453,6 @@
|
|
420
453
|
promotal_committee_help: Husk at du må invitere minst %{member_count} folk til promotør komiteen. Videresend den følgene lenken for å invitere folk til promotør komiteen
|
421
454
|
status_change_body_for: 'Initiativet %{title} har endret sin status til: %{state}'
|
422
455
|
status_change_for: Initiativet %{title} har endret sin status
|
423
|
-
technical_validation_body_for: Initiativet %{title} har bedt om sin tekniske validering.
|
424
|
-
technical_validation_for: Initiativet %{title} har bedt om sin tekniske validering.
|
425
456
|
last_activity:
|
426
457
|
new_initiative: Nytt initiativ
|
427
458
|
pages:
|
@@ -432,7 +463,7 @@
|
|
432
463
|
states:
|
433
464
|
accepted: Aksepterte
|
434
465
|
expired: Utløpt
|
435
|
-
unavailable_scope: Utilgjengelig
|
466
|
+
unavailable_scope: Utilgjengelig tema
|
436
467
|
menu:
|
437
468
|
initiatives: Initiativer
|
438
469
|
resources:
|