decidim-core 0.0.7 → 0.0.8.1

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_core_manifest.js +3 -0
  3. data/app/assets/javascripts/decidim.js.es6 +8 -0
  4. data/app/assets/javascripts/decidim/widget.js.es6 +14 -0
  5. data/app/assets/stylesheets/decidim/extras/_embed.scss +11 -0
  6. data/app/assets/stylesheets/decidim/modules/_datepicker.scss +224 -0
  7. data/app/assets/stylesheets/decidim/modules/_modules.scss +1 -0
  8. data/app/assets/stylesheets/decidim/modules/_share.scss +1 -1
  9. data/app/assets/stylesheets/decidim/widget.scss.erb +25 -0
  10. data/app/controllers/decidim/participatory_process_widgets_controller.rb +17 -0
  11. data/app/controllers/decidim/participatory_processes_controller.rb +1 -0
  12. data/app/controllers/decidim/widgets_controller.rb +30 -0
  13. data/app/helpers/decidim/widget_urls_helper.rb +10 -0
  14. data/app/views/decidim/participatory_process_widgets/show.html.erb +28 -0
  15. data/app/views/decidim/participatory_processes/show.html.erb +1 -0
  16. data/app/views/decidim/shared/_embed_modal.html.erb +19 -0
  17. data/app/views/decidim/widgets/show.js.erb +22 -0
  18. data/app/views/layouts/decidim/_application.html.erb +1 -1
  19. data/app/views/layouts/decidim/widget.html.erb +17 -0
  20. data/config/locales/ca.yml +9 -1
  21. data/config/locales/en.yml +9 -1
  22. data/config/locales/es.yml +9 -1
  23. data/config/locales/eu.yml +0 -2
  24. data/config/locales/fi.yml +0 -2
  25. data/config/locales/fr.yml +9 -0
  26. data/config/locales/nl.yml +373 -0
  27. data/config/routes.rb +1 -0
  28. data/db/migrate/20170404132616_change_steps_end_and_start_date_to_date.rb +6 -0
  29. data/lib/decidim/core/version.rb +2 -2
  30. data/lib/decidim/form_builder.rb +33 -0
  31. data/lib/decidim/has_reference.rb +3 -2
  32. data/lib/tasks/decidim_tasks.rake +0 -5
  33. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ca.js +17 -0
  34. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.es.js +14 -0
  35. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.eu.js +15 -0
  36. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fi.js +14 -0
  37. data/vendor/assets/javascripts/form_datepicker.js.es6 +30 -0
  38. data/vendor/assets/javascripts/foundation-datepicker.js +1417 -0
  39. metadata +32 -12
@@ -0,0 +1,19 @@
1
+ <div class="text-center">
2
+ <button class="share-link link text-center" data-open="processEmbed">
3
+ <%= t(".embed_link") %>
4
+ <%= icon "code", class: "icon--after"%>
5
+ </button>
6
+ </div>
7
+ <div class="reveal reveal--embed" id="processEmbed" data-reveal>
8
+ <div class="reveal__header">
9
+ <h3 class="reveal__title"><%= t(".embed") %>:</h3>
10
+ <button class="close-button" data-close aria-label="<%= t(".close_window") %>" type="button">
11
+ <span aria-hidden="true">&times;</span>
12
+ </button>
13
+ </div>
14
+ <p class="embed__code">
15
+ <%= js_embed_code %>
16
+ <br />
17
+ <%= embed_code %>
18
+ </p>
19
+ </div>
@@ -0,0 +1,22 @@
1
+ /* eslint-disable no-var, prefer-template */
2
+ var iframe = document.createElement('iframe');
3
+
4
+ iframe.src = "<%= iframe_url %>";
5
+ iframe.frameBorder = "0"
6
+ iframe.scrolling = "no";
7
+ iframe.style.visibility = 'hidden';
8
+ iframe.style.height = "10px";
9
+ iframe.onload = function () {
10
+ iframe.contentWindow.postMessage({ type: "GET_HEIGHT" }, "*");
11
+ }
12
+
13
+ document.body.appendChild(iframe);
14
+
15
+ window.addEventListener("message", function (event) {
16
+ var height = event.data.height;
17
+
18
+ if (event.data.type === "SET_HEIGHT") {
19
+ iframe.style.height = height + "px";
20
+ iframe.style.visibility = 'visible';
21
+ }
22
+ });
@@ -7,7 +7,7 @@
7
7
  }) %>
