decidim-core 0.5.1 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_core_manifest.js +1 -0
- data/app/assets/javascripts/decidim/notifications.js.es6 +33 -0
- data/app/assets/stylesheets/decidim/extras/_meeting-registrations.scss +11 -0
- data/app/assets/stylesheets/decidim/modules/_extra.scss +4 -0
- data/app/assets/stylesheets/decidim/modules/_process-nav.scss +14 -0
- data/app/commands/decidim/create_follow.rb +40 -0
- data/app/commands/decidim/create_omniauth_registration.rb +0 -2
- data/app/commands/decidim/create_registration.rb +1 -3
- data/app/commands/decidim/create_report.rb +7 -7
- data/app/commands/decidim/delete_follow.rb +37 -0
- data/app/commands/decidim/invite_user.rb +1 -3
- data/app/commands/decidim/update_notifications_settings.rb +1 -2
- data/app/constraints/decidim/current_feature.rb +3 -4
- data/app/controllers/concerns/decidim/settings.rb +1 -1
- data/app/controllers/decidim/features/base_controller.rb +5 -6
- data/app/controllers/decidim/follows_controller.rb +45 -0
- data/app/controllers/decidim/notifications_controller.rb +39 -0
- data/app/controllers/decidim/pages_controller.rb +2 -2
- data/app/controllers/decidim/scopes_controller.rb +2 -0
- data/app/controllers/decidim/widgets_controller.rb +3 -3
- data/app/forms/decidim/follow_form.rb +20 -0
- data/app/forms/decidim/invite_user_form.rb +1 -1
- data/app/forms/decidim/notifications_settings_form.rb +2 -4
- data/app/helpers/decidim/action_authorization_helper.rb +2 -1
- data/app/helpers/decidim/decidim_form_helper.rb +4 -0
- data/app/helpers/decidim/feature_path_helper.rb +2 -13
- data/app/helpers/decidim/icon_helper.rb +26 -8
- data/app/helpers/decidim/paginate_helper.rb +1 -1
- data/app/helpers/decidim/scopes_helper.rb +1 -1
- data/app/jobs/decidim/email_notification_generator_job.rb +12 -0
- data/app/jobs/decidim/export_job.rb +1 -3
- data/app/jobs/decidim/notification_generator_for_recipient_job.rb +14 -0
- data/app/jobs/decidim/notification_generator_job.rb +12 -0
- data/app/mailers/decidim/export_mailer.rb +6 -7
- data/app/mailers/decidim/notification_mailer.rb +20 -0
- data/app/mailers/decidim/reported_mailer.rb +3 -3
- data/app/models/decidim/abilities/admin_ability.rb +0 -1
- data/app/models/decidim/abilities/base_ability.rb +8 -0
- data/app/models/decidim/abilities/everyone_ability.rb +0 -2
- data/app/models/decidim/abilities/participatory_process_admin_ability.rb +1 -1
- data/app/models/decidim/abilities/participatory_process_collaborator_ability.rb +1 -1
- data/app/models/decidim/category.rb +4 -4
- data/app/models/decidim/feature.rb +29 -4
- data/app/models/decidim/follow.rb +10 -0
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/notification.rb +12 -0
- data/app/models/decidim/scope.rb +8 -8
- data/app/models/decidim/user.rb +11 -1
- data/app/presenters/decidim/home_stats_presenter.rb +1 -1
- data/app/presenters/decidim/resource_locator_presenter.rb +3 -18
- data/app/queries/decidim/participatory_processes_with_user_role.rb +1 -1
- data/app/services/decidim/email_notification_generator.rb +63 -0
- data/app/services/decidim/events_manager.rb +41 -0
- data/app/services/decidim/notification_generator.rb +51 -0
- data/app/services/decidim/notification_generator_for_recipient.rb +50 -0
- data/app/uploaders/decidim/attachment_uploader.rb +1 -1
- data/app/views/decidim/authorizations/first_login.html.erb +2 -2
- data/app/views/decidim/follows/update_button.js.erb +3 -0
- data/app/views/decidim/notification_mailer/event_received.html.erb +9 -0
- data/app/views/decidim/notifications/_notification.html.erb +18 -0
- data/app/views/decidim/notifications/index.html.erb +32 -0
- data/app/views/decidim/notifications_settings/show.html.erb +3 -10
- data/app/views/decidim/shared/_follow_button.html.erb +19 -0
- data/app/views/layouts/decidim/_head.html.erb +1 -0
- data/app/views/layouts/decidim/_head_extra.html.erb +7 -0
- data/app/views/layouts/decidim/_user_menu.html.erb +1 -0
- data/app/views/layouts/decidim/_wrapper.html.erb +3 -0
- data/app/views/layouts/decidim/widget.html.erb +3 -3
- data/app/views/pages/home/_hero.html.erb +1 -1
- data/app/views/pages/home/_highlighted_processes.html.erb +3 -3
- data/config/locales/ca.yml +29 -74
- data/config/locales/en.yml +23 -71
- data/config/locales/es.yml +31 -78
- data/config/locales/eu.yml +61 -65
- data/config/locales/fi.yml +91 -51
- data/config/locales/fr.yml +40 -83
- data/config/locales/it.yml +129 -54
- data/config/locales/nl.yml +90 -51
- data/config/locales/pl.yml +319 -10
- data/config/locales/uk.yml +400 -0
- data/config/routes.rb +8 -14
- data/db/migrate/20170720120231_make_moderations_polymorphic.rb +29 -0
- data/db/migrate/20170726145242_make_categories_polymorphic.rb +27 -0
- data/db/migrate/20170807123535_create_decidim_follows.rb +20 -0
- data/db/migrate/20170808071019_create_decidim_notifications.rb +13 -0
- data/db/migrate/20170906091718_add_extra_to_notifications.rb +7 -0
- data/db/migrate/20170912082054_add_emails_on_notifications_flag_to_user.rb +7 -0
- data/db/migrate/20170913092351_add_header_snippets_to_organizations.rb +7 -0
- data/db/migrate/20170914075721_remove_followable_index_from_follows.rb +7 -0
- data/db/migrate/20170914092116_remove_comment_and_replies_notifications_from_users.rb +8 -0
- data/db/seeds.rb +2 -108
- data/lib/decidim/core.rb +46 -8
- data/lib/decidim/core/engine.rb +20 -6
- data/lib/decidim/core/test.rb +3 -0
- data/lib/decidim/core/test/factories.rb +37 -75
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +0 -26
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +37 -0
- data/lib/decidim/core/test/shared_examples/manage_moderations_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/process_announcements_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/reportable.rb +4 -4
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +41 -0
- data/lib/decidim/core/test/shared_examples/user_localised_email_examples.rb +25 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/engine_router.rb +54 -0
- data/lib/decidim/events.rb +9 -0
- data/lib/decidim/events/base_event.rb +70 -0
- data/lib/decidim/events/email_event.rb +39 -0
- data/lib/decidim/events/notification_event.rb +32 -0
- data/lib/decidim/exporters.rb +7 -0
- data/lib/decidim/exporters/export_data.rb +14 -0
- data/lib/decidim/feature_manifest.rb +2 -2
- data/lib/decidim/features/namer.rb +1 -1
- data/lib/decidim/followable.rb +13 -0
- data/lib/decidim/form_builder.rb +1 -1
- data/lib/decidim/has_feature.rb +1 -1
- data/lib/decidim/has_settings.rb +19 -15
- data/lib/decidim/manifest_registry.rb +1 -3
- data/lib/decidim/participable.rb +80 -0
- data/lib/decidim/participatory_space_manifest.rb +40 -0
- data/lib/decidim/query_extensions.rb +1 -1
- data/lib/decidim/resource_manifest.rb +1 -1
- data/lib/decidim/settings_manifest.rb +0 -4
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.uk.js +14 -0
- data/vendor/assets/javascripts/morphdom.js +14 -5
- metadata +70 -79
- data/app/assets/images/decidim/process.svg +0 -10
- data/app/constraints/decidim/current_participatory_process.rb +0 -35
- data/app/controllers/concerns/decidim/needs_participatory_process.rb +0 -46
- data/app/controllers/decidim/participatory_process_groups_controller.rb +0 -26
- data/app/controllers/decidim/participatory_process_steps_controller.rb +0 -18
- data/app/controllers/decidim/participatory_process_widgets_controller.rb +0 -19
- data/app/controllers/decidim/participatory_processes_controller.rb +0 -49
- data/app/helpers/decidim/participatory_process_helper.rb +0 -17
- data/app/helpers/decidim/participatory_process_steps_helper.rb +0 -18
- data/app/models/decidim/participatory_process.rb +0 -61
- data/app/models/decidim/participatory_process_group.rb +0 -15
- data/app/models/decidim/participatory_process_step.rb +0 -39
- data/app/presenters/decidim/participatory_process_stats_presenter.rb +0 -50
- data/app/queries/decidim/highlighted_participatory_processes.rb +0 -10
- data/app/queries/decidim/organization_participatory_process_groups.rb +0 -14
- data/app/queries/decidim/organization_participatory_processes.rb +0 -14
- data/app/queries/decidim/organization_prioritized_participatory_processes.rb +0 -18
- data/app/queries/decidim/organization_published_participatory_processes.rb +0 -17
- data/app/queries/decidim/prioritized_participatory_processes.rb +0 -11
- data/app/queries/decidim/promoted_participatory_processes.rb +0 -10
- data/app/queries/decidim/published_participatory_processes.rb +0 -10
- data/app/views/decidim/participatory_process_groups/_participatory_process_group.html.erb +0 -22
- data/app/views/decidim/participatory_process_groups/show.html.erb +0 -11
- data/app/views/decidim/participatory_process_steps/_participatory_process_step.html.erb +0 -16
- data/app/views/decidim/participatory_process_steps/_timeline.html.erb +0 -7
- data/app/views/decidim/participatory_process_steps/index.html.erb +0 -14
- data/app/views/decidim/participatory_process_widgets/show.html.erb +0 -17
- data/app/views/decidim/participatory_processes/_no_processes_yet.html.erb +0 -3
- data/app/views/decidim/participatory_processes/_order_by_processes.html.erb +0 -3
- data/app/views/decidim/participatory_processes/_participatory_process.html.erb +0 -28
- data/app/views/decidim/participatory_processes/_promoted_process.html.erb +0 -32
- data/app/views/decidim/participatory_processes/_statistics.html.erb +0 -10
- data/app/views/decidim/participatory_processes/index.html.erb +0 -17
- data/app/views/decidim/participatory_processes/show.html.erb +0 -85
- data/app/views/layouts/decidim/_process_header.html.erb +0 -65
- data/app/views/layouts/decidim/_process_header_steps.html.erb +0 -27
- data/app/views/layouts/decidim/participatory_process.html.erb +0 -30
- data/config/i18n-tasks.yml +0 -138
- data/db/migrate/20161005130108_add_participatory_processes.rb +0 -19
- data/db/migrate/20161010102356_translate_processes.rb +0 -17
- data/db/migrate/20161011125616_add_hero_image_to_processes.rb +0 -7
- data/db/migrate/20161011141033_add_banner_image_to_processes.rb +0 -7
- data/db/migrate/20161013134732_add_promoted_flag_to_processes.rb +0 -7
- data/db/migrate/20161017085822_add_participatory_process_steps.rb +0 -18
- data/db/migrate/20161019072016_add_active_flag_to_step.rb +0 -13
- data/db/migrate/20161020080756_add_position_to_steps.rb +0 -9
- data/db/migrate/20161025125300_add_published_at_to_processes.rb +0 -7
- data/db/migrate/20161107152228_remove_not_null_on_step_position.rb +0 -7
- data/db/migrate/20161110092735_add_index_for_process_slug_organization.rb +0 -10
- data/db/migrate/20161116115156_create_attachments.rb +0 -18
- data/db/migrate/20170116135237_loosen_step_requirements.rb +0 -8
- data/db/migrate/20170123134023_make_attachments_polymorphic.rb +0 -20
- data/db/migrate/20170125135937_rename_attachable_to_attached_to.rb +0 -13
- data/db/migrate/20170126151123_add_extra_info_to_processes.rb +0 -10
- data/db/migrate/20170206083118_rename_extra_info_on_processes.rb +0 -14
- data/db/migrate/20170220110740_remove_steps_short_description.rb +0 -23
- data/db/migrate/20170221094835_add_scopes_to_processes.rb +0 -8
- data/db/migrate/20170228142440_add_participatory_process_groups.rb +0 -17
- data/db/migrate/20170404132616_change_steps_end_and_start_date_to_date.rb +0 -8
- data/db/migrate/20170725085104_add_show_statistics_to_participatory_processes.rb +0 -7
- data/db/migrate/20170804125402_attachment_description_nullable.rb +0 -7
- data/db/migrate/20170808080905_add_announcement_to_participatory_processes.rb +0 -7
- data/db/migrate/20170809084005_add_scopes_enabled_to_participatory_processes.rb +0 -7
- data/db/seeds/Exampledocument.pdf +0 -0
- data/db/seeds/city.jpeg +0 -0
- data/db/seeds/city2.jpeg +0 -0
- data/lib/decidim/notifiable.rb +0 -22
data/config/locales/it.yml
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
it:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
account:
|
5
|
+
delete_reason: Motivo per il quale vuoi eliminare il tuo account
|
4
6
|
report:
|
5
7
|
details: Ulteriori commenti
|
6
8
|
user:
|
@@ -8,6 +10,7 @@ it:
|
|
8
10
|
name: Il tuo nome
|
9
11
|
password: Nuova password
|
10
12
|
password_confirmation: Conferma la tua nuova password
|
13
|
+
remove_avatar: Rimuovere avatar
|
11
14
|
user_group_document_number: Codice fiscale dell'organizzazione
|
12
15
|
user_group_name: Nome dell'organizzazione
|
13
16
|
user_group_phone: Telefono dell'organizzazione
|
@@ -15,21 +18,41 @@ it:
|
|
15
18
|
attributes:
|
16
19
|
decidim/user:
|
17
20
|
current_password: Password attuale
|
21
|
+
email: E-mail
|
18
22
|
name: Nome Utente
|
23
|
+
password: Password
|
19
24
|
password_confirmation: Conferma password
|
20
25
|
remember_me: Ricordami su questo computer (rimani collegato)
|
21
26
|
user_group_document_number: Codice fiscale dell'organizzazione
|
22
27
|
user_group_name: Nome dell'organizzazione
|
28
|
+
user_group_phone: Telefono dell'organizzazione
|
23
29
|
booleans:
|
30
|
+
'false': 'No'
|
24
31
|
'true': 'Si'
|
32
|
+
carrierwave:
|
33
|
+
errors:
|
34
|
+
image_too_big: L'immagine è troppo grande
|
25
35
|
decidim:
|
26
36
|
account:
|
37
|
+
delete:
|
38
|
+
alert: Questa azione non può essere annullata. Se elimini il tuo account non potrai più accedere.
|
39
|
+
confirm:
|
40
|
+
close: Chiudere finestra
|
41
|
+
ok: Sì, voglio eliminare il mio account
|
42
|
+
question: Sei sicuro di voler eliminare il tuo account?
|
43
|
+
title: Elimina il mio account
|
44
|
+
explanation: Per favore, compila il motivo per cui desideri eliminare il tuo account (facoltativo).
|
45
|
+
destroy:
|
46
|
+
error: Si è verificato un errore durante l'eliminazione del tuo account.
|
47
|
+
success: Il tuo account è stato eliminato correttamente.
|
27
48
|
show:
|
28
49
|
change_password: Cambia password
|
29
50
|
update_account: Aggiorna Account
|
30
51
|
update:
|
31
52
|
error: Si è verificato un errore durante l'aggiornamento del tuo account.
|
32
53
|
success: Il tuo account è stato aggiornato correttamente.
|
54
|
+
success_with_email_confirmation: Il tuo account è stato aggiornato correttamente. Riceverai un'email per confermare il tuo nuovo indirizzo email.
|
55
|
+
anonymous_user: Anonimo
|
33
56
|
application:
|
34
57
|
documents:
|
35
58
|
related_documents: Documenti correlati
|
@@ -43,6 +66,11 @@ it:
|
|
43
66
|
name: Esempio di autorizzazione
|
44
67
|
errors:
|
45
68
|
duplicate_authorization: Esiste già un utente registrato con gli stessi dati.
|
69
|
+
foo_authorization:
|
70
|
+
fields:
|
71
|
+
bar: Bar
|
72
|
+
foo: foo
|
73
|
+
name: Autorizzazione Foo
|
46
74
|
authorizations:
|
47
75
|
create:
|
48
76
|
error: Si è verificato un errore nella creazione dell'autorizzazione.
|
@@ -62,30 +90,59 @@ it:
|
|
62
90
|
unauthorized: Non sei autorizzato a eseguire questa azione
|
63
91
|
devise:
|
64
92
|
omniauth_registrations:
|
93
|
+
create:
|
94
|
+
email_already_exists: Questo indirizzo email è già utilizzato per un altro account
|
65
95
|
new:
|
66
96
|
complete_profile: Completa il profilo
|
67
97
|
sign_up: Per favore, completa il tuo profilo
|
68
98
|
subtitle: Per favore, compila il seguente modulo per completare la registrazione
|
99
|
+
username_help: Nome pubblico che appare suoi tuoi post. Con l'obiettivo di garantire l'anonimato, può essere qualsiasi nome.
|
69
100
|
registrations:
|
70
101
|
new:
|
71
102
|
already_have_an_account?: Hai già un account?
|
72
103
|
newsletter_notifications: Ricevi informazioni sulle attività rilevanti
|
104
|
+
sign_in: Accedi
|
73
105
|
sign_up: Registrazione
|
74
106
|
sign_up_as:
|
75
107
|
legend: Registrati come
|
76
108
|
user: Individuo
|
109
|
+
user_group: Organizzazione/Gruppo di persone
|
77
110
|
subtitle: Registrati per partecipare alle discussioni e sostenere le proposte.
|
78
111
|
terms: Termini e condizioni di utilizzo del servizio
|
79
112
|
tos_agreement: Effettuando la registrazione automaticamente accetti le seguenti condizioni %{link}.
|
113
|
+
username_help: Nome "pubblico" che comparirà per i tuoi post. Usa un nome di fantasia se vuoi garantirti un certo grado di anonimato.
|
80
114
|
sessions:
|
81
115
|
new:
|
82
116
|
are_you_new?: Sei nuovo nella piattaforma?
|
83
117
|
register: Crea un account
|
118
|
+
shared:
|
119
|
+
omniauth_buttons:
|
120
|
+
or: oppure
|
121
|
+
errors:
|
122
|
+
internal_server_error:
|
123
|
+
title: Si è verificato un problema da parte del server
|
124
|
+
try_later: Si prega di riprovare più tardi.
|
125
|
+
not_found:
|
126
|
+
back_home: Torna alla home page
|
127
|
+
content_doesnt_exist: Questo indirizzo non è corretto oppure è stato rimosso.
|
128
|
+
title: La pagina che stai cercando non è stata trovata
|
129
|
+
events:
|
130
|
+
email_event:
|
131
|
+
email_greeting: Ciao %{user_name},
|
132
|
+
email_intro: 'C''è stato un aggiornamento alla "%{resource_title}". Si può vedere da questa pagina:'
|
133
|
+
email_outro: Hai ricevuto questa notifica perché si segue "%{resource_title}". Puoi smettere di seguire e dal link precedente.
|
134
|
+
email_subject: Un aggiornamento per %{resource_title}
|
135
|
+
notification_event:
|
136
|
+
notification_title: Si è verificato un evento di <a href="%{resource_path}">%{resource_title}</a>.
|
84
137
|
export_mailer:
|
85
138
|
export:
|
86
139
|
ready: In allegato una versione zippata (Zip) dei dati esportati.
|
140
|
+
subject: Ecco i dati che hai chiesto di esportare per "%{name}"
|
87
141
|
features:
|
88
142
|
dummy:
|
143
|
+
actions:
|
144
|
+
bar: Bar
|
145
|
+
foo: foo
|
89
146
|
name: Funzionalità di prova
|
90
147
|
settings:
|
91
148
|
global:
|
@@ -102,58 +159,55 @@ it:
|
|
102
159
|
meeting: Incontri
|
103
160
|
project: Progetti
|
104
161
|
proposal: Proposte
|
162
|
+
result: Votazioni
|
163
|
+
follows:
|
164
|
+
create:
|
165
|
+
button: Seguire
|
166
|
+
error: C'è stato un errore seguendo questa risorsa.
|
167
|
+
destroy:
|
168
|
+
button: Smettere di seguire
|
169
|
+
error: C'è stato un errore smettere questa risorsa.
|
105
170
|
forms:
|
171
|
+
current_file: File attuale
|
172
|
+
current_image: Immagine attuale
|
173
|
+
default_image: Immagine predefinita
|
106
174
|
errors:
|
107
175
|
error: Si è verificato un errore in questo campo.
|
176
|
+
remove_this_file: Rimuovere questo file
|
177
|
+
managed_users:
|
178
|
+
expired_session: La sessione di impersonazione corrente è scaduta.
|
108
179
|
menu:
|
180
|
+
home: Home
|
109
181
|
more_information: Ulteriori informazioni
|
110
|
-
processes: Processi
|
111
182
|
newsletter_mailer:
|
112
183
|
newsletter:
|
113
184
|
note: Hai ricevuto questa email perché ti sei iscritto alla newsletter su %{organization_name}. Puoi modificare le impostazioni sulla tua <a href="%{link}">pagina di notifiche</a>.
|
114
185
|
notifications_settings:
|
115
186
|
show:
|
116
|
-
|
187
|
+
email_on_notification: Voglio ricevere un'e-mail ogni volta che ricevo una notifica.
|
117
188
|
newsletter_notifications: Desidero ricevere informazioni sulle attività rilevanti.
|
118
|
-
replies_notifications: Desidero ricevere un'email di notifica quando qualcuno risponde i miei commenti.
|
119
189
|
update_notifications_settings: Salva le modifiche
|
120
190
|
update:
|
121
191
|
error: Si è verificato un errore durante l'aggiornamento delle impostazioni di notifica.
|
192
|
+
success: OK, le impostazioni per le notifiche sono state modificate.
|
122
193
|
own_user_groups:
|
123
194
|
index:
|
195
|
+
pending: In sospeso
|
196
|
+
rejected: Respinta
|
124
197
|
verified: Verificato
|
125
198
|
pages:
|
126
199
|
index:
|
127
200
|
title: Informazione
|
128
|
-
participatory_process_groups:
|
129
|
-
show:
|
130
|
-
group_participatory_processes: Processi per %{group}
|
131
|
-
title: Titolo
|
132
|
-
participatory_process_steps:
|
133
|
-
index:
|
134
|
-
process_steps: Fasi del processo
|
135
|
-
title: Fasi del processo partecipativo
|
136
|
-
participatory_processes:
|
137
|
-
index:
|
138
|
-
title: Processi partecipativi
|
139
|
-
participatory_process_groups:
|
140
|
-
none: Nessuno
|
141
|
-
scopes:
|
142
|
-
global: Ambito globale
|
143
|
-
show:
|
144
|
-
developer_group: Gruppo promotore
|
145
|
-
end_date: Data di fine
|
146
|
-
local_area: Municipi
|
147
|
-
participatory_scope: Ambito partecipativo
|
148
|
-
participatory_structure: Struttura partecipativa
|
149
|
-
scope: Ambito
|
150
201
|
reported_mailer:
|
151
202
|
hide:
|
152
203
|
hello: Ciao %{name},
|
204
|
+
manage_moderations: Gestire le moderazioni
|
153
205
|
report_html: <p>Il seguente <a href="%{url}">contenuto</a> è stato nascosto automaticamente.</p>
|
154
206
|
subject: Un contenuto è stato cancellato automaticamente
|
155
207
|
report:
|
156
208
|
hello: Ciao %{name},
|
209
|
+
manage_moderations: Gestire moderazioni
|
210
|
+
report_html: <p>Il seguente <a href="%{url}">contenuto</a> è stato segnalato.</p>
|
157
211
|
subject: Un contenuto è stato denunciato
|
158
212
|
reports:
|
159
213
|
create:
|
@@ -173,6 +227,7 @@ it:
|
|
173
227
|
unauthorized:
|
174
228
|
explanation: Non puoi eseguire questa azione poiché alcuni dei tuoi dati di autorizzazione non corrispondono.
|
175
229
|
invalid: "%{field} non è valido."
|
230
|
+
ok: Ok
|
176
231
|
title: Non autorizzato
|
177
232
|
embed_modal:
|
178
233
|
close_window: Chiudi la finestra
|
@@ -184,10 +239,16 @@ it:
|
|
184
239
|
description: Questo contenuto è inappropriato?
|
185
240
|
does_not_belong: Contiene attività illegali, istigazione al suicidio, informazioni personali o riservate, o altre cose che tu credi che non sono appropriato per %{organization_name}.
|
186
241
|
offensive: Contiene contenuti razzisti, diffamatori, sessisti, insulti o attacchi personali, minacce di morte, istigazioni al suicidio o altre forme di odio verbale.
|
242
|
+
report: rapporto
|
187
243
|
spam: Contiene clickbait, pubblicità, truffe o script bots.
|
188
244
|
title: Segnala un problema
|
189
245
|
login_modal:
|
246
|
+
please_sign_in: Per cortesia effettua l'accesso.
|
190
247
|
sign_up: Registrazione
|
248
|
+
reference:
|
249
|
+
reference: 'Riferimento: %{reference}'
|
250
|
+
results_per_page:
|
251
|
+
label: 'Risultati per pagina:'
|
191
252
|
share_modal:
|
192
253
|
close_window: Chiudi questa finestra
|
193
254
|
share: Condividi
|
@@ -206,6 +267,9 @@ it:
|
|
206
267
|
Se non desideri accettare l'invito, ignora questa email.<br /> Il tuo account non verrà creato finché non accedi al link precedente e imposti la tua password.
|
207
268
|
invited_you_as_admin: "%{invited_by} ti ha invitato come amministratore di %{application}, puoi accettare l'invito tramite il seguente link."
|
208
269
|
someone_invited_you: Sei stato invitato a %{application}, puoi accettare l'invito tramite il seguente link.
|
270
|
+
you_are_now_admin: Ora sei un amministratore
|
271
|
+
invite_admin:
|
272
|
+
subject: Sei stato invitato per la gestione della sezione relativa all'organizzazione %{organization}
|
209
273
|
invite_collaborator:
|
210
274
|
subject: Sei stato invitato a collaborare nella %{organization}
|
211
275
|
organization_admin_invitation_instructions:
|
@@ -217,6 +281,7 @@ it:
|
|
217
281
|
errors:
|
218
282
|
messages:
|
219
283
|
content_type_whitelist_error: Il tipo di file non è valido.
|
284
|
+
cycle_detected: Il genitore di un ambito non può essere uno dei suoi discendenti
|
220
285
|
file_size_is_less_than_or_equal_to: la dimensione del file deve essere inferiore o uguale a %{count}
|
221
286
|
invalid_manifest: Manifesto non valido
|
222
287
|
invalid_participatory_process: Processo partecipativo non valido
|
@@ -226,6 +291,8 @@ it:
|
|
226
291
|
too_many_marks: Sta utilizzando troppi segni di punteggiatura
|
227
292
|
too_much_caps: Sta utilizzando troppe maiuscole
|
228
293
|
too_short: Il contenuto è troppo breve
|
294
|
+
forms:
|
295
|
+
required: Richiesto
|
229
296
|
invisible_captcha:
|
230
297
|
sentence_for_humans: Se sei una persona e non un computer, ignora questo campo
|
231
298
|
timestamp_error_message: Mi dispiace, troppo veloce! Per favore, invia di nuovo.
|
@@ -242,41 +309,23 @@ it:
|
|
242
309
|
navigation: Navigazione
|
243
310
|
sign_in: Accedi
|
244
311
|
sign_up: Registrati
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
index:
|
254
|
-
promoted_processes: Processi evidenziati
|
255
|
-
no_processes_yet:
|
256
|
-
no_processes_yet: Non ci sono ancora processi partecipativi!
|
257
|
-
order_by_processes:
|
258
|
-
processes:
|
259
|
-
one: "%{count} processo"
|
260
|
-
other: "%{count} processi"
|
261
|
-
participatory_process:
|
262
|
-
active_step: 'Fase attuale:'
|
263
|
-
take_part: Partecipa
|
264
|
-
promoted_process:
|
265
|
-
active_step: 'Fase attuale:'
|
266
|
-
more_info: Più informazioni
|
267
|
-
take_part: Partecipa
|
268
|
-
process_header:
|
269
|
-
process_menu_item: Il processo
|
270
|
-
unfold: Espandi
|
271
|
-
process_header_steps:
|
272
|
-
step: Fase %{current} di %{total}
|
273
|
-
view_steps: Visualizza le fasi
|
312
|
+
impersonation_warning:
|
313
|
+
close_session: Chiudi sessione
|
314
|
+
description_html: Stai impersonando l'utente <b>%{user_name}</b>.
|
315
|
+
expire_time_html: La sessione scadrà in <b><span class="minutes">%{minutes}</span> minutes</b>.
|
316
|
+
notifications_dashboard:
|
317
|
+
mark_all_as_read: Contrassegnare tutti come letti
|
318
|
+
no_notifications: No le notifiche.
|
319
|
+
title: Notifiche
|
274
320
|
user_menu:
|
275
321
|
admin_dashboard: Cruscotto per gli amministratori (Admin dashboard)
|
322
|
+
notifications: Notifiche
|
276
323
|
profile: Il mio account
|
277
324
|
sign_out: Esci
|
278
325
|
user_profile:
|
326
|
+
account: Account
|
279
327
|
authorizations: Authorizzazioni
|
328
|
+
delete_my_account: Cancella il mio account
|
280
329
|
notifications_settings: Impostazioni delle notifiche
|
281
330
|
title: Impostazioni utente
|
282
331
|
user_groups: Organizzazioni
|
@@ -307,19 +356,45 @@ it:
|
|
307
356
|
active_step: Fase attiva
|
308
357
|
see_all_processes: Vedi tutti i processi
|
309
358
|
statistics:
|
359
|
+
answers_count: risposte
|
360
|
+
comments_count: Commenti
|
310
361
|
headline: Stato attuale dell'organizzazione %{organization}
|
311
362
|
meetings_count: Meeting
|
363
|
+
orders_count: Ordini
|
364
|
+
pages_count: Pagine
|
312
365
|
processes_count: Processi
|
366
|
+
projects_count: Progetti
|
313
367
|
proposals_count: Proposte
|
314
368
|
results_count: Resultati
|
369
|
+
surveys_count: indagini
|
370
|
+
users_count: Partecipanti
|
315
371
|
votes_count: Voti
|
316
372
|
sub_hero:
|
317
373
|
register: Registrati
|
318
374
|
social_share_button:
|
375
|
+
delicious: Delicious
|
376
|
+
douban: Douban
|
377
|
+
email: Email
|
378
|
+
facebook: Facebook
|
379
|
+
google_bookmark: Google Bookmark
|
380
|
+
google_plus: Google+
|
381
|
+
hacker_news: Hacker News
|
382
|
+
linkedin: Linkedin
|
383
|
+
pinterest: Pinterest
|
384
|
+
qq: Qzone
|
385
|
+
reddit: Reddit
|
386
|
+
share_to: Condividi su %{name}
|
387
|
+
tumblr: Tumblr
|
388
|
+
twitter: Twitter
|
389
|
+
vkontakte: Vkontakte
|
390
|
+
wechat: WeChat
|
319
391
|
wechat_footer: Apri il tuo WeChat, clicca il pulsante "Discover", infine clicca sul menu "Scan QR Code".
|
392
|
+
weibo: Sina Weibo
|
393
|
+
xing: Xing
|
320
394
|
views:
|
321
395
|
pagination:
|
322
396
|
first: "« Primo"
|
323
397
|
last: Ultimo »
|
324
398
|
next: Successivo ›
|
325
399
|
previous: "‹ Precedente"
|
400
|
+
truncate: "…"
|
data/config/locales/nl.yml
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
nl:
|
2
2
|
activemodel:
|
3
3
|
attributes:
|
4
|
+
account:
|
5
|
+
delete_reason: Reden om je account te verwijderen
|
4
6
|
report:
|
5
7
|
details: Aanvullende opmerkingen
|
6
8
|
user:
|
@@ -8,6 +10,7 @@ nl:
|
|
8
10
|
name: Uw naam
|
9
11
|
password: Nieuw wachtwoord
|
10
12
|
password_confirmation: Bevestig uw nieuwe wachtwoord
|
13
|
+
remove_avatar: Verwijder avatar
|
11
14
|
user_group_document_number: Organisatie documentnummer
|
12
15
|
user_group_name: Naam van de organisatie
|
13
16
|
user_group_phone: Telefoon organisatie
|
@@ -31,6 +34,17 @@ nl:
|
|
31
34
|
image_too_big: De afbeelding is te groot
|
32
35
|
decidim:
|
33
36
|
account:
|
37
|
+
delete:
|
38
|
+
alert: Deze actie kan niet ongedaan gemaakt worden. Als u uw account verwijdert, kunt u zich niet aanmelden.
|
39
|
+
confirm:
|
40
|
+
close: Sluit dit scherm
|
41
|
+
ok: Ja, ik wil mijn account verwijderen
|
42
|
+
question: Weet u zeker dat u uw account wilt verwijderen?
|
43
|
+
title: Verwijder mijn account
|
44
|
+
explanation: Vul alstublieft de reden in waarom u uw account wilt verwijderen (optioneel).
|
45
|
+
destroy:
|
46
|
+
error: Er is een fout opgetreden bij het verwijderen van uw account.
|
47
|
+
success: Uw account is succesvol verwijderd.
|
34
48
|
show:
|
35
49
|
change_password: Wachtwoord wijzigen
|
36
50
|
update_account: Account bijwerken
|
@@ -104,6 +118,26 @@ nl:
|
|
104
118
|
shared:
|
105
119
|
omniauth_buttons:
|
106
120
|
or: Of
|
121
|
+
errors:
|
122
|
+
internal_server_error:
|
123
|
+
title: Er was een probleem met de server
|
124
|
+
try_later: Probeer het later opnieuw.
|
125
|
+
not_found:
|
126
|
+
back_home: Terug naar huis
|
127
|
+
content_doesnt_exist: Dit adres is onjuist of is verwijderd.
|
128
|
+
title: De pagina die u zoekt is niet gevonden
|
129
|
+
events:
|
130
|
+
email_event:
|
131
|
+
email_greeting: Hallo %{user_name},
|
132
|
+
email_intro: 'Er is een update aan "%{resource_title}". Je ziet het vanaf deze pagina:'
|
133
|
+
email_outro: U ontvangt dit bericht omdat u "%{resource_title}" volgen. Je kunt het unfollow uit de vorige koppeling.
|
134
|
+
email_subject: Een update aan %{resource_title}
|
135
|
+
notification_event:
|
136
|
+
notification_title: Een gebeurtenis heeft plaatsgevonden om te <a href="%{resource_path}">%{resource_title}</a>.
|
137
|
+
export_mailer:
|
138
|
+
export:
|
139
|
+
ready: Hierbij vindt u een bijgevoegde versie van uw export.
|
140
|
+
subject: Uw export "%{name}" is klaar
|
107
141
|
features:
|
108
142
|
dummy:
|
109
143
|
actions:
|
@@ -126,60 +160,54 @@ nl:
|
|
126
160
|
project: Projecten
|
127
161
|
proposal: Voorstellen
|
128
162
|
result: Resultaten
|
163
|
+
follows:
|
164
|
+
create:
|
165
|
+
button: Ga als volgt te
|
166
|
+
error: Er is een fout opgetreden na deze bron.
|
167
|
+
destroy:
|
168
|
+
button: Stop volgende
|
169
|
+
error: Er is een fout opgetreden unfollowing van deze resource.
|
129
170
|
forms:
|
171
|
+
current_file: Huidig bestand
|
172
|
+
current_image: Huidig beeld
|
173
|
+
default_image: Standaard afbeelding
|
130
174
|
errors:
|
131
175
|
error: Er is een fout in dit veld.
|
176
|
+
remove_this_file: Verwijder dit bestand
|
177
|
+
managed_users:
|
178
|
+
expired_session: De huidige impersonatie sessie is verlopen.
|
132
179
|
menu:
|
133
180
|
home: Home
|
134
181
|
more_information: Meer informatie
|
135
|
-
processes: Processen
|
136
182
|
newsletter_mailer:
|
137
183
|
newsletter:
|
138
184
|
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
185
|
notifications_settings:
|
140
186
|
show:
|
141
|
-
|
187
|
+
email_on_notification: Ik wil ontvangen een e-mail telkens als ik een melding ontvangt.
|
142
188
|
newsletter_notifications: Ik wil informatie ontvangen over relevante activiteiten
|
143
|
-
replies_notifications: Ik wil e-mail ontvangen wanneer iemand reageert op mijn reacties.
|
144
189
|
update_notifications_settings: Wijzigingen opslaan
|
145
190
|
update:
|
146
191
|
error: Er is een fout opgetreden bij het bijwerken van uw notificatie instellingen.
|
147
192
|
success: Uw notificatie instellingen zijn bijgewerkt.
|
148
193
|
own_user_groups:
|
149
194
|
index:
|
195
|
+
pending: In afwachting
|
196
|
+
rejected: Verworpen
|
150
197
|
verified: Geverifieerd
|
151
198
|
pages:
|
152
199
|
index:
|
153
200
|
title: Meer informatie
|
154
|
-
participatory_process_groups:
|
155
|
-
show:
|
156
|
-
group_participatory_processes: Processen voor %{group}
|
157
|
-
title: Titel
|
158
|
-
participatory_process_steps:
|
159
|
-
index:
|
160
|
-
process_steps: Processtappen
|
161
|
-
title: Participatieve processtappen
|
162
|
-
participatory_processes:
|
163
|
-
index:
|
164
|
-
title: Participatieve processen
|
165
|
-
participatory_process_groups:
|
166
|
-
none: Geen
|
167
|
-
scopes:
|
168
|
-
global: Globaal bereik
|
169
|
-
show:
|
170
|
-
developer_group: Ontwikkelaarsgroep
|
171
|
-
end_date: Einddatum
|
172
|
-
local_area: Lokale buurt
|
173
|
-
participatory_scope: Participatief toepassingsgebied
|
174
|
-
participatory_structure: Participatieve structuur
|
175
|
-
scope: Reikwijdte
|
176
|
-
target: Doel
|
177
201
|
reported_mailer:
|
178
202
|
hide:
|
179
203
|
hello: Hallo %{name},
|
204
|
+
manage_moderations: Beheer moderaties
|
205
|
+
report_html: <p>De volgende <a href="%{url}">content</a> is automatisch verborgen.</p>
|
180
206
|
subject: Een bron is automatisch verborgen
|
181
207
|
report:
|
182
208
|
hello: Hallo %{name},
|
209
|
+
manage_moderations: Beheer moderaties
|
210
|
+
report_html: <p>De volgende <a href="%{url}">content</a> is aangemeld.</p>
|
183
211
|
subject: Een bron is gemeld
|
184
212
|
reports:
|
185
213
|
create:
|
@@ -201,6 +229,10 @@ nl:
|
|
201
229
|
invalid: "%{field} is niet geldig."
|
202
230
|
ok: Ok
|
203
231
|
title: Niet geautoriseerd
|
232
|
+
embed_modal:
|
233
|
+
close_window: Sluit dit scherm
|
234
|
+
embed: Plak deze code alstublieft in uw pagina
|
235
|
+
embed_link: insluiten
|
204
236
|
flag_modal:
|
205
237
|
already_reported: Deze inhoud is al gemeld en zal worden beoordeeld door een beheerder.
|
206
238
|
close: Sluit
|
@@ -215,6 +247,8 @@ nl:
|
|
215
247
|
sign_up: Registreren
|
216
248
|
reference:
|
217
249
|
reference: 'Referentie: %{reference}'
|
250
|
+
results_per_page:
|
251
|
+
label: 'Resultaten per pagina:'
|
218
252
|
share_modal:
|
219
253
|
close_window: Sluit dit scherm
|
220
254
|
share: Deel
|
@@ -233,6 +267,7 @@ nl:
|
|
233
267
|
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.
|
234
268
|
invited_you_as_admin: "%{invited_by} heeft u uitgenodigd als beheerder van %{application}, u kunt deze uitnodiging accepteren via onderstaande link."
|
235
269
|
someone_invited_you: Iemand heeft u uitgenodigd bij %{application}, u kunt deze uitnodiging accepteren via onderstaande link.
|
270
|
+
you_are_now_admin: Je bent nu een admin
|
236
271
|
invite_admin:
|
237
272
|
subject: U bent uitgenodigd om %{organization} te beheren
|
238
273
|
invite_collaborator:
|
@@ -246,6 +281,7 @@ nl:
|
|
246
281
|
errors:
|
247
282
|
messages:
|
248
283
|
content_type_whitelist_error: Het bestandstype is niet geldig
|
284
|
+
cycle_detected: De ouder van een scope kan niet een van zijn afstammelingen zijn
|
249
285
|
file_size_is_less_than_or_equal_to: bestandsgrootte moet kleiner zijn dan %{count}
|
250
286
|
invalid_manifest: Ongeldig manifest
|
251
287
|
invalid_participatory_process: Ongeldige participatief proces
|
@@ -255,6 +291,8 @@ nl:
|
|
255
291
|
too_many_marks: Gebruikt te veel markeringen
|
256
292
|
too_much_caps: Gebruikt te veel hoofdletters
|
257
293
|
too_short: Is te kort
|
294
|
+
forms:
|
295
|
+
required: nodig
|
258
296
|
invisible_captcha:
|
259
297
|
sentence_for_humans: Als u een mens bent negeert u dit veld
|
260
298
|
timestamp_error_message: Sorry, dat was te snel! Gelieve opnieuw in te dienen.
|
@@ -264,46 +302,35 @@ nl:
|
|
264
302
|
description_html: Deze website maakt gebruik van cookies. Door gebruik te blijven maken van de site gaat u hiermee akkoord. Meer informatie via %{link}.
|
265
303
|
link_label: hier
|
266
304
|
ok: Ik ga akkoord
|
305
|
+
footer:
|
306
|
+
made_with_open_source: W
|
267
307
|
header:
|
268
308
|
close_menu: Menu sluiten
|
269
309
|
navigation: Navigatie
|
270
310
|
sign_in: Aanmelden
|
271
311
|
sign_up: Registreren
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
order_by_processes:
|
281
|
-
processes:
|
282
|
-
one: "%{count} proces"
|
283
|
-
other: "%{count} processen"
|
284
|
-
participatory_process:
|
285
|
-
active_step: 'Huidige stap:'
|
286
|
-
take_part: Deelnemen
|
287
|
-
promoted_process:
|
288
|
-
active_step: 'Huidige stap:'
|
289
|
-
more_info: Meer informatie
|
290
|
-
take_part: Deelnemen
|
291
|
-
process_header:
|
292
|
-
process_menu_item: Het proces
|
293
|
-
unfold: Ontvouwen
|
294
|
-
process_header_steps:
|
295
|
-
step: Stap %{current} van %{total}
|
296
|
-
view_steps: Bekijk stappen
|
312
|
+
impersonation_warning:
|
313
|
+
close_session: Sluit sessie
|
314
|
+
description_html: U veronderstelt de gebruiker <b>%{user_name}</b>.
|
315
|
+
expire_time_html: Uw sessie vervalt in <b><span class="minutes">%{minutes}</span> minuten</b>.
|
316
|
+
notifications_dashboard:
|
317
|
+
mark_all_as_read: Alles als gelezen markeren
|
318
|
+
no_notifications: Nog geen meldingen.
|
319
|
+
title: Meldingen
|
297
320
|
user_menu:
|
298
321
|
admin_dashboard: Beheer dashboard
|
322
|
+
notifications: Meldingen
|
299
323
|
profile: Mijn account
|
300
324
|
sign_out: Afmelden
|
301
325
|
user_profile:
|
302
326
|
account: Account
|
303
327
|
authorizations: Bevoegdheden
|
328
|
+
delete_my_account: Verwijder mijn account
|
304
329
|
notifications_settings: Notificatie instellingen
|
305
330
|
title: Gebruikersinstellingen
|
306
331
|
user_groups: Organisaties
|
332
|
+
widget:
|
333
|
+
see_more: B
|
307
334
|
locale:
|
308
335
|
name: Nederlands
|
309
336
|
pages:
|
@@ -329,7 +356,19 @@ nl:
|
|
329
356
|
active_step: Actieve stap
|
330
357
|
see_all_processes: Toon alle processen
|
331
358
|
statistics:
|
359
|
+
answers_count: antwoorden
|
360
|
+
comments_count: Reacties
|
332
361
|
headline: Huidige stand van %{organization}
|
362
|
+
meetings_count: Vergaderingen
|
363
|
+
orders_count: bestellingen
|
364
|
+
pages_count: Pages
|
365
|
+
processes_count: Processen
|
366
|
+
projects_count: Projecten
|
367
|
+
proposals_count: Voorstellen
|
368
|
+
results_count: Resultaten
|
369
|
+
surveys_count: onderzoeken
|
370
|
+
users_count: Deelnemers
|
371
|
+
votes_count: Stemmen
|
333
372
|
sub_hero:
|
334
373
|
register: Registeren
|
335
374
|
social_share_button:
|