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
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
<table class="table-list">
|
|
11
11
|
<thead>
|
|
12
12
|
<tr>
|
|
13
|
+
<th><%= t("models.user.fields.role", scope: "decidim.admin") %></th>
|
|
13
14
|
<th><%= t("models.user.fields.name", scope: "decidim.admin") %></th>
|
|
14
15
|
<th><%= t("models.user.fields.email", scope: "decidim.admin") %></th>
|
|
15
16
|
<th><%= t("models.user.fields.invitation_sent_at", scope: "decidim.admin") %></th>
|
|
@@ -22,6 +23,7 @@
|
|
|
22
23
|
<tbody>
|
|
23
24
|
<% @users.each do |user| %>
|
|
24
25
|
<tr data-user-id="<%= user.id %>">
|
|
26
|
+
<td><%= t(user.active_role, scope: "decidim.admin.models.user.fields.roles") %></td>
|
|
25
27
|
<td><%= user.name %></td>
|
|
26
28
|
<td><%= user.email %></td>
|
|
27
29
|
<td>
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
</li>
|
|
32
32
|
<% end %>
|
|
33
33
|
<% if can? :read, Decidim::Category %>
|
|
34
|
-
<li <% if is_active_link?(decidim_admin.
|
|
35
|
-
<%= aria_selected_link_to t("categories", scope: "decidim.admin.menu.participatory_processes_submenu"), decidim_admin.
|
|
34
|
+
<li <% if is_active_link?(decidim_admin.categories_path(current_participatory_process)) %> class="is-active" <% end %>>
|
|
35
|
+
<%= aria_selected_link_to t("categories", scope: "decidim.admin.menu.participatory_processes_submenu"), decidim_admin.categories_path(current_participatory_process) %>
|
|
36
36
|
</li>
|
|
37
37
|
<% end %>
|
|
38
38
|
<% if can? :read, Decidim::Attachment %>
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
</li>
|
|
47
47
|
<% end %>
|
|
48
48
|
<% if can? :read, Decidim::Moderation %>
|
|
49
|
-
<li <% if is_active_link?(decidim_admin.
|
|
50
|
-
<%= aria_selected_link_to t("moderations", scope: "decidim.admin.menu.participatory_processes_submenu"), decidim_admin.
|
|
49
|
+
<li <% if is_active_link?(decidim_admin.moderations_path(current_participatory_process.id)) %> class="is-active" <% end %>>
|
|
50
|
+
<%= aria_selected_link_to t("moderations", scope: "decidim.admin.menu.participatory_processes_submenu"), decidim_admin.moderations_path(current_participatory_process.id) %>
|
|
51
51
|
</li>
|
|
52
52
|
<% end %>
|
|
53
53
|
</ul>
|
|
@@ -10,10 +10,13 @@
|
|
|
10
10
|
<li <% if is_active_link?(decidim_admin.scopes_path) %> class="is-active" <% end %>>
|
|
11
11
|
<%= link_to t("menu.scopes", scope: "decidim.admin"), decidim_admin.scopes_path %>
|
|
12
12
|
</li>
|
|
13
|
+
<li <% if is_active_link?(decidim_admin.scope_types_path) %> class="is-active" <% end %>>
|
|
14
|
+
<%= link_to t("menu.scope_types", scope: "decidim.admin"), decidim_admin.scope_types_path %>
|
|
15
|
+
</li>
|
|
13
16
|
</ul>
|
|
14
17
|
</div>
|
|
15
18
|
<% end %>
|
|
16
19
|
|
|
17
20
|
<%= render "layouts/decidim/admin/application" do %>
|
|
18
21
|
<%= yield %>
|
|
19
|
-
<% end %>
|
|
22
|
+
<% end %>
|
|
@@ -4,14 +4,19 @@
|
|
|
4
4
|
<%= t ".title" %>
|
|
5
5
|
</div>
|
|
6
6
|
<ul>
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
<% if can? :index, Decidim::User %>
|
|
8
|
+
<li <% if is_active_link?(decidim_admin.users_path) %> class="is-active" <% end %>>
|
|
9
|
+
<%= link_to t("menu.admins", scope: "decidim.admin"), decidim_admin.users_path %>
|
|
10
|
+
</li>
|
|
11
|
+
<% end %>
|
|
10
12
|
<% if can? :index, Decidim::UserGroup %>
|
|
11
13
|
<li <% if is_active_link?(decidim_admin.user_groups_path) %> class="is-active" <% end %>>
|
|
12
14
|
<%= link_to t("menu.user_groups", scope: "decidim.admin"), decidim_admin.user_groups_path %>
|
|
13
15
|
</li>
|
|
14
16
|
<% end %>
|
|
17
|
+
<li <% if is_active_link?(decidim_admin.managed_users_path) %> class="is-active" <% end %>>
|
|
18
|
+
<%= link_to t("menu.managed_users", scope: "decidim.admin"), decidim_admin.managed_users_path %>
|
|
19
|
+
</li>
|
|
15
20
|
</ul>
|
|
16
21
|
</div>
|
|
17
22
|
<% end %>
|
data/config/i18n-tasks.yml
CHANGED
|
@@ -86,7 +86,7 @@ search:
|
|
|
86
86
|
ignore_missing:
|
|
87
87
|
# - 'errors.messages.{accepted,blank,invalid,too_short,too_long}'
|
|
88
88
|
# - '{devise,simple_form}.*'
|
|
89
|
-
- decidim.
|
|
89
|
+
- decidim.scopes.global
|
|
90
90
|
- locale.name
|
|
91
91
|
- forms.required
|
|
92
92
|
|
|
@@ -95,6 +95,7 @@ ignore_unused:
|
|
|
95
95
|
- activerecord.attributes.*
|
|
96
96
|
- activemodel.attributes.*
|
|
97
97
|
- decidim.admin.participatory_process_steps.default_title
|
|
98
|
+
- decidim.admin.models.user.fields.roles.*
|
|
98
99
|
- activemodel.errors.messages.*
|
|
99
100
|
- actions.confirm_destroy
|
|
100
101
|
- time.formats.*
|
data/config/locales/ca.yml
CHANGED
|
@@ -69,8 +69,14 @@ ca:
|
|
|
69
69
|
name: Nom
|
|
70
70
|
role: Rol
|
|
71
71
|
scope:
|
|
72
|
+
code: Codi
|
|
72
73
|
name: Nom
|
|
73
74
|
organization: Organització
|
|
75
|
+
scope_type: Tipus d'àmbit
|
|
76
|
+
scope_type:
|
|
77
|
+
name: Nom
|
|
78
|
+
organization: Organització
|
|
79
|
+
plural: Plural
|
|
74
80
|
static_page:
|
|
75
81
|
content: Contingut
|
|
76
82
|
organization: Organització
|
|
@@ -210,9 +216,43 @@ ca:
|
|
|
210
216
|
update:
|
|
211
217
|
error: S'ha produït un error en actualitzar aquesta funcionalitat.
|
|
212
218
|
success: La funcionalitat s'ha actualitzat correctament.
|
|
219
|
+
managed_users:
|
|
220
|
+
close_session:
|
|
221
|
+
error: S'ha produït un error en tancar la sessió de suplantació actual.
|
|
222
|
+
success: La sessió de suplantació actual s'ha finalitzat amb èxit.
|
|
223
|
+
create:
|
|
224
|
+
error: S'ha produït un error en crear l'usuari gestionat.
|
|
225
|
+
success: L'usuari gestionat s'ha creat correctament.
|
|
226
|
+
form:
|
|
227
|
+
name: Nom
|
|
228
|
+
impersonate:
|
|
229
|
+
error: S'ha produït un error en suplantar l'usuari gestionat.
|
|
230
|
+
impersonations:
|
|
231
|
+
new:
|
|
232
|
+
impersonate: Suplantar
|
|
233
|
+
new_managed_user_impersonation: Nova suplantació d'usuaris gestionats
|
|
234
|
+
index:
|
|
235
|
+
impersonate: Suplantar
|
|
236
|
+
needs_authoriation_warning: Necessiteu almenys una autorització habilitada per a aquesta organització.
|
|
237
|
+
promote: Promocionar
|
|
238
|
+
view_logs: Veure registres
|
|
239
|
+
new:
|
|
240
|
+
create: Crear
|
|
241
|
+
new_managed_user: Nou usuari gestionat
|
|
242
|
+
select_authorization_method: Seleccioneu un mètode d'autorització
|
|
243
|
+
step: Fase %{current} de %{total}
|
|
244
|
+
promotion:
|
|
245
|
+
error: S'ha produït un error en promoure l'usuari gestionat.
|
|
246
|
+
success: S'ha promogut amb èxit l'usuari gestionat.
|
|
247
|
+
promotions:
|
|
248
|
+
new:
|
|
249
|
+
explanation: Els usuaris gestionats es poden promocionar a usuaris estàndard. Significa que seran convidats al sistema i no podreu tornar a suplantar-los. L'usuari convidat rebrà un correu electrònic per acceptar la vostra invitació.
|
|
250
|
+
new_managed_user_promotion: Nova promoció d'usuari gestionat
|
|
251
|
+
promote: Promocionar
|
|
213
252
|
menu:
|
|
214
253
|
admins: Administradors
|
|
215
254
|
dashboard: Tauler de control
|
|
255
|
+
managed_users: Usuaris gestionats
|
|
216
256
|
newsletters: Butlletins
|
|
217
257
|
participatory_process_groups: Grups de processos
|
|
218
258
|
participatory_processes: Processos
|
|
@@ -224,6 +264,7 @@ ca:
|
|
|
224
264
|
moderations: Moderacions
|
|
225
265
|
process_admins: Usuaris del procés
|
|
226
266
|
steps: Fases del procés
|
|
267
|
+
scope_types: Tipus d'àmbit
|
|
227
268
|
scopes: Àmbits
|
|
228
269
|
settings: Configuració
|
|
229
270
|
static_pages: Pàgines
|
|
@@ -237,6 +278,15 @@ ca:
|
|
|
237
278
|
name: Arxiu adjunt
|
|
238
279
|
category:
|
|
239
280
|
name: Categoria
|
|
281
|
+
impersonation_log:
|
|
282
|
+
fields:
|
|
283
|
+
admin: Administrador
|
|
284
|
+
ended_at: Va acabar el
|
|
285
|
+
expired_at: Vençut el
|
|
286
|
+
started_at: Va començar el
|
|
287
|
+
user: Usuari
|
|
288
|
+
managed_user:
|
|
289
|
+
name: Usuari gestionat
|
|
240
290
|
newsletter:
|
|
241
291
|
fields:
|
|
242
292
|
created_at: Data de creació
|
|
@@ -273,8 +323,12 @@ ca:
|
|
|
273
323
|
moderator: Moderador
|
|
274
324
|
scope:
|
|
275
325
|
fields:
|
|
276
|
-
created_at: Data de creació
|
|
277
326
|
name: Nom
|
|
327
|
+
scope_type: Tipus d'àmbit
|
|
328
|
+
scope_type:
|
|
329
|
+
fields:
|
|
330
|
+
name: Nom
|
|
331
|
+
plural: Plural
|
|
278
332
|
static_page:
|
|
279
333
|
fields:
|
|
280
334
|
created_at: Data de creació
|
|
@@ -287,6 +341,10 @@ ca:
|
|
|
287
341
|
invitation_sent_at: Data d'enviament de la invitació
|
|
288
342
|
last_sign_in_at: Darrera data d'identificació
|
|
289
343
|
name: Nom
|
|
344
|
+
role: Rol
|
|
345
|
+
roles:
|
|
346
|
+
admin: Administrador
|
|
347
|
+
user_manager: Administrador d'usuaris
|
|
290
348
|
name: Usuari
|
|
291
349
|
user_group:
|
|
292
350
|
fields:
|
|
@@ -354,7 +412,6 @@ ca:
|
|
|
354
412
|
new:
|
|
355
413
|
copy: Còpia
|
|
356
414
|
select: Selecciona quines dades voleu duplicar
|
|
357
|
-
title: Duplicar procés participatiu
|
|
358
415
|
participatory_process_groups:
|
|
359
416
|
destroy:
|
|
360
417
|
success: Grup eliminat correctament.
|
|
@@ -445,6 +502,21 @@ ca:
|
|
|
445
502
|
create:
|
|
446
503
|
error: S'ha produït un error creant aquest grup de processos participatius.
|
|
447
504
|
success: Grup de processos participatius creat correctament.
|
|
505
|
+
scope_types:
|
|
506
|
+
create:
|
|
507
|
+
error: S'ha produït un error en crear un nou tipus d'àmbit.
|
|
508
|
+
success: Tipus d'àmbit creat amb èxit.
|
|
509
|
+
destroy:
|
|
510
|
+
success: Tipus d'àmbit destruït amb èxit
|
|
511
|
+
edit:
|
|
512
|
+
title: Editar tipus d'àmbit
|
|
513
|
+
update: Actualitzar
|
|
514
|
+
new:
|
|
515
|
+
create: Crea tipus d'àmbit
|
|
516
|
+
title: Nou àmbit
|
|
517
|
+
update:
|
|
518
|
+
error: S'ha produït un error en actualitzar aquest tipus d'àmbit.
|
|
519
|
+
success: Tipus d'àmbit actualitzat amb èxit
|
|
448
520
|
scopes:
|
|
449
521
|
create:
|
|
450
522
|
error: S'ha produït un error en crear un nou àmbit.
|
|
@@ -457,6 +529,7 @@ ca:
|
|
|
457
529
|
new:
|
|
458
530
|
create: Crea àmbit
|
|
459
531
|
title: Nou àmbit
|
|
532
|
+
no_scopes: No hi ha àmbits a aquest nivell.
|
|
460
533
|
update:
|
|
461
534
|
error: S'ha produït un error en l'actualització d'aquest àmbit.
|
|
462
535
|
success: Àmbit actualitzat correctament
|
|
@@ -479,8 +552,11 @@ ca:
|
|
|
479
552
|
success: La pàgina s'ha actualitzat correctament.
|
|
480
553
|
titles:
|
|
481
554
|
dashboard: Tauler de control
|
|
555
|
+
impersonations: Suplantacions
|
|
556
|
+
managed_users: Usuaris gestionats
|
|
482
557
|
participatory_process_groups: Grups de processos participatius
|
|
483
558
|
participatory_processes: Processos participatius
|
|
559
|
+
scope_types: Tipus d'àmbit
|
|
484
560
|
scopes: Àmbits
|
|
485
561
|
static_pages: Pàgines
|
|
486
562
|
user_groups: Grups d'usuaris
|
|
@@ -515,6 +591,7 @@ ca:
|
|
|
515
591
|
form:
|
|
516
592
|
email: Correu electrònic
|
|
517
593
|
name: Nom
|
|
594
|
+
role: Rol
|
|
518
595
|
new:
|
|
519
596
|
create: Convidar
|
|
520
597
|
title: Convidar un usuari com a administrador
|
|
@@ -559,4 +636,4 @@ ca:
|
|
|
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/en.yml
CHANGED
|
@@ -49,6 +49,7 @@ en:
|
|
|
49
49
|
participatory_structure: Participatory structure
|
|
50
50
|
promoted: Promoted
|
|
51
51
|
scope_id: Scope
|
|
52
|
+
scopes_enabled: Scopes enabled
|
|
52
53
|
short_description: Short description
|
|
53
54
|
slug: URL slug
|
|
54
55
|
subtitle: Subtitle
|
|
@@ -70,8 +71,14 @@ en:
|
|
|
70
71
|
name: Name
|
|
71
72
|
role: Role
|
|
72
73
|
scope:
|
|
74
|
+
code: Code
|
|
73
75
|
name: Name
|
|
74
76
|
organization: Organization
|
|
77
|
+
scope_type: Scope type
|
|
78
|
+
scope_type:
|
|
79
|
+
name: Name
|
|
80
|
+
organization: Organization
|
|
81
|
+
plural: Plural
|
|
75
82
|
static_page:
|
|
76
83
|
content: Content
|
|
77
84
|
organization: Organization
|
|
@@ -116,6 +123,7 @@ en:
|
|
|
116
123
|
actions:
|
|
117
124
|
activate: Activate
|
|
118
125
|
add: Add
|
|
126
|
+
browse: Browse
|
|
119
127
|
configure: Configure
|
|
120
128
|
confirm_destroy: Are you sure you want to delete this?
|
|
121
129
|
destroy: Destroy
|
|
@@ -211,9 +219,43 @@ en:
|
|
|
211
219
|
update:
|
|
212
220
|
error: There has been an error updating this feature.
|
|
213
221
|
success: The feature was updated successfully.
|
|
222
|
+
managed_users:
|
|
223
|
+
close_session:
|
|
224
|
+
error: There has been an error closing the current impersonation session.
|
|
225
|
+
success: The current impersonation session has been successfully ended.
|
|
226
|
+
create:
|
|
227
|
+
error: There has been an error creating the managed user.
|
|
228
|
+
success: The managed user has been successfully created.
|
|
229
|
+
form:
|
|
230
|
+
name: Name
|
|
231
|
+
impersonate:
|
|
232
|
+
error: There has been an error impersonating the managed user.
|
|
233
|
+
impersonations:
|
|
234
|
+
new:
|
|
235
|
+
impersonate: Impersonate
|
|
236
|
+
new_managed_user_impersonation: New managed user impersonation
|
|
237
|
+
index:
|
|
238
|
+
impersonate: Impersonate
|
|
239
|
+
needs_authoriation_warning: You need at least one authorization enabled for this organization.
|
|
240
|
+
promote: Promote
|
|
241
|
+
view_logs: View logs
|
|
242
|
+
new:
|
|
243
|
+
create: Create
|
|
244
|
+
new_managed_user: New managed user
|
|
245
|
+
select_authorization_method: Select an authorization method
|
|
246
|
+
step: Step %{current} of %{total}
|
|
247
|
+
promotion:
|
|
248
|
+
error: There has been an error promoting the managed user.
|
|
249
|
+
success: The managed user has been successfully promoted.
|
|
250
|
+
promotions:
|
|
251
|
+
new:
|
|
252
|
+
explanation: Managed users can be promoted to standard users. It means they will be invited to the application and you will not be able to impersonate them again. The invited user will receive an email to accept your invitation.
|
|
253
|
+
new_managed_user_promotion: New managed user promotion
|
|
254
|
+
promote: Promote
|
|
214
255
|
menu:
|
|
215
256
|
admins: Admins
|
|
216
257
|
dashboard: Dashboard
|
|
258
|
+
managed_users: Managed users
|
|
217
259
|
newsletters: Newsletters
|
|
218
260
|
participatory_process_groups: Process groups
|
|
219
261
|
participatory_processes: Processes
|
|
@@ -225,6 +267,7 @@ en:
|
|
|
225
267
|
moderations: Moderations
|
|
226
268
|
process_admins: Process users
|
|
227
269
|
steps: Steps
|
|
270
|
+
scope_types: Scope types
|
|
228
271
|
scopes: Scopes
|
|
229
272
|
settings: Settings
|
|
230
273
|
static_pages: Pages
|
|
@@ -238,6 +281,15 @@ en:
|
|
|
238
281
|
name: Attachment
|
|
239
282
|
category:
|
|
240
283
|
name: Category
|
|
284
|
+
impersonation_log:
|
|
285
|
+
fields:
|
|
286
|
+
admin: Admin
|
|
287
|
+
ended_at: Ended at
|
|
288
|
+
expired_at: Expired at
|
|
289
|
+
started_at: Started at
|
|
290
|
+
user: User
|
|
291
|
+
managed_user:
|
|
292
|
+
name: Managed user
|
|
241
293
|
newsletter:
|
|
242
294
|
fields:
|
|
243
295
|
created_at: Created at
|
|
@@ -274,8 +326,12 @@ en:
|
|
|
274
326
|
moderator: Moderator
|
|
275
327
|
scope:
|
|
276
328
|
fields:
|
|
277
|
-
created_at: Created at
|
|
278
329
|
name: Name
|
|
330
|
+
scope_type: Scope type
|
|
331
|
+
scope_type:
|
|
332
|
+
fields:
|
|
333
|
+
name: Name
|
|
334
|
+
plural: Plural
|
|
279
335
|
static_page:
|
|
280
336
|
fields:
|
|
281
337
|
created_at: Created at
|
|
@@ -288,6 +344,10 @@ en:
|
|
|
288
344
|
invitation_sent_at: Invitation sent date
|
|
289
345
|
last_sign_in_at: Last sign in date
|
|
290
346
|
name: Name
|
|
347
|
+
role: Role
|
|
348
|
+
roles:
|
|
349
|
+
admin: Admin
|
|
350
|
+
user_manager: User manager
|
|
291
351
|
name: User
|
|
292
352
|
user_group:
|
|
293
353
|
fields:
|
|
@@ -355,7 +415,7 @@ en:
|
|
|
355
415
|
new:
|
|
356
416
|
copy: Copy
|
|
357
417
|
select: Select which data you would like to duplicate
|
|
358
|
-
title: Duplicate participatory
|
|
418
|
+
title: Duplicate participatory process
|
|
359
419
|
participatory_process_groups:
|
|
360
420
|
destroy:
|
|
361
421
|
success: Participatory process group destroyed successfully.
|
|
@@ -446,6 +506,21 @@ en:
|
|
|
446
506
|
create:
|
|
447
507
|
error: There was an error creating a new participatory process group.
|
|
448
508
|
success: Participatory process group created successfully.
|
|
509
|
+
scope_types:
|
|
510
|
+
create:
|
|
511
|
+
error: There was an error creating a new scope type.
|
|
512
|
+
success: Scope type created successfully.
|
|
513
|
+
destroy:
|
|
514
|
+
success: Scope type successfully destroyed
|
|
515
|
+
edit:
|
|
516
|
+
title: Edit scope type
|
|
517
|
+
update: Update
|
|
518
|
+
new:
|
|
519
|
+
create: Create scope type
|
|
520
|
+
title: New scope
|
|
521
|
+
update:
|
|
522
|
+
error: There was an error when updating this scope type.
|
|
523
|
+
success: Scope type updated successfully
|
|
449
524
|
scopes:
|
|
450
525
|
create:
|
|
451
526
|
error: There was an error creating a new scope.
|
|
@@ -458,6 +533,7 @@ en:
|
|
|
458
533
|
new:
|
|
459
534
|
create: Create scope
|
|
460
535
|
title: New scope
|
|
536
|
+
no_scopes: No scopes at this level.
|
|
461
537
|
update:
|
|
462
538
|
error: There was an error when updating this scope.
|
|
463
539
|
success: Scope updated successfully
|
|
@@ -480,8 +556,11 @@ en:
|
|
|
480
556
|
success: Page updated successfully
|
|
481
557
|
titles:
|
|
482
558
|
dashboard: Dashboard
|
|
559
|
+
impersonations: Impersonations
|
|
560
|
+
managed_users: Managed users
|
|
483
561
|
participatory_process_groups: Participatory process groups
|
|
484
562
|
participatory_processes: Participatory processes
|
|
563
|
+
scope_types: Scope types
|
|
485
564
|
scopes: Scopes
|
|
486
565
|
static_pages: Pages
|
|
487
566
|
user_groups: User groups
|
|
@@ -516,6 +595,7 @@ en:
|
|
|
516
595
|
form:
|
|
517
596
|
email: Email
|
|
518
597
|
name: Name
|
|
598
|
+
role: Role
|
|
519
599
|
new:
|
|
520
600
|
create: Invite
|
|
521
601
|
title: Invite user as administrator
|