8
8
 
9
9
  <!DOCTYPE html>
10
- <html class="no-js">
10
+ <html lang="<%= I18n.locale %>" class="no-js">
11
11
  <head>
12
12
  <title><%= decidim_page_title %></title>
13
13
  <%= render partial: 'layouts/decidim/head' %>
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html class="no-js">
3
+ <head>
4
+ <title><%= decidim_page_title %></title>
5
+ <%= csrf_meta_tags %>
6
+ <%= stylesheet_link_tag 'decidim/widget' %>
7
+ <%= javascript_include_tag 'application' %>
8
+ </head>
9
+
10
+ <body>
11
+ <%= yield %>
12
+ <div class="organization">
13
+ <%= render partial: "layouts/decidim/logo", locals: { organization: current_organization } %>
14
+ </div>
15
+ <%= javascript_include_tag 'decidim/widget' %>
16
+ </body>
17
+ </html>
@@ -204,6 +204,10 @@ ca:
204
204
  invalid: "%{field} no és vàlid."
205
205
  ok: D'acord
206
206
  title: Acció no autoritzada
207
+ embed_modal:
208
+ close_window: Tanca la finestra
209
+ embed: Si us plau, enganxa aquest codi a la teva pàgina
210
+ embed_link: Incrustar
207
211
  flag_modal:
208
212
  already_reported: Aquest contingut ja ha estat denunciat i serà revisat per un administrador.
209
213
  close: Tancar
@@ -269,7 +273,7 @@ ca:
269
273
  link_label: aquí
270
274
  ok: Hi estic d'acord
271
275
  footer:
272
- made_with_open_source: 'Aquesta web està feta amb <a target="_blank" href="https://github.com/AjuntamentdeBarcelona/decidim">software lliure</a>.'
276
+ made_with_open_source: 'Web feta amb <a target="_blank" href="https://github.com/decidim/decidim">programari de codi obert</a>.'
273
277
  header:
274
278
  close_menu: Tancar menú
275
279
  navigation: Navegació
@@ -278,6 +282,10 @@ ca:
278
282
  participatory_process_groups:
279
283
  participatory_process_group:
280
284
  browse: Explorar
285
+ participatory_process_widgets:
286
+ show:
287
+ active_step: Fase activa
288
+ take_part: Participa
281
289
  participatory_processes:
282
290
  index:
283
291
  promoted_processes: Processos destacats
@@ -205,6 +205,10 @@ en:
205
205
  invalid: "%{field} isn't valid."
206
206
  ok: Ok
207
207
  title: Not authorized
208
+ embed_modal:
209
+ close_window: Close window
210
+ embed: Please paste this code in your page
211
+ embed_link: Embed
208
212
  flag_modal:
209
213
  already_reported: This content is already reported and it will be reviewed by an admin.
210
214
  close: Close
@@ -270,7 +274,7 @@ en:
270
274
  link_label: here
271
275
  ok: I agree
272
276
  footer:
273
- made_with_open_source: Website made with <a target="_blank" href="https://github.com/AjuntamentdeBarcelona/decidim">open-source software</a>.
277
+ made_with_open_source: Website made with <a target="_blank" href="https://github.com/decidim/decidim">open-source software</a>.
274
278
  header:
275
279
  close_menu: Close menu
276
280
  navigation: Navigation
@@ -279,6 +283,10 @@ en:
279
283
  participatory_process_groups:
280
284
  participatory_process_group:
281
285
  browse: Browse
286
+ participatory_process_widgets:
287
+ show:
288
+ active_step: Active step
289
+ take_part: Take part
282
290
  participatory_processes:
283
291
  index:
284
292
  promoted_processes: Highlighted processes
@@ -204,6 +204,10 @@ es:
204
204
  invalid: "%{field} no es válido."
