decidim-initiatives 0.27.10 → 0.28.0.rc4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -3
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives_cell.rb +17 -18
- data/app/cells/decidim/initiatives/initiative_cell.rb +6 -1
- data/app/cells/decidim/initiatives/initiative_dropdown_metadata_cell.rb +19 -0
- data/app/cells/decidim/initiatives/initiative_g_cell.rb +31 -0
- data/app/cells/decidim/initiatives/initiative_metadata_g_cell.rb +62 -0
- data/app/cells/decidim/initiatives/initiative_s_cell.rb +15 -0
- data/app/cells/decidim/initiatives_votes/vote/show.erb +25 -19
- data/app/cells/decidim/initiatives_votes/vote_cell.rb +3 -1
- data/app/commands/decidim/initiatives/admin/accept_initiative.rb +40 -0
- data/app/commands/decidim/initiatives/admin/create_initiative_type.rb +1 -1
- data/app/commands/decidim/initiatives/admin/create_initiative_type_scope.rb +1 -1
- data/app/commands/decidim/initiatives/admin/discard_initiative.rb +40 -0
- data/app/commands/decidim/initiatives/admin/publish_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/admin/reject_initiative.rb +40 -0
- data/app/commands/decidim/initiatives/admin/send_initiative_to_technical_validation.rb +2 -2
- data/app/commands/decidim/initiatives/admin/unpublish_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative_answer.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative_type.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiative_type_scope.rb +1 -1
- data/app/commands/decidim/initiatives/admin/update_initiatives_settings.rb +1 -1
- data/app/commands/decidim/initiatives/attachment_methods.rb +2 -24
- data/app/commands/decidim/initiatives/create_initiative.rb +19 -14
- data/app/commands/decidim/initiatives/send_initiative_to_technical_validation.rb +2 -2
- data/app/commands/decidim/initiatives/spawn_committee_request.rb +1 -1
- data/app/commands/decidim/initiatives/unvote_initiative.rb +1 -1
- data/app/commands/decidim/initiatives/update_initiative.rb +9 -2
- data/app/commands/decidim/initiatives/validate_mobile_phone.rb +2 -2
- data/app/commands/decidim/initiatives/vote_initiative.rb +5 -5
- data/app/constraints/decidim/initiatives/current_initiative.rb +1 -1
- data/app/controllers/concerns/decidim/initiatives/admin/filterable.rb +2 -2
- data/app/controllers/concerns/decidim/initiatives/needs_initiative.rb +1 -1
- data/app/controllers/decidim/initiatives/admin/answers_controller.rb +3 -0
- data/app/controllers/decidim/initiatives/admin/committee_requests_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/components_controller.rb +3 -0
- data/app/controllers/decidim/initiatives/admin/initiative_attachments_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_controller.rb +17 -6
- data/app/controllers/decidim/initiatives/admin/initiatives_permissions_controller.rb +3 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_settings_controller.rb +2 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_type_scopes_controller.rb +30 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb +14 -0
- data/app/controllers/decidim/initiatives/admin/initiatives_types_permissions_controller.rb +21 -0
- data/app/controllers/decidim/initiatives/admin/moderations/reports_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/admin/moderations_controller.rb +4 -2
- data/app/controllers/decidim/initiatives/application_controller.rb +0 -1
- data/app/controllers/decidim/initiatives/authorization_create_modals_controller.rb +25 -0
- data/app/controllers/decidim/initiatives/authorization_sign_modals_controller.rb +2 -2
- data/app/controllers/decidim/initiatives/committee_requests_controller.rb +0 -2
- data/app/controllers/decidim/initiatives/create_initiative_controller.rb +62 -115
- data/app/controllers/decidim/initiatives/initiative_signatures_controller.rb +113 -81
- data/app/controllers/decidim/initiatives/initiative_types_controller.rb +7 -0
- data/app/controllers/decidim/initiatives/initiatives_controller.rb +37 -17
- data/app/controllers/decidim/initiatives/versions_controller.rb +0 -1
- data/app/events/decidim/initiatives/admin/initiative_sent_to_technical_validation_event.rb +2 -2
- data/app/events/decidim/initiatives/admin/support_threshold_reached_event.rb +1 -1
- data/app/events/decidim/initiatives/approve_membership_request_event.rb +16 -13
- data/app/events/decidim/initiatives/create_initiative_event.rb +10 -7
- data/app/events/decidim/initiatives/endorse_initiative_event.rb +1 -1
- data/app/events/decidim/initiatives/extend_initiative_event.rb +1 -1
- data/app/events/decidim/initiatives/initiative_sent_to_technical_validation_event.rb +2 -2
- data/app/events/decidim/initiatives/milestone_completed_event.rb +1 -1
- data/app/events/decidim/initiatives/revoke_membership_request_event.rb +16 -13
- data/app/events/decidim/initiatives/spawn_committee_request_event.rb +16 -13
- data/app/forms/decidim/initiatives/admin/initiative_form.rb +1 -1
- data/app/forms/decidim/initiatives/initiative_form.rb +22 -31
- data/app/forms/decidim/initiatives/previous_form.rb +4 -0
- data/app/forms/decidim/initiatives/vote_form.rb +11 -11
- data/app/helpers/decidim/initiatives/admin/initiatives_helper.rb +1 -1
- data/app/helpers/decidim/initiatives/application_helper.rb +5 -62
- data/app/helpers/decidim/initiatives/initiative_helper.rb +48 -5
- data/app/helpers/decidim/initiatives/initiatives_helper.rb +33 -12
- data/app/jobs/decidim/initiatives/export_initiatives_job.rb +1 -1
- data/app/models/decidim/initiative.rb +16 -14
- data/app/models/decidim/initiatives_vote.rb +1 -1
- data/app/packs/entrypoints/decidim_initiatives.js +3 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_initiatives.svg +42 -1
- data/app/packs/src/decidim/initiatives/application.js +0 -1
- data/app/packs/src/decidim/initiatives/scoped_type.js +1 -1
- data/app/packs/stylesheets/decidim/initiatives/initiatives-votes.scss +21 -21
- data/app/packs/stylesheets/decidim/initiatives/print-initiative.scss +47 -35
- data/app/packs/stylesheets/initiatives.scss +171 -0
- data/app/permissions/decidim/initiatives/permissions.rb +3 -13
- data/app/presenters/decidim/initiatives/admin_log/initiative_presenter.rb +2 -2
- data/app/presenters/decidim/initiatives/admin_log/initiatives_settings_presenter.rb +2 -2
- data/app/presenters/decidim/initiatives/admin_log/initiatives_type_presenter.rb +2 -2
- data/app/queries/decidim/initiatives/organization_prioritized_initiatives.rb +1 -1
- data/app/queries/decidim/initiatives/similar_initiatives.rb +2 -2
- data/app/queries/decidim/initiatives/support_period_finished_initiatives.rb +1 -1
- data/app/queries/decidim/initiatives/user_authorizations.rb +1 -1
- data/app/services/decidim/initiatives/pdf_signature_example.rb +44 -52
- data/app/views/decidim/initiatives/_modal.html.erb +15 -0
- data/app/views/decidim/initiatives/admin/answers/_info_initiative.html.erb +21 -19
- data/app/views/decidim/initiatives/admin/answers/edit.html.erb +41 -27
- data/app/views/decidim/initiatives/admin/committee_requests/index.html.erb +41 -48
- data/app/views/decidim/initiatives/admin/exports/_dropdown.html.erb +8 -7
- data/app/views/decidim/initiatives/admin/initiatives/_form.html.erb +111 -95
- data/app/views/decidim/initiatives/admin/initiatives/_initiative_attachments.erb +7 -7
- data/app/views/decidim/initiatives/admin/initiatives/_signatures.html.erb +87 -0
- data/app/views/decidim/initiatives/admin/initiatives/edit.html.erb +72 -60
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.html.erb +8 -0
- data/app/views/decidim/initiatives/admin/initiatives/export_pdf_signatures.pdf.erb +5 -78
- data/app/views/decidim/initiatives/admin/initiatives/index.html.erb +76 -75
- data/app/views/decidim/initiatives/admin/initiatives_settings/_form.html.erb +7 -8
- data/app/views/decidim/initiatives/admin/initiatives_settings/edit.html.erb +17 -5
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/_form.html.erb +11 -6
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/edit.html.erb +16 -22
- data/app/views/decidim/initiatives/admin/initiatives_type_scopes/new.html.erb +17 -15
- data/app/views/decidim/initiatives/admin/initiatives_types/_form.html.erb +93 -76
- data/app/views/decidim/initiatives/admin/initiatives_types/_initiative_type_scopes.html.erb +35 -33
- data/app/views/decidim/initiatives/admin/initiatives_types/edit.html.erb +16 -12
- data/app/views/decidim/initiatives/admin/initiatives_types/index.html.erb +39 -48
- data/app/views/decidim/initiatives/admin/initiatives_types/new.html.erb +16 -9
- data/app/views/decidim/initiatives/committee_requests/new.html.erb +21 -19
- data/app/views/decidim/initiatives/create_initiative/_share_committee_link.html.erb +15 -20
- data/app/views/decidim/initiatives/create_initiative/fill_data.html.erb +62 -100
- data/app/views/decidim/initiatives/create_initiative/finish.html.erb +24 -28
- data/app/views/decidim/initiatives/create_initiative/promotal_committee.html.erb +15 -17
- data/app/views/decidim/initiatives/create_initiative/select_initiative_type.html.erb +32 -46
- data/app/views/decidim/initiatives/initiative_signatures/_wizard_steps.html.erb +15 -19
- data/app/views/decidim/initiatives/initiative_signatures/fill_personal_data.html.erb +25 -36
- data/app/views/decidim/initiatives/initiative_signatures/finish.html.erb +5 -16
- data/app/views/decidim/initiatives/initiative_signatures/sms_code.html.erb +8 -19
- data/app/views/decidim/initiatives/initiative_signatures/sms_phone_number.html.erb +8 -20
- data/app/views/decidim/initiatives/initiatives/_committee_members.html.erb +48 -66
- data/app/views/decidim/initiatives/initiatives/_form.html.erb +49 -95
- data/app/views/decidim/initiatives/initiatives/_initiative_badge.html.erb +3 -5
- data/app/views/decidim/initiatives/initiatives/_initiative_hero.html.erb +13 -0
- data/app/views/decidim/initiatives/initiatives/_initiatives.html.erb +6 -15
- data/app/views/decidim/initiatives/initiatives/_interactions.html.erb +1 -1
- data/app/views/decidim/initiatives/initiatives/_new_initiative_button.html.erb +28 -0
- data/app/views/decidim/initiatives/initiatives/_progress_bar.html.erb +2 -6
- data/app/views/decidim/initiatives/initiatives/_result.html.erb +15 -21
- data/app/views/decidim/initiatives/initiatives/_send_to_technical_validation.html.erb +3 -3
- data/app/views/decidim/initiatives/initiatives/_tags_type.html.erb +1 -0
- data/app/views/decidim/initiatives/initiatives/_vote_button.html.erb +9 -9
- data/app/views/decidim/initiatives/initiatives/_vote_cabin.html.erb +7 -7
- data/app/views/decidim/initiatives/initiatives/edit.html.erb +63 -68
- data/app/views/decidim/initiatives/initiatives/index.html.erb +17 -18
- data/app/views/decidim/initiatives/initiatives/index.js.erb +0 -5
- data/app/views/decidim/initiatives/initiatives/print.html.erb +123 -120
- data/app/views/decidim/initiatives/initiatives/show.html.erb +188 -72
- data/app/views/decidim/initiatives/initiatives_mailer/notify_creation.html.erb +2 -2
- data/app/views/decidim/initiatives/initiatives_type_scopes/search.html.erb +2 -1
- data/app/views/decidim/initiatives/versions/show.html.erb +15 -6
- data/app/views/layouts/decidim/_initiative_creation_header.html.erb +17 -28
- data/app/views/layouts/decidim/_initiative_header.html.erb +3 -23
- data/app/views/layouts/decidim/_initiative_header_steps.html.erb +4 -12
- data/app/views/layouts/decidim/_initiative_signature_creation_header.html.erb +5 -26
- data/app/views/layouts/decidim/admin/initiative.html.erb +12 -13
- data/app/views/layouts/decidim/admin/initiatives.html.erb +40 -11
- data/app/views/layouts/decidim/initiative.html.erb +16 -11
- data/app/views/layouts/decidim/initiative_creation.html.erb +7 -18
- data/app/views/layouts/decidim/initiative_head.html.erb +15 -0
- data/app/views/layouts/decidim/initiative_signature_creation.html.erb +3 -11
- data/config/assets.rb +0 -1
- data/config/initializers/wicked_pdf.rb +1 -1
- data/config/locales/ar.yml +1 -96
- data/config/locales/bg.yml +0 -642
- data/config/locales/ca.yml +76 -115
- data/config/locales/cs.yml +70 -109
- data/config/locales/de.yml +78 -117
- data/config/locales/el.yml +1 -98
- data/config/locales/en.yml +69 -108
- data/config/locales/es-MX.yml +65 -104
- data/config/locales/es-PY.yml +65 -104
- data/config/locales/es.yml +73 -112
- data/config/locales/eu.yml +66 -105
- data/config/locales/fi-plain.yml +67 -106
- data/config/locales/fi.yml +68 -107
- data/config/locales/fr-CA.yml +69 -108
- data/config/locales/fr.yml +67 -106
- data/config/locales/ga-IE.yml +0 -35
- data/config/locales/gl.yml +1 -89
- data/config/locales/hu.yml +25 -114
- data/config/locales/id-ID.yml +1 -89
- data/config/locales/is-IS.yml +1 -60
- data/config/locales/it.yml +6 -111
- data/config/locales/ja.yml +65 -111
- data/config/locales/lb.yml +6 -88
- data/config/locales/lt.yml +52 -103
- data/config/locales/lv.yml +1 -99
- data/config/locales/nl.yml +6 -104
- data/config/locales/no.yml +6 -114
- data/config/locales/pl.yml +6 -158
- data/config/locales/pt-BR.yml +23 -146
- data/config/locales/pt.yml +6 -111
- data/config/locales/ro-RO.yml +13 -108
- data/config/locales/ru.yml +1 -68
- data/config/locales/sk.yml +1 -85
- data/config/locales/sl.yml +3 -5
- data/config/locales/sv.yml +25 -120
- data/config/locales/tr-TR.yml +9 -110
- data/config/locales/uk.yml +1 -68
- data/config/locales/zh-CN.yml +6 -102
- data/config/locales/zh-TW.yml +31 -95
- data/db/migrate/20171017091734_add_scopes_for_all_initiative_types.rb +1 -1
- data/db/migrate/20171017095143_update_initiative_scoped_type.rb +1 -1
- data/db/migrate/20191002082220_move_signature_type_to_initative_type.rb +1 -1
- data/lib/decidim/api/initiative_committee_member_type.rb +2 -2
- data/lib/decidim/initiatives/admin_engine.rb +13 -93
- data/lib/decidim/initiatives/content_blocks/registry_manager.rb +22 -0
- data/lib/decidim/initiatives/engine.rb +45 -23
- data/lib/decidim/initiatives/menu.rb +150 -0
- data/lib/decidim/initiatives/participatory_space.rb +6 -91
- data/lib/decidim/initiatives/query_extensions.rb +5 -5
- data/lib/decidim/initiatives/seeds.rb +95 -0
- data/lib/decidim/initiatives/test/factories.rb +43 -48
- data/lib/decidim/initiatives/version.rb +1 -1
- data/lib/decidim/initiatives.rb +1 -1
- data/lib/tasks/decidim_initiatives.rake +2 -2
- data/lib/tasks/initiatives/upgrade/decidim_initiatives_upgrade_tasks.rake +1 -1
- metadata +51 -81
- data/app/cells/decidim/initiatives/content_blocks/highlighted_initiatives/show.erb +0 -28
- data/app/cells/decidim/initiatives/initiative_m/author.erb +0 -10
- data/app/cells/decidim/initiatives/initiative_m/footer.erb +0 -28
- data/app/cells/decidim/initiatives/initiative_m/tags.erb +0 -9
- data/app/cells/decidim/initiatives/initiative_m_cell.rb +0 -77
- data/app/controllers/decidim/initiatives/widgets_controller.rb +0 -44
- data/app/packs/stylesheets/decidim/initiatives/admin.scss +0 -33
- data/app/packs/stylesheets/decidim/initiatives/initiatives.scss +0 -64
- data/app/packs/stylesheets/decidim/initiatives/popularity_item.scss +0 -76
- data/app/packs/stylesheets/decidim/initiatives/statistics.scss +0 -15
- data/app/views/decidim/initiatives/create_initiative/_finish_help.html.erb +0 -2
- data/app/views/decidim/initiatives/create_initiative/previous_form.html.erb +0 -40
- data/app/views/decidim/initiatives/create_initiative/show_similar_initiatives.html.erb +0 -23
- data/app/views/decidim/initiatives/initiatives/_author.html.erb +0 -35
- data/app/views/decidim/initiatives/initiatives/_count.html.erb +0 -1
- data/app/views/decidim/initiatives/initiatives/_filters.html.erb +0 -33
- data/app/views/decidim/initiatives/initiatives/_filters_small_view.html.erb +0 -18
- data/app/views/decidim/initiatives/initiatives/_index_header.html.erb +0 -44
- data/app/views/decidim/initiatives/initiatives/_tags.html.erb +0 -7
- data/app/views/decidim/initiatives/versions/index.html.erb +0 -8
- data/config/locales/he-IL.yml +0 -1
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/decidim-initiatives.gemspec +0 -38
- data/lib/decidim/initiatives/initiatives_filter_form_builder.rb +0 -56
- data/lib/gem_overrides/origami/date.rb +0 -47
data/config/locales/nl.yml
CHANGED
@@ -49,7 +49,6 @@ nl:
|
|
49
49
|
attachment:
|
50
50
|
file: Bestand is ongeldig
|
51
51
|
needs_to_be_reattached: Moet opnieuw worden gekoppeld
|
52
|
-
title: Titel mag niet leeg zijn
|
53
52
|
activerecord:
|
54
53
|
models:
|
55
54
|
decidim/initiative_comittee:
|
@@ -146,10 +145,8 @@ nl:
|
|
146
145
|
- Volg de stappen om een nieuw initiatief te maken
|
147
146
|
description: Deze badge wordt toegekend wanneer u nieuwe initiatieven start en samenwerkt met anderen om ze uit te voeren.
|
148
147
|
description_another: Deze gebruiker heeft %{score} initiatieven gepubliceerd.
|
149
|
-
description_own: Je hebt %{score} initiatieven gepubliceerd.
|
150
148
|
name: Gepubliceerde initiatieven
|
151
149
|
next_level_in: Publiceer nog %{score} initiatieven om het volgende niveau te bereiken!
|
152
|
-
unearned_another: Deze gebruiker heeft nog geen initiatieven gepubliceerd.
|
153
150
|
unearned_own: Je hebt nog geen initiatieven gepubliceerd.
|
154
151
|
help:
|
155
152
|
participatory_spaces:
|
@@ -175,8 +172,6 @@ nl:
|
|
175
172
|
index:
|
176
173
|
approve: Goedkeuren
|
177
174
|
confirm_revoke: Weet je het zeker?
|
178
|
-
invite_to_committee_help: Deel deze link om andere deelnemers uit te nodigen voor de promotieraad
|
179
|
-
no_members_yet: Er zijn geen leden in de promotieraad
|
180
175
|
revoke: Intrekken
|
181
176
|
title: Commissieleden
|
182
177
|
content_blocks:
|
@@ -197,10 +192,8 @@ nl:
|
|
197
192
|
export_votes: Handtekeningen exporteren
|
198
193
|
reject: Verwerp initiatief
|
199
194
|
send_to_technical_validation: Stuur naar technische validatie
|
200
|
-
success: Het initiatief is verzonden naar technische validatie
|
201
195
|
update: Bijwerken
|
202
196
|
form:
|
203
|
-
attachments: Bijlagen
|
204
197
|
settings: Instellingen
|
205
198
|
title: Algemene informatie
|
206
199
|
index:
|
@@ -212,48 +205,21 @@ nl:
|
|
212
205
|
edit: Bewerken
|
213
206
|
new: Nieuw
|
214
207
|
photos: Foto's
|
215
|
-
update:
|
216
|
-
error: er is een fout opgetreden
|
217
|
-
success: Het burgerinitiatief is met succes bijgewerkt
|
218
208
|
initiatives_type_scopes:
|
219
|
-
create:
|
220
|
-
error: er is een fout opgetreden
|
221
|
-
success: Er is een nieuwe scope voor het gegeven initiatieftype gecreëerd
|
222
|
-
destroy:
|
223
|
-
success: De scope is succesvol verwijderd
|
224
209
|
edit:
|
225
|
-
back: Terug
|
226
|
-
confirm_destroy: Weet je het zeker?
|
227
|
-
destroy: Verwijder
|
228
210
|
title: Bewerk het initiatieftype bereik
|
229
211
|
update: Bijwerken
|
230
212
|
new:
|
231
|
-
back: Terug
|
232
213
|
create: creëren
|
233
214
|
title: Creër initiatiefstype bereik
|
234
|
-
update:
|
235
|
-
error: er is een fout opgetreden
|
236
|
-
success: Het bereik is met succes bijgewerkt
|
237
215
|
initiatives_types:
|
238
|
-
create:
|
239
|
-
error: er is een fout opgetreden
|
240
|
-
success: Een nieuw initiatieftype is succesvol gemaakt
|
241
|
-
destroy:
|
242
|
-
success: Het initiatieftype is succesvol verwijderd
|
243
216
|
edit:
|
244
|
-
confirm_destroy: Weet je het zeker?
|
245
|
-
destroy: Verwijder
|
246
217
|
update: Bijwerken
|
247
|
-
form:
|
248
|
-
title: Algemene informatie
|
249
218
|
initiative_type_scopes:
|
250
219
|
title: Scopes voor het initiatieftype
|
251
220
|
new:
|
252
221
|
create: creëren
|
253
222
|
title: Nieuw initiatiefstype
|
254
|
-
update:
|
255
|
-
error: Er is een fout opgetreden
|
256
|
-
success: Het initiatieftype is succesvol bijgewerkt
|
257
223
|
admin_log:
|
258
224
|
initiative:
|
259
225
|
publish: "%{user_name} heeft het initiatief %{resource_name} gepubliceerd"
|
@@ -268,10 +234,6 @@ nl:
|
|
268
234
|
rejected: Niet genoeg handtekeningen
|
269
235
|
validating: Technische validatie
|
270
236
|
application_helper:
|
271
|
-
filter_area_values:
|
272
|
-
all: Allemaal
|
273
|
-
filter_scope_values:
|
274
|
-
all: Allemaal
|
275
237
|
filter_state_values:
|
276
238
|
accepted: Genoeg handtekeningen
|
277
239
|
all: Allemaal
|
@@ -286,7 +248,6 @@ nl:
|
|
286
248
|
success: Het verzoek is goedgekeurd.
|
287
249
|
new:
|
288
250
|
continue: Doorgaan met
|
289
|
-
help_text: U staat op het punt lid te worden van de promotieraad van dit initiatief
|
290
251
|
revoke:
|
291
252
|
success: Verzoek is ingetrokken.
|
292
253
|
spawn:
|
@@ -312,24 +273,15 @@ nl:
|
|
312
273
|
previous_form:
|
313
274
|
back: Terug
|
314
275
|
continue: Doorgaan met
|
315
|
-
help: Waaruit bestaat het initiatief? Noteer de titel en beschrijving. We adviseren een korte en bondige titel en een beschrijving gericht op de voorgestelde oplossing.
|
316
|
-
more_information: "(Meer informatie)"
|
317
276
|
promotal_committee:
|
318
|
-
back: Terug
|
319
277
|
more_information: "(Meer informatie)"
|
320
278
|
select_initiative_type:
|
321
279
|
back: Terug
|
322
280
|
choose_html: Ik wil een <strong>%{title}</strong> aanmaken
|
323
|
-
more_information:
|
281
|
+
more_information: (Meer informatie)
|
324
282
|
select: Ik wil dit initiatief promoten
|
325
283
|
share_committee_link:
|
326
|
-
continue: Doorgaan met
|
327
284
|
invite_to_committee_help: Link om mensen uit te nodigen die deel zullen uitmaken van de promotieraad
|
328
|
-
show_similar_initiatives:
|
329
|
-
back: Terug
|
330
|
-
compare_help: Als een van de volgende initiatieven vergelijkbaar is met dat van jou, moedigen wij je aan dit te ondersteunen. Je voorstel heeft meer mogelijkheden om gerealiseerd te worden.
|
331
|
-
continue: Mijn initiatief is anders
|
332
|
-
more_information: "(Meer informatie)"
|
333
285
|
events:
|
334
286
|
approve_membership_request:
|
335
287
|
email_intro: "%{author_nickname} heeft je aanvraag om deel uit te maken van het promotiecomité %{resource_title} aanvaard."
|
@@ -355,19 +307,10 @@ nl:
|
|
355
307
|
email_subject: "%{applicant_nickname} wil deelnemen aan je initiatief"
|
356
308
|
notification_title: <a href="%{applicant_profile_url}">%{applicant_nickname}</a> wil graag deel uitmaken van de promotiecommissie voor jouw initiatief <a href="%{resource_url}">%{resource_title}</a>. Om te accepteren of te weigeren, klik <a href="%{resource_url}/edit">hier</a>.
|
357
309
|
form:
|
358
|
-
add_attachments: Documenten
|
359
310
|
attachment_legend: "(Optioneel) Voeg een bijlage toe"
|
360
|
-
delete_attachment: Verwijder
|
361
|
-
index:
|
362
|
-
title: Initiatieven
|
363
311
|
initiative_signatures:
|
364
312
|
fill_personal_data:
|
365
313
|
continue: Doorgaan met
|
366
|
-
date_select:
|
367
|
-
day: Dag
|
368
|
-
month: Maand
|
369
|
-
year: Jaar
|
370
|
-
help: Vul alstublieft de volgende velden in met uw persoonlijke gegevens om het initiatief te ondertekenen
|
371
314
|
finish:
|
372
315
|
back_to_initiative: Terug naar initiatief
|
373
316
|
sms_code:
|
@@ -375,28 +318,18 @@ nl:
|
|
375
318
|
help: Controleer de sms die je op je telefoon hebt ontvangen
|
376
319
|
sms_phone_number:
|
377
320
|
continue: Stuur me een sms
|
378
|
-
help: Vul het formulier in met uw geverifieerde telefoonnummer om uw verificatiecode aan te vragen
|
379
321
|
initiative_votes:
|
380
322
|
create:
|
381
323
|
error: Er zijn fouten opgetreden bij het ondertekenen van het initiatief.
|
382
|
-
invalid: De gegevens die worden verstrekt om het initiatief te ondertekenen zijn niet geldig
|
383
|
-
success_html: Proficiat! Het initiatief <strong> %{title}</strong> is correct ondertekend
|
384
324
|
personal_data:
|
385
325
|
invalid: Persoonlijke gegevens komen niet overeen met gegevens die zijn verstrekt voor autorisatie.
|
386
|
-
sms_code:
|
387
|
-
invalid: Uw verificatiecode komt niet overeen met de onze. Controleer nogmaals de sms die we u hebben gestuurd.
|
388
326
|
sms_phone:
|
389
327
|
invalid: Het telefoonnummer is ongeldig of in afwachting van autorisatie. Controleer alstublieft uw autorisaties.
|
390
328
|
initiatives:
|
391
|
-
author:
|
392
|
-
deleted: verwijderde
|
393
329
|
author_list:
|
394
330
|
hidden_authors_count:
|
395
331
|
one: en nog 1 persoon
|
396
332
|
other: en nog %{count} mensen
|
397
|
-
committee_members:
|
398
|
-
confirm_revoke: Weet je het zeker?
|
399
|
-
revoke: Intrekken
|
400
333
|
count:
|
401
334
|
title:
|
402
335
|
one: "%{count} initiatief"
|
@@ -407,21 +340,10 @@ nl:
|
|
407
340
|
author: Auteur
|
408
341
|
myself: Mijn initiatieven
|
409
342
|
scope: Bereik
|
410
|
-
search: Zoeken
|
411
343
|
state: Staat
|
412
344
|
type: Type
|
413
|
-
filters_small_view:
|
414
|
-
close_modal: Sluit venster
|
415
|
-
filter: Sorteer
|
416
|
-
filter_by: Sorteer op
|
417
|
-
unfold: Uitvouwen
|
418
345
|
index_header:
|
419
346
|
new_initiative: Nieuw initiatief
|
420
|
-
not_authorized:
|
421
|
-
authorizations_page: Bekijk autorisaties
|
422
|
-
close: Afsluiten
|
423
|
-
explanation: Je moet geverifieerd worden om een nieuw initiatief te kunnen maken.
|
424
|
-
title: Autorisatie vereist
|
425
347
|
initiatives:
|
426
348
|
no_initiatives_warning: De zoekopdracht heeft geen resultaten opgeleverd.
|
427
349
|
interactions:
|
@@ -439,10 +361,7 @@ nl:
|
|
439
361
|
print:
|
440
362
|
city: stad
|
441
363
|
result:
|
442
|
-
answer_title: Dit initiatief is beantwoord
|
443
364
|
initiative_rejected_reason: Dit initiatief is afgewezen vanwege het gebrek aan handtekeningen.
|
444
|
-
show:
|
445
|
-
follow_description: Ontvang een melding wanneer er nieuws is in dit initiatief
|
446
365
|
signatures_count:
|
447
366
|
one: " handtekening"
|
448
367
|
other: " handtekeningen"
|
@@ -456,8 +375,6 @@ nl:
|
|
456
375
|
count:
|
457
376
|
one: HANDTEKENING
|
458
377
|
other: HANDTEKENINGEN
|
459
|
-
most_popular_initiative: Populairste initiatief
|
460
|
-
need_more_votes: Meer handtekeningen nodig
|
461
378
|
initiatives_mailer:
|
462
379
|
creation_subject: Je burgerinitiatief '%{title}' is gemaakt
|
463
380
|
initiative_link:
|
@@ -469,8 +386,11 @@ nl:
|
|
469
386
|
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
|
470
387
|
status_change_body_for: 'Het initiatief %{title} heeft de status gewijzigd in: %{state}'
|
471
388
|
status_change_for: Het initiatief %{title} is van status veranderd
|
472
|
-
|
473
|
-
|
389
|
+
modal:
|
390
|
+
not_authorized:
|
391
|
+
authorizations_page: Bekijk autorisaties
|
392
|
+
explanation: Je moet geverifieerd worden om een nieuw initiatief te kunnen maken.
|
393
|
+
title: Autorisatie vereist
|
474
394
|
show:
|
475
395
|
badge_name:
|
476
396
|
accepted: Genoeg handtekeningen
|
@@ -483,9 +403,6 @@ nl:
|
|
483
403
|
accepted: Aanvaard
|
484
404
|
expired: Vervallen
|
485
405
|
unavailable_scope: Niet beschikbaar bereik
|
486
|
-
versions:
|
487
|
-
shared:
|
488
|
-
back_to_resource: Ga terug naar het initiatief
|
489
406
|
menu:
|
490
407
|
initiatives: Initiatieven
|
491
408
|
resources:
|
@@ -499,31 +416,16 @@ nl:
|
|
499
416
|
layouts:
|
500
417
|
decidim:
|
501
418
|
initiative_creation_header:
|
502
|
-
back: Terug
|
503
419
|
fill_data: creëren
|
504
420
|
finish: Voltooien
|
505
|
-
previous_form: Begin
|
506
421
|
promotal_committee: Promotieraad
|
507
422
|
select_initiative_type: Kiezen
|
508
|
-
show_similar_initiatives: Vergelijken
|
509
|
-
step: Stap %{current} van %{total}
|
510
|
-
title: Maak nieuw initiatief
|
511
|
-
initiative_header:
|
512
|
-
initiative_menu_item: Initiatief
|
513
423
|
initiative_signature_creation_header:
|
514
|
-
back: Terug
|
515
424
|
fill_personal_data: Vul uw gegevens in
|
516
425
|
finish: Voltooien
|
517
|
-
finished: Initiatief handtekening gemaakt
|
518
|
-
see_steps: zie stappen
|
519
|
-
select_identity: Selecteer identiteit
|
520
426
|
sms_code: Verificatie van sms-codes
|
521
427
|
sms_phone_number: Mobiele telefoonnummer
|
522
|
-
step: Stap %{current} van %{total}
|
523
428
|
title: Teken %{initiative_title}
|
524
429
|
initiatives:
|
525
|
-
initiative:
|
526
|
-
check: Bekijken
|
527
|
-
check_and_support: Bekijk het en onderteken
|
528
430
|
no_initiatives_yet:
|
529
431
|
no_initiatives_yet: Nog geen initiatieven!
|
data/config/locales/no.yml
CHANGED
@@ -52,7 +52,6 @@
|
|
52
52
|
attachment:
|
53
53
|
file: Filen er ugyldig
|
54
54
|
needs_to_be_reattached: Må festes på nytt
|
55
|
-
title: Tittelen bør ikke være tom
|
56
55
|
activerecord:
|
57
56
|
models:
|
58
57
|
decidim/initiative_comittee:
|
@@ -82,10 +81,6 @@
|
|
82
81
|
label: Type
|
83
82
|
search_placeholder:
|
84
83
|
title_or_description_or_id_string_or_author_name_or_author_nickname_cont: Søk i %{collection} etter tittel, beskrivelse, ID eller forfatternavn.
|
85
|
-
initiatives_settings:
|
86
|
-
update:
|
87
|
-
error: Det oppstod en feil
|
88
|
-
success: Innstillingene for initiativer har blitt oppdatert
|
89
84
|
menu:
|
90
85
|
attachments: Vedlegg
|
91
86
|
committee_members: Utvalgets medlemmer
|
@@ -174,10 +169,8 @@
|
|
174
169
|
- Følg trinnene for å opprette et nytt initiativ
|
175
170
|
description: Dette merket blir gitt når du setter i gang nye initiativer, og samarbeider med andre for å gjennomføre dem.
|
176
171
|
description_another: Denne deltakeren har fått %{score} initiativer publisert.
|
177
|
-
description_own: Du har fått %{score} initiativer publisert.
|
178
172
|
name: Publiserte initiativ
|
179
173
|
next_level_in: Få %{score} flere initiativer publisert for å nå neste nivå!
|
180
|
-
unearned_another: Denne deltakeren har ikke fått publisert noen tiltak ennå.
|
181
174
|
unearned_own: Du har ingen initiativer publisert ennå.
|
182
175
|
help:
|
183
176
|
participatory_spaces:
|
@@ -203,8 +196,6 @@
|
|
203
196
|
index:
|
204
197
|
approve: Godkjenn
|
205
198
|
confirm_revoke: Er du sikker?
|
206
|
-
invite_to_committee_help: Del denne lenken for å invitere andre deltakere til promotør komiteen
|
207
|
-
no_members_yet: Det er ingen medlemmer i promotør komiteen
|
208
199
|
revoke: Tilbakekalle
|
209
200
|
title: Komité medlemer
|
210
201
|
content_blocks:
|
@@ -226,10 +217,8 @@
|
|
226
217
|
export_votes: Eksporter signaturer
|
227
218
|
reject: Avvis initiativ
|
228
219
|
send_to_technical_validation: Send til teknisk validering
|
229
|
-
success: Initiativet er sendt til teknisk validering
|
230
220
|
update: Oppdater
|
231
221
|
form:
|
232
|
-
attachments: Vedlegg
|
233
222
|
settings: Innstillinger
|
234
223
|
title: Generell informasjon
|
235
224
|
index:
|
@@ -241,9 +230,6 @@
|
|
241
230
|
edit: Rediger
|
242
231
|
new: Ny
|
243
232
|
photos: Bilder
|
244
|
-
update:
|
245
|
-
error: Det oppstod en feil
|
246
|
-
success: Initiativet er oppdatert
|
247
233
|
initiatives_settings:
|
248
234
|
edit:
|
249
235
|
update: Oppdater
|
@@ -255,46 +241,23 @@
|
|
255
241
|
signatures: Flest signeringer
|
256
242
|
title: Innstillinger for initiativer
|
257
243
|
initiatives_type_scopes:
|
258
|
-
create:
|
259
|
-
error: Det oppstod en feil
|
260
|
-
success: Et nytt tema for den gitte initiativtypen er blitt opprettet
|
261
|
-
destroy:
|
262
|
-
success: Temaet ble fjernet
|
263
244
|
edit:
|
264
|
-
back: Tilbake
|
265
|
-
confirm_destroy: Er du sikker?
|
266
|
-
destroy: Slett
|
267
245
|
title: Rediger initiativtypens omgang
|
268
246
|
update: Oppdater
|
269
247
|
new:
|
270
|
-
back: Tilbake
|
271
248
|
create: Opprett
|
272
249
|
title: Opprett tema for initiativtype
|
273
|
-
update:
|
274
|
-
error: Det oppstod en feil
|
275
|
-
success: Temaet ble oppdatert
|
276
250
|
initiatives_types:
|
277
|
-
create:
|
278
|
-
error: Det oppstod en feil
|
279
|
-
success: En ny initiativtype er blitt opprettet
|
280
|
-
destroy:
|
281
|
-
success: Initiativtypen er fjernet
|
282
251
|
edit:
|
283
|
-
confirm_destroy: Er du sikker?
|
284
|
-
destroy: Slett
|
285
252
|
update: Oppdater
|
286
253
|
form:
|
287
254
|
authorizations: Innstillinger for autorisasjon
|
288
255
|
options: Valg
|
289
|
-
title: Generell informasjon
|
290
256
|
initiative_type_scopes:
|
291
257
|
title: Tema for initiativtypen
|
292
258
|
new:
|
293
259
|
create: Opprett
|
294
260
|
title: Ny intiativtype
|
295
|
-
update:
|
296
|
-
error: Det oppstod en feil
|
297
|
-
success: Initiativtypen er oppdatert
|
298
261
|
admin_log:
|
299
262
|
initiative:
|
300
263
|
publish: "%{user_name} publiserte %{resource_name} initiativet"
|
@@ -311,10 +274,6 @@
|
|
311
274
|
rejected: Ikke nok signaturer
|
312
275
|
validating: Teknisk validering
|
313
276
|
application_helper:
|
314
|
-
filter_area_values:
|
315
|
-
all: Alle
|
316
|
-
filter_scope_values:
|
317
|
-
all: Alle
|
318
277
|
filter_state_values:
|
319
278
|
accepted: Nok signaturer
|
320
279
|
all: Alle
|
@@ -329,7 +288,6 @@
|
|
329
288
|
success: Forespørselen er godkjent.
|
330
289
|
new:
|
331
290
|
continue: Fortsett
|
332
|
-
help_text: Du er i ferd med å be om å bli medlem av promotør komiteen for dette initiativet
|
333
291
|
revoke:
|
334
292
|
success: Forespørselen er ikke godkjent.
|
335
293
|
spawn:
|
@@ -355,31 +313,21 @@
|
|
355
313
|
more_information: "(Mer informasjon)"
|
356
314
|
send_my_initiative: Send mitt initiativ til teknisk validering
|
357
315
|
finish_help:
|
358
|
-
access_reminder: Du kan få tilgang til dine initiativ gjennom %{link} -filteret på Initiativ-siden.
|
359
316
|
publish_helper_text: Husk at for å publisere ditt initiativ må du fylle ut påkrevd informasjon og <strong>sende den til teknisk validering</strong> slik at en administrator kan gjennomgå det.
|
360
317
|
previous_form:
|
361
318
|
back: Tilbake
|
362
319
|
continue: Fortsett
|
363
|
-
help: Hva består initiativet av? Skriv tittelen og beskrivelsen. Vi anbefaler en kort og kortfattet tittel og en beskrivelse med fokus på den foreslåtte løsningen.
|
364
|
-
more_information: "(Mer informasjon)"
|
365
320
|
promotal_committee:
|
366
|
-
back: Tilbake
|
367
321
|
individual_help_text: Denne typen initiativ krever en promoteringskommisjon som består av minst %{committee_size} personer (vitner). Du må dele følgende kobling til de andre som inngår i dette initiativet. Når kontaktene dine mottar denne lenken må de følge de angitte trinnene.
|
368
322
|
more_information: "(Mer informasjon)"
|
369
323
|
select_initiative_type:
|
370
324
|
back: Tilbake
|
371
325
|
choose_html: Jeg vil opprette en <strong>%{title}</strong>
|
372
|
-
more_information:
|
326
|
+
more_information: (Mer informasjon)
|
373
327
|
select: Jeg ønsker å promotere dette initiativet
|
374
328
|
select_initiative_type_help: Initiativer er en måte deltakerne kan gripe inn på, slik at organisasjonen kan iverksette tiltak i forsvar for den generelle interessen. Hvilket initiativ vil du lansere?
|
375
329
|
share_committee_link:
|
376
|
-
continue: Fortsett
|
377
330
|
invite_to_committee_help: Lenke for å invitere folk som vil være en del av promotør komiteen
|
378
|
-
show_similar_initiatives:
|
379
|
-
back: Tilbake
|
380
|
-
compare_help: Hvis noen av de følgende initiativene ligner dine, oppfordrer vi deg til å signere den. Forslaget ditt vil ha flere muligheter for å bli gjort.
|
381
|
-
continue: Initiativet mitt er annerledes
|
382
|
-
more_information: "(Mer informasjon)"
|
383
331
|
edit:
|
384
332
|
accept: Godta initiativ
|
385
333
|
back: Tilbake
|
@@ -410,19 +358,10 @@
|
|
410
358
|
email_subject: "%{author_nickname} avviste din søknad til promotørkomiteen"
|
411
359
|
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>.
|
412
360
|
form:
|
413
|
-
add_attachments: Dokumenter
|
414
361
|
attachment_legend: "(Valgfritt) Legg til et vedlegg"
|
415
|
-
delete_attachment: Slett
|
416
|
-
index:
|
417
|
-
title: Initiativer
|
418
362
|
initiative_signatures:
|
419
363
|
fill_personal_data:
|
420
364
|
continue: Fortsett
|
421
|
-
date_select:
|
422
|
-
day: Dag
|
423
|
-
month: Måned
|
424
|
-
year: År
|
425
|
-
help: Vennligst fyll ut følgende felt med dine personopplysninger for å signere initiativet
|
426
365
|
finish:
|
427
366
|
back_to_initiative: Tilbake til initiativ
|
428
367
|
sms_code:
|
@@ -430,31 +369,20 @@
|
|
430
369
|
help: Sjekk SMS mottatt på telefonen
|
431
370
|
sms_phone_number:
|
432
371
|
continue: Send meg en meldig
|
433
|
-
help: Fyll skjemaet med det verifiserte telefonnummeret ditt for å be om verifiseringskoden din
|
434
372
|
initiative_votes:
|
435
373
|
create:
|
436
374
|
error: Det oppstod et problem med å signere initiativet.
|
437
|
-
invalid: Dataene som er gitt for å signere initiativet er ikke gyldige
|
438
|
-
success_html: Gratulerer! Initiativet <strong> %{title}</strong> er signert
|
439
375
|
personal_data:
|
440
376
|
invalid: Personopplysninger samsvar ikke med informasjonen som er gitt for autorisering.
|
441
|
-
sms_code:
|
442
|
-
invalid: Verifiseringskoden din samsvarer ikke med vår. Dobbel-sjekk SMS-en vi sendte deg.
|
443
377
|
sms_phone:
|
444
378
|
invalid: Telefonnummeret er ugyldig eller venter på godkjenning. Vennligst sjekk autorisasjonene dine.
|
445
379
|
initiatives:
|
446
|
-
author:
|
447
|
-
deleted: Slettet
|
448
380
|
author_list:
|
449
381
|
hidden_authors_count:
|
450
382
|
one: og 1 til persjon
|
451
383
|
other: og %{count} flere personer
|
452
384
|
committee_members:
|
453
385
|
approve: Godkjenn
|
454
|
-
confirm_revoke: Er du sikker?
|
455
|
-
invite_to_committee_help: Del denne lenken for å invitere andre deltakere til promotørutvalget
|
456
|
-
no_members_yet: Det er ingen medlemmer i promotørkomiteen
|
457
|
-
revoke: Tilbakekalle
|
458
386
|
title: Utvalgets medlemmer
|
459
387
|
count:
|
460
388
|
title:
|
@@ -466,21 +394,10 @@
|
|
466
394
|
author: Forfatter
|
467
395
|
myself: Initiativene mine
|
468
396
|
scope: Tema
|
469
|
-
search: Søk
|
470
397
|
state: Status
|
471
398
|
type: Type
|
472
|
-
filters_small_view:
|
473
|
-
close_modal: Lukk vindu
|
474
|
-
filter: Filter
|
475
|
-
filter_by: Filtrer etter
|
476
|
-
unfold: Åpne
|
477
399
|
index_header:
|
478
400
|
new_initiative: Nytt initiativ
|
479
|
-
not_authorized:
|
480
|
-
authorizations_page: Vis godkjennelser
|
481
|
-
close: Lukk
|
482
|
-
explanation: Du må verifiseres for å opprette et nytt initiativ.
|
483
|
-
title: Autorisasjon kreves
|
484
401
|
initiatives:
|
485
402
|
closed_initiatives_warning: Det er foreløpig ingen åpne initiativer, men her kan du finne alle tidligere initiativer.
|
486
403
|
no_initiatives_warning: Ingen initiativer samsvarer med dine søkekriterier.
|
@@ -518,15 +435,10 @@
|
|
518
435
|
section: 'Hvis organisasjonen ber om det, vennligst skriv ut og fyll ut dette skjemaet for å levere der det angitt:'
|
519
436
|
signature: Signatur
|
520
437
|
result:
|
521
|
-
answer_title: Initiativet har blitt besvart
|
522
438
|
initiative_rejected_reason: Dette initiativet er blitt avvist på grunn av manglende underskrifter.
|
523
439
|
show:
|
524
|
-
any_vote_method: Initiativet samler inn signaturer både på nett og fysisk.
|
525
440
|
confirm: Du sender nå initiativet til en administrator for å gjennomgå og publisere det. Når det er publisert vil du ikke kunne redigere den. Er du sikker?
|
526
441
|
edit: Rediger
|
527
|
-
follow_description: Motta et varsel når det er nyheter i dette initiativet
|
528
|
-
offline_method: Dette initiativet samler kun signaturer ved fysisk oppmøte.
|
529
|
-
print: Skriv ut initiativ
|
530
442
|
send_to_technical_validation: Send til teknisk validering
|
531
443
|
signatures_count:
|
532
444
|
one: " underskrift"
|
@@ -541,8 +453,6 @@
|
|
541
453
|
count:
|
542
454
|
one: SIGNATUR
|
543
455
|
other: SIGNATURER
|
544
|
-
most_popular_initiative: Mest populært initiativ
|
545
|
-
need_more_votes: Trenger flere underskrifter
|
546
456
|
initiatives_mailer:
|
547
457
|
creation_subject: Initiativet ditt '%{title}' er opprettet
|
548
458
|
initiative_link:
|
@@ -554,8 +464,11 @@
|
|
554
464
|
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
|
555
465
|
status_change_body_for: 'Initiativet %{title} har endret sin status til: %{state}'
|
556
466
|
status_change_for: Initiativet %{title} har endret sin status
|
557
|
-
|
558
|
-
|
467
|
+
modal:
|
468
|
+
not_authorized:
|
469
|
+
authorizations_page: Vis godkjennelser
|
470
|
+
explanation: Du må verifiseres for å opprette et nytt initiativ.
|
471
|
+
title: Autorisasjon kreves
|
559
472
|
show:
|
560
473
|
badge_name:
|
561
474
|
accepted: Nok signaturer
|
@@ -568,12 +481,6 @@
|
|
568
481
|
accepted: Aksepterte
|
569
482
|
expired: Utløpt
|
570
483
|
unavailable_scope: Utilgjengelig tema
|
571
|
-
update:
|
572
|
-
error: Det oppstod en feil
|
573
|
-
success: Initiativet er oppdatert
|
574
|
-
versions:
|
575
|
-
shared:
|
576
|
-
back_to_resource: Tilbake til initiativ
|
577
484
|
menu:
|
578
485
|
initiatives: Initiativer
|
579
486
|
resources:
|
@@ -587,31 +494,16 @@
|
|
587
494
|
layouts:
|
588
495
|
decidim:
|
589
496
|
initiative_creation_header:
|
590
|
-
back: Tilbake
|
591
497
|
fill_data: Opprett
|
592
498
|
finish: Fullfør
|
593
|
-
previous_form: Start
|
594
499
|
promotal_committee: Promotør komitè
|
595
500
|
select_initiative_type: Velg
|
596
|
-
show_similar_initiatives: Sammenlign
|
597
|
-
step: Trinn %{current} av %{total}
|
598
|
-
title: Opprett nytt initiativ
|
599
|
-
initiative_header:
|
600
|
-
initiative_menu_item: Initiativ
|
601
501
|
initiative_signature_creation_header:
|
602
|
-
back: Tilbake
|
603
502
|
fill_personal_data: Fullfør dataene dine
|
604
503
|
finish: Fullfør
|
605
|
-
finished: Initiativsignatur opprettet
|
606
|
-
see_steps: se trinn
|
607
|
-
select_identity: Velg identitet
|
608
504
|
sms_code: SMS-kode verifisering
|
609
505
|
sms_phone_number: Mobiltelefon number
|
610
|
-
step: Trinn %{current} av %{total}
|
611
506
|
title: Signer %{initiative_title}
|
612
507
|
initiatives:
|
613
|
-
initiative:
|
614
|
-
check: Sjekk det ut
|
615
|
-
check_and_support: Sjekk det ut og signer
|
616
508
|
no_initiatives_yet:
|
617
509
|
no_initiatives_yet: Ingen intiativer ennå!
|