decidim-admin 0.4.4 → 0.5.0
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/app/assets/javascripts/decidim/admin/application.js.es6 +3 -0
- data/app/assets/javascripts/decidim/admin/participatory_processes.js.es6 +12 -0
- data/app/assets/javascripts/decidim/admin/scopes.js.es6 +20 -0
- data/app/assets/javascripts/decidim/admin/select2.js.es6 +8 -0
- data/app/assets/stylesheets/decidim/admin/_decidim.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/extra/_categories.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_login.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_sort.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/modules/_callouts.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +47 -0
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_typography.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/plugins/_select2.scss +27 -0
- data/app/assets/stylesheets/decidim/admin/utils/_toggle-expand.scss +1 -1
- data/app/commands/decidim/admin/close_session_managed_user.rb +44 -0
- data/app/commands/decidim/admin/create_feature.rb +2 -1
- data/app/commands/decidim/admin/create_managed_user.rb +61 -0
- data/app/commands/decidim/admin/create_scope.rb +7 -2
- data/app/commands/decidim/admin/create_scope_type.rb +40 -0
- data/app/commands/decidim/admin/impersonate_managed_user.rb +61 -0
- data/app/commands/decidim/admin/promote_managed_user.rb +56 -0
- data/app/commands/decidim/admin/update_participatory_process.rb +3 -1
- data/app/commands/decidim/admin/update_scope.rb +4 -1
- data/app/commands/decidim/admin/update_scope_type.rb +45 -0
- data/app/controllers/decidim/admin/application_controller.rb +2 -1
- data/app/controllers/decidim/admin/categories_controller.rb +3 -3
- data/app/controllers/decidim/admin/exports_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/impersonations_controller.rb +78 -0
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +43 -0
- data/app/controllers/decidim/admin/managed_users_controller.rb +69 -0
- data/app/controllers/decidim/admin/moderations_controller.rb +4 -4
- data/app/controllers/decidim/admin/newsletters_controller.rb +1 -1
- data/app/controllers/decidim/admin/participatory_processes_controller.rb +0 -5
- data/app/controllers/decidim/admin/scope_types_controller.rb +79 -0
- data/app/controllers/decidim/admin/scopes_controller.rb +22 -7
- data/app/controllers/decidim/admin/user_groups_controller.rb +1 -1
- data/app/controllers/decidim/admin/users_controller.rb +1 -2
- data/app/forms/decidim/admin/impersonate_managed_user_form.rb +20 -0
- data/app/forms/decidim/admin/managed_user_form.rb +35 -0
- data/app/forms/decidim/admin/managed_user_promotion_form.rb +13 -0
- data/app/forms/decidim/admin/participatory_process_form.rb +2 -0
- data/app/forms/decidim/admin/scope_form.rb +17 -6
- data/app/forms/decidim/admin/scope_type_form.rb +21 -0
- data/app/helpers/decidim/admin/scopes_helper.rb +46 -0
- data/app/helpers/decidim/admin/settings_helper.rb +12 -1
- data/app/jobs/decidim/admin/expire_impersonation_job.rb +16 -0
- data/app/models/decidim/admin/abilities/admin_ability.rb +17 -0
- data/app/models/decidim/admin/abilities/user_manager_ability.rb +30 -0
- data/app/views/decidim/admin/categories/_form.html.erb +1 -1
- data/app/views/decidim/admin/categories/edit.html.erb +1 -1
- data/app/views/decidim/admin/categories/index.html.erb +7 -7
- data/app/views/decidim/admin/categories/new.html.erb +1 -1
- data/app/views/decidim/admin/features/_form.html.erb +6 -3
- data/app/views/decidim/admin/features/_settings_fields.html.erb +2 -1
- data/app/views/decidim/admin/managed_users/_form.html.erb +12 -0
- data/app/views/decidim/admin/managed_users/impersonations/_form.html.erb +10 -0
- data/app/views/decidim/admin/managed_users/impersonations/index.html.erb +34 -0
- data/app/views/decidim/admin/managed_users/impersonations/new.html.erb +15 -0
- data/app/views/decidim/admin/managed_users/index.html.erb +44 -0
- data/app/views/decidim/admin/managed_users/new.html.erb +47 -0
- data/app/views/decidim/admin/managed_users/promotions/_form.html.erb +3 -0
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +21 -0
- data/app/views/decidim/admin/moderations/index.html.erb +4 -4
- data/app/views/decidim/admin/participatory_process_copies/_form.html.erb +1 -1
- data/app/views/decidim/admin/participatory_process_user_roles/edit.html.erb +1 -1
- data/app/views/decidim/admin/participatory_processes/_form.html.erb +13 -8
- data/app/views/decidim/admin/participatory_processes/index.html.erb +1 -1
- data/app/views/decidim/admin/scope_types/_form.html.erb +7 -0
- data/app/views/decidim/admin/scope_types/edit.html.erb +13 -0
- data/app/views/decidim/admin/scope_types/index.html.erb +40 -0
- data/app/views/decidim/admin/scope_types/new.html.erb +13 -0
- data/app/views/decidim/admin/scopes/_form.html.erb +12 -2
- data/app/views/decidim/admin/scopes/index.html.erb +19 -7
- data/app/views/decidim/admin/scopes/new.html.erb +1 -1
- data/app/views/decidim/admin/users/_form.html.erb +4 -0
- data/app/views/decidim/admin/users/index.html.erb +2 -0
- data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
- data/app/views/layouts/decidim/admin/pages.html.erb +1 -1
- data/app/views/layouts/decidim/admin/participatory_process.html.erb +4 -4
- data/app/views/layouts/decidim/admin/participatory_process_groups.html.erb +1 -1
- data/app/views/layouts/decidim/admin/settings.html.erb +4 -1
- data/app/views/layouts/decidim/admin/users.html.erb +8 -3
- data/config/i18n-tasks.yml +2 -1
- data/config/locales/ca.yml +80 -3
- data/config/locales/en.yml +82 -2
- data/config/locales/es.yml +80 -3
- data/config/locales/eu.yml +44 -7
- data/config/locales/fi.yml +0 -7
- data/config/locales/fr.yml +21 -6
- data/config/locales/it.yml +0 -10
- data/config/locales/nl.yml +1 -1
- data/config/locales/pl.yml +7 -0
- data/config/routes.rb +24 -11
- data/lib/decidim/admin/engine.rb +6 -3
- data/lib/decidim/admin/test/manage_attachments_examples.rb +77 -79
- metadata +56 -9
- data/app/views/decidim/admin/participatory_processes/show.html.erb +0 -54
data/config/locales/es.yml
CHANGED
|
@@ -69,8 +69,14 @@ es:
|
|
|
69
69
|
name: Nombre
|
|
70
70
|
role: Rol
|
|
71
71
|
scope:
|
|
72
|
+
code: Código
|
|
72
73
|
name: Nombre
|
|
73
74
|
organization: Organización
|
|
75
|
+
scope_type: Tipo de ámbito
|
|
76
|
+
scope_type:
|
|
77
|
+
name: Nombre
|
|
78
|
+
organization: Organización
|
|
79
|
+
plural: Plural
|
|
74
80
|
static_page:
|
|
75
81
|
content: Contenido
|
|
76
82
|
organization: Organización
|
|
@@ -210,9 +216,43 @@ es:
|
|
|
210
216
|
update:
|
|
211
217
|
error: Se ha producido un error al actualizar esta funcionalidad.
|
|
212
218
|
success: La funcionalidad se ha actualizado correctamente.
|
|
219
|
+
managed_users:
|
|
220
|
+
close_session:
|
|
221
|
+
error: Se ha producido un error al cerrar la sesión de suplantación actual.
|
|
222
|
+
success: Se ha finalizado con éxito la sesión de suplantación actual.
|
|
223
|
+
create:
|
|
224
|
+
error: Se ha producido un error al crear el usuario gestionado.
|
|
225
|
+
success: El usuario gestionado se ha creado correctamente.
|
|
226
|
+
form:
|
|
227
|
+
name: Nombre
|
|
228
|
+
impersonate:
|
|
229
|
+
error: Se ha producido un error al representar al usuario gestionado.
|
|
230
|
+
impersonations:
|
|
231
|
+
new:
|
|
232
|
+
impersonate: Suplantar
|
|
233
|
+
new_managed_user_impersonation: Nueva suplantación de usuario gesionado
|
|
234
|
+
index:
|
|
235
|
+
impersonate: Suplantar
|
|
236
|
+
needs_authoriation_warning: Necesita al menos una autorización habilitada para esta organización.
|
|
237
|
+
promote: Promocionar
|
|
238
|
+
view_logs: Ver los registros
|
|
239
|
+
new:
|
|
240
|
+
create: Crear
|
|
241
|
+
new_managed_user: Nuevo usuario gestionado
|
|
242
|
+
select_authorization_method: Seleccione un método de autorización
|
|
243
|
+
step: Fase %{current} de %{total}
|
|
244
|
+
promotion:
|
|
245
|
+
error: Se ha producido un error al promocionar el usuario gestionado.
|
|
246
|
+
success: El usuario gestionado se ha promocionado correctamente.
|
|
247
|
+
promotions:
|
|
248
|
+
new:
|
|
249
|
+
explanation: Los usuarios gestionados pueden ser promovidos a usuarios estándar. Esto significa que serán invitados a la aplicación y no será capaz de suplantarlos de nuevo. El usuario invitado recibirá un correo electrónico para aceptar su invitación.
|
|
250
|
+
new_managed_user_promotion: Nueva promoción de usuarios gestionados
|
|
251
|
+
promote: Promocionar
|
|
213
252
|
menu:
|
|
214
253
|
admins: Administradores
|
|
215
254
|
dashboard: Panel de control
|
|
255
|
+
managed_users: Usuarios gestionados
|
|
216
256
|
newsletters: Boletines
|
|
217
257
|
participatory_process_groups: Grupos de procesos
|
|
218
258
|
participatory_processes: Procesos
|
|
@@ -224,6 +264,7 @@ es:
|
|
|
224
264
|
moderations: Denuncias
|
|
225
265
|
process_admins: Usuarios del proceso
|
|
226
266
|
steps: Fases del proceso
|
|
267
|
+
scope_types: Tipos de ámbito
|
|
227
268
|
scopes: Ámbitos
|
|
228
269
|
settings: Configuración
|
|
229
270
|
static_pages: Páginas
|
|
@@ -237,6 +278,15 @@ es:
|
|
|
237
278
|
name: Archivo adjunto
|
|
238
279
|
category:
|
|
239
280
|
name: Categoría
|
|
281
|
+
impersonation_log:
|
|
282
|
+
fields:
|
|
283
|
+
admin: Administrador
|
|
284
|
+
ended_at: Terminó el
|
|
285
|
+
expired_at: Caduca el
|
|
286
|
+
started_at: Empezó a las
|
|
287
|
+
user: Usuario
|
|
288
|
+
managed_user:
|
|
289
|
+
name: Usuario gestionado
|
|
240
290
|
newsletter:
|
|
241
291
|
fields:
|
|
242
292
|
created_at: Fecha de creación
|
|
@@ -273,8 +323,12 @@ es:
|
|
|
273
323
|
moderator: Moderador
|
|
274
324
|
scope:
|
|
275
325
|
fields:
|
|
276
|
-
created_at: Fecha de creación
|
|
277
326
|
name: Nombre
|
|
327
|
+
scope_type: Tipo de ámbito
|
|
328
|
+
scope_type:
|
|
329
|
+
fields:
|
|
330
|
+
name: Nombre
|
|
331
|
+
plural: Plural
|
|
278
332
|
static_page:
|
|
279
333
|
fields:
|
|
280
334
|
created_at: Fecha de creación
|
|
@@ -287,6 +341,10 @@ es:
|
|
|
287
341
|
invitation_sent_at: Fecha de envío de la invitación
|
|
288
342
|
last_sign_in_at: Última fecha de identificación
|
|
289
343
|
name: Nombre
|
|
344
|
+
role: Rol
|
|
345
|
+
roles:
|
|
346
|
+
admin: Administrador
|
|
347
|
+
user_manager: Administrador de usuarios
|
|
290
348
|
name: Usuario
|
|
291
349
|
user_group:
|
|
292
350
|
fields:
|
|
@@ -354,7 +412,6 @@ es:
|
|
|
354
412
|
new:
|
|
355
413
|
copy: Copiar
|
|
356
414
|
select: Seleccione los datos que desea duplicar
|
|
357
|
-
title: Duplicar proceso participativo
|
|
358
415
|
participatory_process_groups:
|
|
359
416
|
destroy:
|
|
360
417
|
success: Grupo destruido correctamente.
|
|
@@ -445,6 +502,21 @@ es:
|
|
|
445
502
|
create:
|
|
446
503
|
error: Se ha producido un error al crear este grupo.
|
|
447
504
|
success: Grupo creado correctamente.
|
|
505
|
+
scope_types:
|
|
506
|
+
create:
|
|
507
|
+
error: Se ha producido un error al crear un nuevo tipo de ámbito.
|
|
508
|
+
success: Tipo de ámbito creado correctamente.
|
|
509
|
+
destroy:
|
|
510
|
+
success: Tipo de ámbito destruido correctamente
|
|
511
|
+
edit:
|
|
512
|
+
title: Editar tipo de ámbito
|
|
513
|
+
update: Actualizar
|
|
514
|
+
new:
|
|
515
|
+
create: Crear tipo de ámbito
|
|
516
|
+
title: Nuevo ámbito
|
|
517
|
+
update:
|
|
518
|
+
error: Se ha producido un error al actualizar este tipo de ámbito.
|
|
519
|
+
success: Tipo de ámbito actualizado con éxito
|
|
448
520
|
scopes:
|
|
449
521
|
create:
|
|
450
522
|
error: Se ha producido un error al crear un nuevo ámbito.
|
|
@@ -457,6 +529,7 @@ es:
|
|
|
457
529
|
new:
|
|
458
530
|
create: Crear ámbito
|
|
459
531
|
title: Nuevo ámbito
|
|
532
|
+
no_scopes: No hay ámbitos en este nivel.
|
|
460
533
|
update:
|
|
461
534
|
error: Se produjo un error en la actualización de este ámbito.
|
|
462
535
|
success: Ámbito actualizado correctamente
|
|
@@ -479,8 +552,11 @@ es:
|
|
|
479
552
|
success: La página se ha actualizado correctamente.
|
|
480
553
|
titles:
|
|
481
554
|
dashboard: Panel de control
|
|
555
|
+
impersonations: Suplantaciones
|
|
556
|
+
managed_users: Usuarios gestionados
|
|
482
557
|
participatory_process_groups: Grupos de procesos participativos
|
|
483
558
|
participatory_processes: Procesos participativos
|
|
559
|
+
scope_types: Tipos de ámbito
|
|
484
560
|
scopes: Ámbitos
|
|
485
561
|
static_pages: Páginas
|
|
486
562
|
user_groups: Grupos de usuarios
|
|
@@ -515,6 +591,7 @@ es:
|
|
|
515
591
|
form:
|
|
516
592
|
email: Correo electrónico
|
|
517
593
|
name: Nombre
|
|
594
|
+
role: Rol
|
|
518
595
|
new:
|
|
519
596
|
create: Invitar
|
|
520
597
|
title: Invitar a un usuario como administrador
|
|
@@ -559,4 +636,4 @@ es:
|
|
|
559
636
|
time:
|
|
560
637
|
formats:
|
|
561
638
|
datepicker: "%m/%d/%Y"
|
|
562
|
-
timepicker: "%d/%m/%Y %H:%M"
|
|
639
|
+
timepicker: "%d/%m/%Y %H:%M"
|
data/config/locales/eu.yml
CHANGED
|
@@ -32,6 +32,9 @@ eu:
|
|
|
32
32
|
welcome_text: Ongietorri-testua
|
|
33
33
|
participatory_process:
|
|
34
34
|
banner_image: Iragarki-bandako irudia
|
|
35
|
+
copy_categories: Kategoriak kopiatu
|
|
36
|
+
copy_features: Ezaugarriak kopiatu
|
|
37
|
+
copy_steps: Urratsak kopiatu
|
|
35
38
|
description: Deskribapena
|
|
36
39
|
developer_group: Talde sustatzailea
|
|
37
40
|
domain: Domeinua
|
|
@@ -68,6 +71,11 @@ eu:
|
|
|
68
71
|
scope:
|
|
69
72
|
name: Izena
|
|
70
73
|
organization: Erakundea
|
|
74
|
+
scope_type: Esparru mota
|
|
75
|
+
scope_type:
|
|
76
|
+
name: Izena
|
|
77
|
+
organization: Erakundea
|
|
78
|
+
plural: Anitza
|
|
71
79
|
static_page:
|
|
72
80
|
content: Contenido
|
|
73
81
|
organization: Erakundea
|
|
@@ -123,6 +131,7 @@ eu:
|
|
|
123
131
|
permissions: Baimenak
|
|
124
132
|
preview: Aurreikusi
|
|
125
133
|
publish: Argitaratu
|
|
134
|
+
reject: Ukatu
|
|
126
135
|
resend_invitation: Birbidali gonbita
|
|
127
136
|
unpublish: Desargitaratu
|
|
128
137
|
verify: Egiaztatu
|
|
@@ -136,7 +145,7 @@ eu:
|
|
|
136
145
|
title: Editatu fitxategi erantsia
|
|
137
146
|
update: Eguneratu
|
|
138
147
|
index:
|
|
139
|
-
attachments_title:
|
|
148
|
+
attachments_title: Eranskinak
|
|
140
149
|
new:
|
|
141
150
|
create: Sortu fitxategi erantsia
|
|
142
151
|
title: Fitxategi erantsi berria
|
|
@@ -155,6 +164,7 @@ eu:
|
|
|
155
164
|
update: Eguneratu
|
|
156
165
|
index:
|
|
157
166
|
categories_title: Kategoriak
|
|
167
|
+
category_used: Kategoria hau ezin da ezabatu erabiltzen ari delako.
|
|
158
168
|
new:
|
|
159
169
|
create: Sortu kategoria
|
|
160
170
|
title: Kategoria berria
|
|
@@ -185,6 +195,7 @@ eu:
|
|
|
185
195
|
title: Editatu funtzionalitatea
|
|
186
196
|
update: Eguneratu
|
|
187
197
|
form:
|
|
198
|
+
default_step_settings: Urrats ezarpen lehenetsiak
|
|
188
199
|
global_settings: Ezarpen orokorrak
|
|
189
200
|
step_settings: Fase-konfigurazioa
|
|
190
201
|
index:
|
|
@@ -204,6 +215,17 @@ eu:
|
|
|
204
215
|
update:
|
|
205
216
|
error: Errorea gertatu da funtzionalitate hau eguneratzean.
|
|
206
217
|
success: Funtzionalitatea zuzen eguneratu da.
|
|
218
|
+
managed_users:
|
|
219
|
+
close_session:
|
|
220
|
+
error: Errore bat gertatu da egungo suplifikaziorako saioa ixtean.
|
|
221
|
+
success: Uneko sinplifikazioa saioa amaitu da.
|
|
222
|
+
create:
|
|
223
|
+
error: Errore bat gertatu da kudeatutako erabiltzailea sortzean.
|
|
224
|
+
success: Erabiltzaile kudeatua arrakastaz sortu da.
|
|
225
|
+
form:
|
|
226
|
+
name: Izena
|
|
227
|
+
impersonate:
|
|
228
|
+
error: Errore bat gertatu da kudeatutako erabiltzailea ordezkatzean.
|
|
207
229
|
menu:
|
|
208
230
|
admins: Administratzaileak
|
|
209
231
|
dashboard: Kontrol-panela
|
|
@@ -266,8 +288,11 @@ eu:
|
|
|
266
288
|
collaborator: Kolaboratzailea
|
|
267
289
|
scope:
|
|
268
290
|
fields:
|
|
269
|
-
created_at: Sortze-data
|
|
270
291
|
name: Izena
|
|
292
|
+
scope_type:
|
|
293
|
+
fields:
|
|
294
|
+
name: Izena
|
|
295
|
+
plural: plural
|
|
271
296
|
static_page:
|
|
272
297
|
fields:
|
|
273
298
|
created_at: Sortze-data
|
|
@@ -280,9 +305,14 @@ eu:
|
|
|
280
305
|
invitation_sent_at: Gonbitaren bidalketa-data
|
|
281
306
|
last_sign_in_at: Identifikazioaren azken-data
|
|
282
307
|
name: Izena
|
|
308
|
+
role: Rola
|
|
309
|
+
roles:
|
|
310
|
+
admin: Administratzailea
|
|
311
|
+
user_manager: Erabiltzailearen kudeatzailea
|
|
283
312
|
name: Erabiltzailea
|
|
284
313
|
user_group:
|
|
285
314
|
fields:
|
|
315
|
+
actions: Ekintzak
|
|
286
316
|
created_at: Sortze-data
|
|
287
317
|
document_number: Agiri-zenbakia
|
|
288
318
|
name: Izena
|
|
@@ -340,7 +370,6 @@ eu:
|
|
|
340
370
|
new:
|
|
341
371
|
copy: Copy
|
|
342
372
|
select: Aukeratu itzazu kopiatu nahi dituzun datuak
|
|
343
|
-
title: Egin prozesu partizipatiboaren kopia
|
|
344
373
|
participatory_process_groups:
|
|
345
374
|
destroy:
|
|
346
375
|
success: Multzoa zuzen deuseztatu da.
|
|
@@ -377,8 +406,6 @@ eu:
|
|
|
377
406
|
edit:
|
|
378
407
|
title: Editatu prozesu partizipatiboaren fasea
|
|
379
408
|
update: Eguneratu
|
|
380
|
-
index:
|
|
381
|
-
steps_title: Faseak
|
|
382
409
|
new:
|
|
383
410
|
create: Sortu
|
|
384
411
|
title: Prozesu partizipatiboaren fase berria
|
|
@@ -396,8 +423,6 @@ eu:
|
|
|
396
423
|
edit:
|
|
397
424
|
title: Prozesu partizipatiboko erabiltzailea eguneratzea.
|
|
398
425
|
update: Eguneratu
|
|
399
|
-
index:
|
|
400
|
-
process_admins_title: Prozesu partizipatiboko erabiltzaileak
|
|
401
426
|
new:
|
|
402
427
|
create: Sortu
|
|
403
428
|
title: Partaidetza-prozesu berriko erabiltzailea.
|
|
@@ -471,6 +496,17 @@ eu:
|
|
|
471
496
|
static_pages: Erlaitzak
|
|
472
497
|
user_groups: Erabiltzaile-taldeak
|
|
473
498
|
users: Erabiltzaileak
|
|
499
|
+
user_groups:
|
|
500
|
+
index:
|
|
501
|
+
filter:
|
|
502
|
+
pending: Zain
|
|
503
|
+
rejected: Ukatua
|
|
504
|
+
verified: Egiaztatuta
|
|
505
|
+
search: Bilatu
|
|
506
|
+
state:
|
|
507
|
+
pending: Zain
|
|
508
|
+
rejected: Ukatua
|
|
509
|
+
verified: Egiaztatuta
|
|
474
510
|
users:
|
|
475
511
|
create:
|
|
476
512
|
error: Errorea gertatu da erabiltzaile honi gonbit egitean.
|
|
@@ -481,6 +517,7 @@ eu:
|
|
|
481
517
|
form:
|
|
482
518
|
email: Helbide elektronikoa
|
|
483
519
|
name: Izena
|
|
520
|
+
role: Rola
|
|
484
521
|
new:
|
|
485
522
|
create: Gonbit egin
|
|
486
523
|
title: Gonbit egin erabiltzaile bati administratzaile gisa
|
data/config/locales/fi.yml
CHANGED
|
@@ -111,8 +111,6 @@ fi:
|
|
|
111
111
|
success: Liite tuhottu onnistuneesti.
|
|
112
112
|
edit:
|
|
113
113
|
title: Muokkaa liitettä
|
|
114
|
-
index:
|
|
115
|
-
attachments_title: Liitteet
|
|
116
114
|
new:
|
|
117
115
|
create: Luo liite
|
|
118
116
|
title: Uusi liite
|
|
@@ -128,8 +126,6 @@ fi:
|
|
|
128
126
|
success: Kategoria poistettu onnistuneesti.
|
|
129
127
|
edit:
|
|
130
128
|
title: Muokkaa kategoriaa
|
|
131
|
-
index:
|
|
132
|
-
categories_title: Kategoriat
|
|
133
129
|
new:
|
|
134
130
|
create: Luo kategoria
|
|
135
131
|
title: Uusi kategoria
|
|
@@ -223,7 +219,6 @@ fi:
|
|
|
223
219
|
email: Sähköposti
|
|
224
220
|
scope:
|
|
225
221
|
fields:
|
|
226
|
-
created_at: Luonnin ajankohta
|
|
227
222
|
name: Nimi
|
|
228
223
|
static_page:
|
|
229
224
|
fields:
|
|
@@ -313,8 +308,6 @@ fi:
|
|
|
313
308
|
success: Osallistumisprosessin vaihe tuhottu onnistuneesti.
|
|
314
309
|
edit:
|
|
315
310
|
title: Muokkaa osallistumisprosessin vaihetta
|
|
316
|
-
index:
|
|
317
|
-
steps_title: Vaihe
|
|
318
311
|
new:
|
|
319
312
|
title: Uusi osallistumisprosessin vaihe
|
|
320
313
|
ordering:
|
data/config/locales/fr.yml
CHANGED
|
@@ -32,6 +32,9 @@ fr:
|
|
|
32
32
|
welcome_text: Texte de bienvenue
|
|
33
33
|
participatory_process:
|
|
34
34
|
banner_image: Image d'en-tête
|
|
35
|
+
copy_categories: Copier les catégories
|
|
36
|
+
copy_features: Copier les fonctionnalités
|
|
37
|
+
copy_steps: Copier les étapes
|
|
35
38
|
description: Description
|
|
36
39
|
developer_group: Groupe promoteur
|
|
37
40
|
domain: Domaine
|
|
@@ -66,8 +69,14 @@ fr:
|
|
|
66
69
|
name: Nom
|
|
67
70
|
role: Rôle
|
|
68
71
|
scope:
|
|
72
|
+
code: Code
|
|
69
73
|
name: Nom
|
|
70
74
|
organization: Organisation
|
|
75
|
+
scope_type: Type de portée
|
|
76
|
+
scope_type:
|
|
77
|
+
name: Nom
|
|
78
|
+
organization: Organisation
|
|
79
|
+
plural: Pluriel
|
|
71
80
|
static_page:
|
|
72
81
|
content: Contenu
|
|
73
82
|
organization: Organisation
|
|
@@ -115,12 +124,15 @@ fr:
|
|
|
115
124
|
configure: Configurer
|
|
116
125
|
confirm_destroy: Confirmez-vous la suppression ?
|
|
117
126
|
destroy: Supprimer
|
|
127
|
+
duplicate: Dupliquer
|
|
118
128
|
edit: Modifier
|
|
129
|
+
export: Exporter
|
|
119
130
|
manage: Gérer
|
|
120
131
|
new: Nouveau
|
|
121
132
|
permissions: Autorisations
|
|
122
133
|
preview: Aperçu
|
|
123
134
|
publish: Publier
|
|
135
|
+
reject: Rejeter
|
|
124
136
|
resend_invitation: Renvoyer l'invitation
|
|
125
137
|
unpublish: Dépublier
|
|
126
138
|
verify: Vérifier
|
|
@@ -134,7 +146,7 @@ fr:
|
|
|
134
146
|
title: Modifier le document lié
|
|
135
147
|
update: Mettre à jour
|
|
136
148
|
index:
|
|
137
|
-
attachments_title:
|
|
149
|
+
attachments_title: Documents liés
|
|
138
150
|
new:
|
|
139
151
|
create: Lier un document
|
|
140
152
|
title: Nouveau document lié
|
|
@@ -153,6 +165,7 @@ fr:
|
|
|
153
165
|
update: Mettre à jour
|
|
154
166
|
index:
|
|
155
167
|
categories_title: Catégories
|
|
168
|
+
category_used: Cette catégorie ne peut pas être supprimée car elle est utilisée.
|
|
156
169
|
new:
|
|
157
170
|
create: Créer une catégorie
|
|
158
171
|
title: Nouvelle catégorie
|
|
@@ -162,6 +175,9 @@ fr:
|
|
|
162
175
|
dashboard:
|
|
163
176
|
show:
|
|
164
177
|
welcome: Bienvenue dans le nouveau panneau d’administration Decidim.
|
|
178
|
+
exports:
|
|
179
|
+
export_as: "%{name} comme %{export_format}"
|
|
180
|
+
notice: Votre exportation est en cours. Vous recevrez un e-mail quand elle sera terminée.
|
|
165
181
|
feature_permissions:
|
|
166
182
|
edit:
|
|
167
183
|
everyone: Tout le monde
|
|
@@ -180,6 +196,7 @@ fr:
|
|
|
180
196
|
title: Editer la fonctionnalité
|
|
181
197
|
update: Mettre à jour
|
|
182
198
|
form:
|
|
199
|
+
default_step_settings: Paramètres d'étape par défaut
|
|
183
200
|
global_settings: Paramètres généraux
|
|
184
201
|
step_settings: Définition des étapes
|
|
185
202
|
index:
|
|
@@ -199,6 +216,9 @@ fr:
|
|
|
199
216
|
update:
|
|
200
217
|
error: Une erreur s'est produite lors de la mise à jour de cette fonctionnalité.
|
|
201
218
|
success: La fonctionnalité a été mise à jour avec succès.
|
|
219
|
+
managed_users:
|
|
220
|
+
form:
|
|
221
|
+
name: Nom
|
|
202
222
|
menu:
|
|
203
223
|
admins: Administrateurs
|
|
204
224
|
dashboard: Tableau de bord
|
|
@@ -261,7 +281,6 @@ fr:
|
|
|
261
281
|
collaborator: Rédacteur
|
|
262
282
|
scope:
|
|
263
283
|
fields:
|
|
264
|
-
created_at: Crée le
|
|
265
284
|
name: Nom
|
|
266
285
|
static_page:
|
|
267
286
|
fields:
|
|
@@ -367,8 +386,6 @@ fr:
|
|
|
367
386
|
edit:
|
|
368
387
|
title: Modifier l'étape du processus participatif
|
|
369
388
|
update: Mettre à jour
|
|
370
|
-
index:
|
|
371
|
-
steps_title: Etapes
|
|
372
389
|
new:
|
|
373
390
|
create: Créer
|
|
374
391
|
title: Nouvelle étape du processus participatif
|
|
@@ -386,8 +403,6 @@ fr:
|
|
|
386
403
|
edit:
|
|
387
404
|
title: Mettre à jour l'utilisateur du processus participatif.
|
|
388
405
|
update: Mettre à jour
|
|
389
|
-
index:
|
|
390
|
-
process_admins_title: Administrateurs du processus participatifs
|
|
391
406
|
new:
|
|
392
407
|
create: Créer
|
|
393
408
|
title: Nouvel utilisateur de processus participatif.
|