205
205
  ok: De acuerdo
206
206
  title: No autorizado
207
+ embed_modal:
208
+ close_window: Cerrar ventana
209
+ embed: Por favor, pega este código en tu página
210
+ embed_link: Incrustar
207
211
  flag_modal:
208
212
  already_reported: Este contenido ya fue denunciado y será revisado por un administrador.
209
213
  close: Cerrar
@@ -269,7 +273,7 @@ es:
269
273
  link_label: aquí
270
274
  ok: Estoy de acuerdo
271
275
  footer:
272
- made_with_open_source: 'Esta web está hecha con <a target="_blank" href="https://github.com/AjuntamentdeBarcelona/decidim">software libre</a>.'
276
+ made_with_open_source: 'Sitio web creado con <a target="_blank" href="https://github.com/decidim/decidim">software libre</a>.'
273
277
  header:
274
278
  close_menu: Cerrar menú
275
279
  navigation: Navegación
@@ -278,6 +282,10 @@ es:
278
282
  participatory_process_groups:
279
283
  participatory_process_group:
280
284
  browse: Explorar
285
+ participatory_process_widgets:
286
+ show:
287
+ active_step: Fase activa
288
+ take_part: Participa
281
289
  participatory_processes:
282
290
  index:
283
291
  promoted_processes: Procesos destacados
@@ -267,8 +267,6 @@ eu:
267
267
  description_html: 'Webgune honek bere cookieak eta hirugarrenenak erabiltzen ditu, nabigazioa hobetu eta intereseko edukiak eta zerbitzuak eskaintze aldera. Nabigatzen jarraituz gero, gure cookie-politika onartzen delakoan gaude. Argibide gehiago jasotzeko, kontsultatu hemen: %{link}.'
268
268
  link_label: hemen
269
269
  ok: Ados nago
270
- footer:
271
- made_with_open_source: 'Webgune hau egiteko, <a target="_blank" href="https://github.com/AjuntamentdeBarcelona/decidim">software librea</a> erabili da.'
272
270
  header:
273
271
  close_menu: Itxi menua
274
272
  navigation: Nabigazioa
@@ -267,8 +267,6 @@ fi:
267
267
  description_html: Tämä sivusto käyttää evästeitä. Jatkamalla tämän sivuston käyttöä hyväksyt selaimeesi asettamamme evästeet. Lue lisää %{link}.
268
268
  link_label: täältä
269
269
  ok: Hyväksyn
270
- footer:
271
- made_with_open_source: 'Sivusto rakennettu <a target="_blank" href="https://github.com/AjuntamentdeBarcelona/decidim">avoimen lähdekoodin ohjelmistolla</a>.'
272
270
  header:
273
271
  close_menu: Sulje valikko
274
272
  navigation: Navigaatio
@@ -0,0 +1,9 @@
1
+ fr:
2
+ activemodel:
3
+ attributes:
4
+ report:
5
+ details: Commentaires additionnels
6
+ user:
7
+ email: Votre email
8
+ booleans:
9
+ 'true': 'Oui'
@@ -0,0 +1,373 @@
1
+ nl:
2
+ activemodel:
3
+ attributes:
4
+ report:
5
+ details: Aanvullende opmerkingen
6
+ user:
7
+ email: Uw e-mailadres
8
+ name: Uw naam
9
+ password: Nieuw wachtwoord
10
+ password_confirmation: Bevestig uw nieuwe wachtwoord
11
+ user_group_document_number: Organisatie documentnummer
12
+ user_group_name: Naam van de organisatie
13
+ user_group_phone: Telefoon organisatie
14
+ activerecord:
15
+ attributes:
16
+ decidim/user:
17
+ current_password: Huidige wachtwoord
18
+ email: E-mailadres
19
+ name: Gebruikersnaam
20
+ password: Wachtwoord
21
+ password_confirmation: Wachtwoordbevestiging
22
+ remember_me: Blijf ingelogd
23
+ user_group_document_number: Organisatie documentnummer
24
+ user_group_name: Naam van de organisatie
25
+ user_group_phone: Telefoon organisatie
26
+ booleans:
27
+ 'false': 'Nee'
28
+ 'true': 'Ja'
29
+ carrierwave:
30
+ errors:
31
+ image_too_big: De afbeelding is te groot
32
+ decidim:
33
+ account:
34
+ show:
35
+ change_password: Wachtwoord wijzigen
36
+ update_account: Account bijwerken
37
+ update:
38
+ error: Er is een fout opgetreden bij het bijwerken van uw account.
39
+ success: Uw account is bijgewerkt.
40
+ success_with_email_confirmation: Uw account is bijgewerkt. U ontvangt een e-mail ter bevestiging van uw nieuwe e-mailadres.
41
+ anonymous_user: Anoniem
42
+ application:
43
+ documents:
44
+ related_documents: Gerelateerde documenten
45
+ photos:
46
+ related_photos: Gerelateerde foto 's
47
+ authorization_handlers:
48
+ decidim/dummy_authorization_handler:
49
+ fields:
50
+ document_number: Documentnummer
51
+ postal_code: Postcode
52
+ name: Voorbeeld machtiging
53
+ errors:
54
+ duplicate_authorization: Een gebruiker is al gemachtigd met dezelfde gegevens.
55
+ foo_authorization:
56
+ fields:
57
+ bar: Bar
58
+ foo: Foo
59
+ name: Foo machtiging
60
+ authorizations:
61
+ create:
62
+ error: Er is een fout opgetreden bij het verlenen van de machtiging.
63
+ success: U bent geautoriseerd.
64
+ current_participatory_processes: neem een kijkje bij de huidige processen
65
+ first_login:
66
+ actions:
67
+ decidim/dummy_authorization_handler: Gebruik de voorbeeld autorisatie
68
+ title: Verifieer uw identiteit
69
+ verify_with_these_options: 'Dit zijn de beschikbare opties om uw identiteit te verifiëren:'
70
+ new:
71
+ authorize: Verstuur
72
+ authorize_with: Controleer via %{authorizer}
73
+ skip_verification: U kunt dit overslaan voor nu en %{link}
74
+ core:
75
+ actions:
76
+ unauthorized: U bent niet gemachtigd dit te doen
77
+ devise:
78
+ omniauth_registrations:
79
+ create:
80
+ email_already_exists: Er is een ander account met hetzelfde e-mailadres
81
+ new:
82
+ complete_profile: Volledig profiel
83
+ sign_up: Gelieve uw profiel te voltooien
84
+ subtitle: Vul onderstaand formulier in om de aanmelding te voltooien
85
+ username_help: Publieke naam die op uw berichten verschijnt. Met het oog op het waarborgen van de anonimiteit hoeft dit niet uw echte naam te zijn.
86
+ registrations:
87
+ new:
88
+ already_have_an_account?: U heeft al een account?
89
+ newsletter_notifications: Stuur me informatie over relevante activiteiten
90
+ sign_in: Aanmelden
91
+ sign_up: Registratie
92
+ sign_up_as:
93
+ legend: Aanmelden als
94
+ user: Individu
95
+ user_group: Organisatie/collectief
96
+ subtitle: Meldt u aan om deel te nemen aan discussies en voorstellen te steunen.
97
+ terms: de bepalingen en voorwaarden van gebruik
98
+ tos_agreement: Door het aanmelden gaat u akkoord met %{link}.
99
+ username_help: Publieke naam die op uw berichten verschijnt. Met het oog op het waarborgen van de anonimiteit hoeft dit niet uw echte naam te zijn.
100
+ sessions:
101
+ new:
102
+ are_you_new?: Nieuw op het platform?
103
+ register: Een account aanmaken
104
+ shared:
105
+ omniauth_buttons:
106
+ or: Of
107
+ features:
108
+ dummy:
109
+ actions:
110
+ bar: Bar
111
+ foo: Foo
112
+ name: Dummy functie
113
+ settings:
114
+ global:
115
+ comments_enabled: Reacties ingeschakeld
116
+ dummy_global_attribute_1: Dummy Kenmerk 1
117
+ dummy_global_attribute_2: Dummy kenmerk 2
118
+ step:
119
+ comments_blocked: Reacties geblokkeerd
120
+ dummy_step_attribute_1: Dummy Stap Kenmerk 1
121
+ dummy_step_attribute_2: Dummy Stap Kenmerk 2
122
+ filters:
123
+ linked_classes:
124
+ all: Alle
125
+ meeting: Vergaderingen
126
+ project: Projecten
127
+ proposal: Voorstellen
128
+ result: Resultaten
129
+ forms:
130
+ errors:
131
+ error: Er is een fout in dit veld.
132
+ menu:
133
+ home: Home
134
+ more_information: Meer informatie
135
+ processes: Processen
136
+ newsletter_mailer:
137
+ newsletter:
138
+ note: U ontvangt deze e-mail omdat u bent geabonneerd op nieuwsbrieven van %{organization_name}. U kunt uw instellingen op uw <a href="%{link}">notificatiepagina</a> veranderen.
139
+ notifications_settings:
140
+ show:
141
+ comments_notifications: Ik wil e-mail ontvangen wanneer iemand reageert in mijn publicaties.
142
+ newsletter_notifications: Ik wil informatie ontvangen over relevante activiteiten
143
+ replies_notifications: Ik wil e-mail ontvangen wanneer iemand reageert op mijn reacties.
144
+ update_notifications_settings: Wijzigingen opslaan
145
+ update:
146
+ error: Er is een fout opgetreden bij het bijwerken van uw notificatie instellingen.
147
+ success: Uw notificatie instellingen zijn bijgewerkt.
148
+ own_user_groups:
149
+ index:
150
+ not_verified: Niet geverifieerd
151
+ verified: Geverifieerd
152
+ pages:
153
+ index:
154
+ title: Meer informatie
155
+ participatory_process_groups:
156
+ show:
157
+ group_participatory_processes: Processen voor %{group}
158
+ title: Titel
159
+ participatory_process_steps:
160
+ index:
161
+ process_steps: Processtappen
162
+ title: Participatieve processtappen
163
+ participatory_processes:
164
+ index:
165
+ title: Participatieve processen
166
+ participatory_process_groups:
167
+ none: Geen
168
+ scopes:
169
+ global: Globaal bereik
170
+ show:
171
+ developer_group: Ontwikkelaarsgroep
172
+ end_date: Einddatum
173
+ local_area: Lokale buurt
174
+ participatory_scope: Participatief toepassingsgebied
175
+ participatory_structure: Participatieve structuur
176
+ scope: Reikwijdte
177
+ target: Doel
178
+ reported_mailer:
179
+ hide:
180
+ hello: Hallo %{name},
181
+ report_html: "<p>De volgende inhoud: <p>%{content}<p>is automatisch verborgen.</p>"
182
+ subject: Een bron is automatisch verborgen
183
+ report:
184
+ hello: Hallo %{name},
185
+ report_html: "<p>De volgende inhoud: <p>%{content} <p>is gemeld.</p>"
186
+ subject: Een bron is gemeld
187
+ reports:
188
+ create:
189
+ error: Er is een fout opgetreden tijdens het maken van het rapport. Probeer het alstublieft opnieuw.
190
+ success: Het rapport is gemaakt en het zal worden beoordeeld door een beheerder.
191
+ shared:
192
+ action_authorization_modal:
193
+ incomplete:
194
+ cancel: Annuleer
195
+ explanation: 'Ook al bent u momenteel geautoriseerd met "%{authorization}", moeten we u vragen opnieuw autoriseren omdat we niet beschikken over de volgende gegevens:'
196
+ reauthorize: Opnieuw autoriseren
197
+ title: Autoriseert u opnieuw alstublieft
198
+ missing:
199
+ authorize: Autoriseren met "%{authorization}"
200
+ explanation: Om deze actie uit te voeren, moet u autoriseren met "%{authorization}".
201
+ title: Autorisatie vereist
202
+ unauthorized:
203
+ explanation: Excuus, u kunt deze actie niet uitvoeren; sommige gegevens kloppen niet.
204
+ invalid: "%{field} is niet geldig."
205
+ ok: Ok
206
+ title: Niet geautoriseerd
207
+ flag_modal:
208
+ already_reported: Deze inhoud is al gemeld en zal worden beoordeeld door een beheerder.
209
+ close: Sluit
210
+ description: Is deze inhoud ongepast?
211
+ does_not_belong: Bevat illegale activiteit, dreiging met zelfmoord, persoonlijke gegevens, of iets anders dat u denkt dat niet thuis hoort op %{organization_name}.
212
+ offensive: Bevat racisme, seksisme, laster, persoonlijke aanvallen, bedreigingen, zelfmoord dreiging of haat zaaien.
213
+ report: Rapporteren
214
+ spam: Bevat clickbait, reclame, oplichting of script bots.
215
+ title: Meld een probleem
216
+ login_modal:
217
+ please_sign_in: Log in alstublieft
218
+ sign_up: Registreren
219
+ reference:
220
+ reference: 'Referentie: %{reference}'
221
+ share_modal:
222
+ close_window: Sluit dit scherm
223
+ share: Deel
224
+ share_link: Link delen
225
+ devise:
226
+ invitations:
227
+ edit:
228
+ header: Uw wachtwoord instellen
229
+ submit_button: Opslaan
230
+ mailer:
231
+ invitation_instructions:
232
+ accept: Accepteer uitnodiging
233
+ accept_until: Deze uitnodiging zal verlopen op %{due_date}.
234
+ hello: Hallo %{email},
235
+ ignore: |-
236
+ Negeer deze email als u de uitnodiging niet wilt accepteren.<br /> Uw account wordt niet aangemaakt totdat u via de link hierboven uw wachtwoord instelt.
237
+ invited_you_as_admin: "%{invited_by} heeft u uitgenodigd als beheerder van %{application}, u kunt deze uitnodiging accepteren via onderstaande link."
238
+ someone_invited_you: Iemand heeft u uitgenodigd bij %{application}, u kunt deze uitnodiging accepteren via onderstaande link.
239
+ invite_admin:
240
+ subject: U bent uitgenodigd om %{organization} te beheren
241
+ invite_collaborator:
242
+ subject: U bent uitgenodigd om samen te werken bij %{organization}
243
+ organization_admin_invitation_instructions:
244
+ subject: U bent uitgenodigd om %{organization} te beheren
245
+ password_change:
246
+ greeting: Hallo %{recipient}!
247
+ message: Wij informeren u dat uw wachtwoord is gewijzigd.
248
+ subject: Wachtwoord is veranderd
249
+ errors:
250
+ messages:
251
+ content_type_whitelist_error: Het bestandstype is niet geldig
252
+ file_size_is_less_than_or_equal_to: bestandsgrootte moet kleiner zijn dan %{count}
253
+ invalid_manifest: Ongeldig manifest
254
+ invalid_participatory_process: Ongeldige participatief proces
255
+ long_words: Bevat woorden die te lang zijn
256
+ must_start_with_caps: Moet beginnen met hoofdletters
257
+ nesting_too_deep: kan niet binnen een subcategorie zijn
258
+ too_many_marks: Gebruikt te veel markeringen
259
+ too_much_caps: Gebruikt te veel hoofdletters
260
+ too_short: Is te kort
261
+ invisible_captcha:
262
+ sentence_for_humans: Als u een mens bent negeert u dit veld
263
+ timestamp_error_message: Sorry, dat was te snel! Gelieve opnieuw in te dienen.
264
+ layouts:
265
+ decidim:
266
+ cookie_warning:
267
+ description_html: Deze website maakt gebruik van cookies. Door gebruik te blijven maken van de site gaat u hiermee akkoord. Meer informatie via %{link}.
268
+ link_label: hier
269
+ ok: Ik ga akkoord
270
+ header:
271
+ close_menu: Menu sluiten
272
+ navigation: Navigatie
273
+ sign_in: Aanmelden
274
+ sign_up: Registreren
275
+ participatory_process_groups:
276
+ participatory_process_group:
277
+ browse: Browsen
278
+ participatory_processes:
279
+ index:
280
+ promoted_processes: Gemarkeerde processen
281
+ no_processes_yet:
282
+ no_processes_yet: Er zijn nog geen participatieve processen!
283
+ order_by_processes:
284
+ processes:
285
+ one: "%{count} proces"
286
+ other: "%{count} processen"
287
+ participatory_process:
288
+ active_step: 'Huidige stap:'
289
+ take_part: Deelnemen
290
+ promoted_process:
291
+ active_step: 'Huidige stap:'
292
+ more_info: Meer informatie
293
+ take_part: Deelnemen
294
+ process_header:
295
+ process_menu_item: Het proces
296
+ unfold: Ontvouwen
297
+ process_header_steps:
298
+ step: Stap %{current} van %{total}
299
+ view_steps: Bekijk stappen
300
+ user_menu:
301
+ admin_dashboard: Beheer dashboard
302
+ profile: Mijn account
303
+ sign_out: Afmelden
304
+ user_profile:
305
+ account: Account
306
+ authorizations: Bevoegdheden
307
+ notifications_settings: Notificatie instellingen
308
+ title: Gebruikersinstellingen
309
+ user_groups: Organisaties
310
+ locale:
311
+ name: Engels
312
+ pages:
313
+ '404':
314
+ back_home: Terug naar huis
315
+ content_doesnt_exist: Dit adres is onjuist of is verwijderd.
316
+ title: De pagina die u zoekt is niet gevonden
317
+ '500':
318
+ title: Er was een probleem met de server
319
+ try_later: Probeer het later opnieuw.
320
+ home:
321
+ extended:
322
+ debates: Debatten
323
+ debates_explanation: Laten we elkaar ontmoeten, in debat gaan, en ideeën uitwisselen; dat is belangrijk voor onze stad.
324
+ how_to_participate: Hoe neem ik deel in een proces?
325
+ meetings: Vergaderingen
326
+ meetings_explanation: Laten we elkaar ontmoeten, in debat gaan, en ideeën uitwisselen over wat belangrijk is voor onze stad.
327
+ more_info: Meer informatie
328
+ proposals: Voorstellen
329
+ proposals_explanation: Publieke ruimte voor voorstellen over de stad waarin we willen leven.
330
+ footer_sub_hero:
331
+ footer_sub_hero_body: Laten we bouwen aan een open, transparante en collaborative maatschappij.<br /> Neem deel en beslis.
332
+ footer_sub_hero_headline: Welkom bij %{organization} participatief platform.
333
+ register: Registreren
334
+ hero:
335
+ participate: Deelnemen
336
+ welcome: Welkom bij %{organization}!
337
+ highlighted_processes:
338
+ active_processes: Actieve processen
339
+ active_step: Actieve stap
340
+ see_all_processes: Toon alle processen
341
+ statistics:
342
+ headline: Huidige stand van %{organization}
343
+ processes: Processen
344
+ users: Gebruikers
345
+ sub_hero:
346
+ register: Registeren
347
+ social_share_button:
348
+ delicious: Heerlijk
349
+ douban: Douban
350
+ email: E-mail
351
+ facebook: Facebook
352
+ google_bookmark: Google Bookmark
353
+ google_plus: Google+
354
+ hacker_news: Hacker Nieuws
355
+ linkedin: LinkedIn
356
+ pinterest: Pinterest
357
+ qq: Qzone
358
+ reddit: Reddit
359
+ share_to: Delen op %{name}
360
+ tumblr: Tumblr
361
+ twitter: Twitter
362
+ vkontakte: Vkontakte
363
+ wechat: WeChat
364
+ wechat_footer: Open uw WeChat, klik op "Ontdekken" en open het menu "QR-Code scannen".
365
+ weibo: Sina Weibo
366
+ xing: Xing
367
+ views:
368
+ pagination:
369
+ first: "&laquo; Eerste"
370
+ last: Laatste &raquo;
371
+ next: Volgende &rsaquo;
372
+ previous: "&lsaquo; Vorige"
373
+ truncate: "&hellip;"