decidim-admin 0.23.6 → 0.24.0.rc1
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/config/decidim_admin_manifest.js +1 -0
- data/app/assets/javascripts/decidim/admin/application.js.es6 +2 -0
- data/app/assets/javascripts/decidim/admin/budget_rule_toggler.component.js.es6 +23 -20
- data/app/assets/javascripts/decidim/admin/bundle.js +10 -17
- data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/admin/form.js.es6 +1 -0
- data/app/assets/javascripts/decidim/admin/import_guidance.js.es6 +29 -0
- data/app/assets/javascripts/decidim/admin/moderations.js.es6 +24 -0
- data/app/assets/javascripts/decidim/admin/proposal_infinite_edit.js.es6 +20 -0
- data/app/assets/javascripts/decidim/admin/user_moderations.js +2 -0
- data/app/assets/stylesheets/decidim/admin/_variables.scss +9 -0
- data/app/assets/stylesheets/decidim/admin/components/_dropdown-menu.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +13 -0
- data/app/assets/stylesheets/decidim/admin/extra/_block_user.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_moderations.scss +39 -0
- data/app/assets/stylesheets/decidim/admin/modules/_modules.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/modules/_reveal.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +6 -3
- data/app/assets/stylesheets/decidim/admin/modules/_user-login.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/user_moderations.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +1 -0
- data/app/cells/decidim/admin/content_block/show.erb +1 -1
- data/app/cells/decidim/admin/content_block_cell.rb +4 -0
- data/app/commands/decidim/admin/block_user.rb +70 -0
- data/app/commands/decidim/admin/create_import.rb +29 -0
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/create_static_page.rb +2 -1
- data/app/commands/decidim/admin/hide_resource.rb +21 -0
- data/app/commands/decidim/admin/impersonate_user.rb +17 -1
- data/app/commands/decidim/admin/promote_managed_user.rb +10 -0
- data/app/commands/decidim/admin/reorder_content_blocks.rb +6 -3
- data/app/commands/decidim/admin/transfer_user.rb +78 -0
- data/app/commands/decidim/admin/unblock_user.rb +48 -0
- data/app/commands/decidim/admin/unreport_user.rb +46 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +12 -4
- data/app/commands/decidim/admin/update_static_page.rb +2 -1
- data/app/commands/decidim/admin/verify_user_group.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +51 -0
- data/app/controllers/concerns/decidim/admin/landing_page.rb +105 -0
- data/app/controllers/concerns/decidim/admin/landing_page_content_blocks.rb +118 -0
- data/app/controllers/concerns/decidim/moderations/admin/filterable.rb +54 -0
- data/app/controllers/decidim/admin/block_user_controller.rb +60 -0
- data/app/controllers/decidim/admin/components/base_controller.rb +1 -0
- data/app/controllers/decidim/admin/conflicts_controller.rb +46 -0
- data/app/controllers/decidim/admin/exports_controller.rb +1 -2
- data/app/controllers/decidim/admin/global_moderations/reports_controller.rb +18 -0
- data/app/controllers/decidim/admin/global_moderations_controller.rb +32 -0
- data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/imports_controller.rb +52 -0
- data/app/controllers/decidim/admin/moderated_users_controller.rb +44 -0
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +39 -0
- data/app/controllers/decidim/admin/moderations_controller.rb +31 -7
- data/app/controllers/decidim/admin/officializations_controller.rb +3 -3
- data/app/controllers/decidim/admin/organization_homepage_controller.rb +6 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +7 -0
- data/app/events/decidim/resource_hidden_event.rb +37 -0
- data/app/forms/decidim/admin/block_user_form.rb +25 -0
- data/app/forms/decidim/admin/import_form.rb +85 -0
- data/app/forms/decidim/admin/organization_appearance_form.rb +1 -2
- data/app/forms/decidim/admin/static_page_form.rb +6 -1
- data/app/forms/decidim/admin/transfer_user_form.rb +19 -0
- data/app/helpers/decidim/admin/application_helper.rb +5 -4
- data/app/helpers/decidim/admin/exports_helper.rb +2 -2
- data/app/helpers/decidim/admin/filterable_helper.rb +3 -2
- data/app/helpers/decidim/admin/imports_helper.rb +43 -0
- data/app/helpers/decidim/admin/menu_helper.rb +10 -0
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +40 -0
- data/app/helpers/decidim/admin/moderations_helper.rb +36 -0
- data/app/helpers/decidim/admin/newsletters_helper.rb +4 -10
- data/app/helpers/decidim/admin/settings_helper.rb +2 -1
- data/app/helpers/decidim/admin/sidebar_menu_helper.rb +13 -0
- data/app/helpers/decidim/admin/user_moderations_helper.rb +6 -0
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +1 -1
- data/app/jobs/decidim/admin/verify_user_group_from_csv_job.rb +1 -1
- data/app/permissions/decidim/admin/permissions.rb +7 -6
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +1 -1
- data/app/presenters/decidim/admin/secondary_menu_presenter.rb +26 -0
- data/app/queries/decidim/admin/active_users_counter.rb +1 -2
- data/app/queries/decidim/admin/user_filter.rb +1 -2
- data/app/views/decidim/admin/area_types/index.html.erb +2 -2
- data/app/views/decidim/admin/areas/index.html.erb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/index.html.erb +1 -1
- data/app/views/decidim/admin/block_user/new.html.erb +22 -0
- data/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/app/views/decidim/admin/components/_component.html.erb +12 -0
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/conflicts/edit.html.erb +46 -0
- data/app/views/decidim/admin/conflicts/index.html.erb +34 -0
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -0
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/_dropdown.html.erb +9 -0
- data/app/views/decidim/admin/imports/new.html.erb +57 -0
- data/app/views/decidim/admin/moderated_users/_report.html.erb +10 -0
- data/app/views/decidim/admin/moderated_users/index.html.erb +78 -0
- data/app/views/decidim/admin/moderations/_report.html.erb +1 -1
- data/app/views/decidim/admin/moderations/index.html.erb +27 -9
- data/app/views/decidim/admin/moderations/reports/index.html.erb +102 -0
- data/app/views/decidim/admin/moderations/reports/show.html.erb +62 -0
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +3 -3
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/officializations/index.html.erb +13 -4
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +0 -4
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +1 -1
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +4 -4
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/scopes/index.html.erb +1 -1
- data/app/views/decidim/admin/shared/landing_page/edit.html.erb +47 -0
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +15 -0
- data/app/views/decidim/admin/static_pages/_form.html.erb +6 -0
- data/app/views/decidim/admin/static_pages/_topic.html.erb +3 -3
- data/app/views/decidim/admin/users/index.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +5 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/global_moderations.html.erb +7 -0
- data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
- data/app/views/layouts/decidim/admin/pages.html.erb +2 -2
- data/app/views/layouts/decidim/admin/settings.html.erb +2 -33
- data/app/views/layouts/decidim/admin/users.html.erb +11 -0
- data/config/locales/ar.yml +0 -5
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca.yml +33 -7
- data/config/locales/cs.yml +154 -9
- data/config/locales/de.yml +150 -5
- data/config/locales/el.yml +55 -5
- data/config/locales/en.yml +150 -5
- data/config/locales/es-MX.yml +42 -7
- data/config/locales/es-PY.yml +42 -7
- data/config/locales/es.yml +42 -7
- data/config/locales/eu.yml +0 -3
- data/config/locales/fi-plain.yml +148 -3
- data/config/locales/fi.yml +148 -3
- data/config/locales/fr-CA.yml +139 -4
- data/config/locales/fr.yml +139 -4
- data/config/locales/gl.yml +83 -12
- data/config/locales/hu.yml +13 -5
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +19 -3
- data/config/locales/it.yml +59 -5
- data/config/locales/ja.yml +38 -5
- data/config/locales/lv.yml +0 -5
- data/config/locales/nl.yml +110 -4
- data/config/locales/no.yml +13 -7
- data/config/locales/pl.yml +159 -14
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +121 -133
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -5
- data/config/locales/sl.yml +0 -1
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +51 -5
- data/config/locales/tr-TR.yml +81 -4
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -5
- data/config/routes.rb +21 -1
- data/lib/decidim/admin/engine.rb +76 -1
- data/lib/decidim/admin/import/creator.rb +82 -0
- data/lib/decidim/admin/import/importer.rb +82 -0
- data/lib/decidim/admin/import/importer_factory.rb +17 -0
- data/lib/decidim/admin/import/readers/base.rb +31 -0
- data/lib/decidim/admin/import/readers/csv.rb +23 -0
- data/lib/decidim/admin/import/readers/json.rb +25 -0
- data/lib/decidim/admin/import/readers/xls.rb +25 -0
- data/lib/decidim/admin/import/readers.rb +39 -0
- data/lib/decidim/admin/import.rb +12 -0
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +6 -6
- data/lib/decidim/admin/test/commands/create_category_examples.rb +6 -6
- data/lib/decidim/admin/test/filterable_examples.rb +1 -8
- data/lib/decidim/admin/test/manage_moderations_examples.rb +49 -4
- data/lib/decidim/admin/version.rb +1 -1
- data/lib/decidim/admin.rb +6 -0
- metadata +72 -16
data/config/locales/sk.yml
CHANGED
|
@@ -63,7 +63,6 @@ sk:
|
|
|
63
63
|
rich_text_editor_in_public_views: Povoliť pokročilý textový editor pre účastníkov
|
|
64
64
|
secondary_color: Sekundárne
|
|
65
65
|
send_welcome_notification: Poslať úvodné privítanie
|
|
66
|
-
show_statistics: Zobrazenie štatistík
|
|
67
66
|
success_color: Úspech
|
|
68
67
|
time_zone: Časové pásmo
|
|
69
68
|
tos_version: Verzia podmienok použitia
|
|
@@ -138,7 +137,6 @@ sk:
|
|
|
138
137
|
error: Pri odsúhlasení podmienok použitia nastala chyba.
|
|
139
138
|
success: Skvele! Odsúhlasili ste podmienky použitia pre administrátorov.
|
|
140
139
|
actions:
|
|
141
|
-
accept: Súhlasím s týmito podmienkami použitia.
|
|
142
140
|
are_you_sure: Ste si istí, že chcete odmietnuť podmienky použitia pre administrátorov?
|
|
143
141
|
refuse: "Odmietnuť podmienky použitia pre administrátorov.\n"
|
|
144
142
|
title: Súhasím s podmienkami použitia.
|
|
@@ -557,7 +555,6 @@ sk:
|
|
|
557
555
|
rich_text_editor_in_public_views_help: V niektorých textových oknách budú účastníci môcť vkladať niektoré HTML tagy pomocou pokročilého textového editoru.
|
|
558
556
|
social_handlers: Sociálne
|
|
559
557
|
twitter: Twitter
|
|
560
|
-
url: URL
|
|
561
558
|
youtube: YouTube
|
|
562
559
|
update:
|
|
563
560
|
error: Pri aktualizácii organizácie došlo k chybe.
|
|
@@ -591,7 +588,6 @@ sk:
|
|
|
591
588
|
error: Pri vymazaní súkromného používateľa pre tento participačný priestor došlo k chybe.
|
|
592
589
|
success: Participatívny priestor bol zneprístupnený súkromnému užívateľovi.
|
|
593
590
|
index:
|
|
594
|
-
import_via_csv: Import z CSV
|
|
595
591
|
title: Súkromný účastník participatívneho priestoru
|
|
596
592
|
new:
|
|
597
593
|
create: Vytvoriť
|
|
@@ -784,7 +780,6 @@ sk:
|
|
|
784
780
|
fields:
|
|
785
781
|
hidden_at: Skryté
|
|
786
782
|
report_count: Počet
|
|
787
|
-
reportable: Nahlásiteľné
|
|
788
783
|
reported_content_url: Nahlásiť URL obsahu
|
|
789
784
|
reports: Nahlásenia
|
|
790
785
|
visit_url: Navštíviť URL
|
data/config/locales/sl.yml
CHANGED
|
@@ -61,7 +61,6 @@ sl:
|
|
|
61
61
|
rich_text_editor_in_public_views: Omogoči napredni tekstovni urejevalnik za obiskovalce
|
|
62
62
|
secondary_color: Sekundarni
|
|
63
63
|
send_welcome_notification: Pošli sporočilo dobrodošlice
|
|
64
|
-
show_statistics: Pokaži statistiko
|
|
65
64
|
success_color: Uspeh
|
|
66
65
|
time_zone: Časovni pas
|
|
67
66
|
tos_version: Pogoji storitve - verzija
|
data/config/locales/sr-CS.yml
CHANGED
|
@@ -63,7 +63,6 @@ sr:
|
|
|
63
63
|
rich_text_editor_in_public_views: Omogući korisnicima uređivanje teksta sa formatiranjem
|
|
64
64
|
secondary_color: Sekundarni
|
|
65
65
|
send_welcome_notification: Pošalji obaveštenje dobrodošlice
|
|
66
|
-
show_statistics: Prikaži statistiku
|
|
67
66
|
success_color: Uspeh
|
|
68
67
|
time_zone: Vremenska zona
|
|
69
68
|
tos_version: Verzija uslova korišćenja
|
|
@@ -138,7 +137,6 @@ sr:
|
|
|
138
137
|
error: Greška u postupku prihvatanja uslova korišćenja za administratore.
|
|
139
138
|
success: Odlično! Prihvatili ste uslove korišćenja za administratore.
|
|
140
139
|
actions:
|
|
141
|
-
accept: Prihvatam uslove korišćenja za administratore
|
|
142
140
|
are_you_sure: Da li ste sigurni da ne prihvatate uslove korišćenja za administratore?
|
|
143
141
|
refuse: Ne prihvatam uslove korišćenja za administratore
|
|
144
142
|
title: Prihvatam propisane načine i uslove korišćenja
|
|
@@ -557,7 +555,6 @@ sr:
|
|
|
557
555
|
rich_text_editor_in_public_views_help: U pojedinim delovima teksta učesnici će uz pomoć programa moći da ubace HTML oznake.
|
|
558
556
|
social_handlers: Društvene
|
|
559
557
|
twitter: Twitter
|
|
560
|
-
url: URL
|
|
561
558
|
youtube: YouTube
|
|
562
559
|
update:
|
|
563
560
|
error: Pojavio se problem pri ažuriranju ove organizacije.
|
data/config/locales/sv.yml
CHANGED
|
@@ -70,7 +70,6 @@ sv:
|
|
|
70
70
|
rich_text_editor_in_public_views: Aktivera rik textredigering för deltagare
|
|
71
71
|
secondary_color: Sekundär
|
|
72
72
|
send_welcome_notification: Skicka välkomstmeddelande
|
|
73
|
-
show_statistics: Visa statistik
|
|
74
73
|
success_color: Färdigt
|
|
75
74
|
time_zone: Tidszon
|
|
76
75
|
tos_version: Version på användarvillkor
|
|
@@ -134,7 +133,13 @@ sv:
|
|
|
134
133
|
admin:
|
|
135
134
|
actions:
|
|
136
135
|
add: Lägg till
|
|
136
|
+
attachment:
|
|
137
|
+
new: Ny bifogad fil
|
|
138
|
+
attachment_collection:
|
|
139
|
+
new: Ny mapp för bilagor
|
|
137
140
|
browse: Bläddra
|
|
141
|
+
category:
|
|
142
|
+
new: Ny kategori
|
|
138
143
|
export: Exportera
|
|
139
144
|
manage: Hantera
|
|
140
145
|
new: Ny %{name}
|
|
@@ -148,7 +153,7 @@ sv:
|
|
|
148
153
|
error: Ett fel inträffade när användarvillkoren för administratörer skulle godkännas.
|
|
149
154
|
success: Du har godkänt användarvillkoren för administratörer.
|
|
150
155
|
actions:
|
|
151
|
-
accept: Jag godkänner villkoren
|
|
156
|
+
accept: Jag godkänner villkoren
|
|
152
157
|
are_you_sure: Vill du avvisa villkoren för administratörer?
|
|
153
158
|
refuse: Avvisa villkoren för administratörer
|
|
154
159
|
title: Godkänn användarvillkoren
|
|
@@ -227,6 +232,10 @@ sv:
|
|
|
227
232
|
autocomplete:
|
|
228
233
|
no_results: Hittade inga resultat
|
|
229
234
|
search_prompt: Sök genom att skriva minst tre tecken
|
|
235
|
+
block_user:
|
|
236
|
+
new:
|
|
237
|
+
justification: Motivering
|
|
238
|
+
title: Blockera användare %{name}
|
|
230
239
|
categories:
|
|
231
240
|
create:
|
|
232
241
|
error: Det gick inte att skapa kategorin.
|
|
@@ -282,6 +291,16 @@ sv:
|
|
|
282
291
|
update:
|
|
283
292
|
error: Det gick inte att uppdatera komponenten.
|
|
284
293
|
success: Komponenten har uppdaterats.
|
|
294
|
+
conflicts:
|
|
295
|
+
attempts: Försök
|
|
296
|
+
'false': 'Nej'
|
|
297
|
+
solved: Löst
|
|
298
|
+
transfer:
|
|
299
|
+
email: E-post
|
|
300
|
+
name: Namn
|
|
301
|
+
reason: Anledning
|
|
302
|
+
'true': 'Ja'
|
|
303
|
+
user_name: Användare
|
|
285
304
|
dashboard:
|
|
286
305
|
show:
|
|
287
306
|
view_more_logs: Visa fler loggar
|
|
@@ -298,6 +317,9 @@ sv:
|
|
|
298
317
|
category_id_eq:
|
|
299
318
|
label: Kategori
|
|
300
319
|
filter_label: Filtrera
|
|
320
|
+
moderations:
|
|
321
|
+
reportable_type_string_eq:
|
|
322
|
+
label: Typ
|
|
301
323
|
officialized_at_null:
|
|
302
324
|
label: Status
|
|
303
325
|
values:
|
|
@@ -318,6 +340,7 @@ sv:
|
|
|
318
340
|
search_label: Sök
|
|
319
341
|
search_placeholder:
|
|
320
342
|
name_or_nickname_or_email_cont: Sök i %{collection} efter e-post, namn eller smeknamn.
|
|
343
|
+
reported_id_string_or_reported_content_cont: Sök %{collection} efter anmälningsID eller innehåll.
|
|
321
344
|
title_cont: Sök %{collection} efter titel.
|
|
322
345
|
state_eq:
|
|
323
346
|
label: Län
|
|
@@ -479,6 +502,21 @@ sv:
|
|
|
479
502
|
does_not_belong: Hör inte hemma
|
|
480
503
|
offensive: Stötande
|
|
481
504
|
spam: Skräp
|
|
505
|
+
reports:
|
|
506
|
+
index:
|
|
507
|
+
author: Författare
|
|
508
|
+
callout_html: Ett innehåll visas i modereringspanelen när det har blivit signerat av en användare (kan vara vem som helst med ett registrerat konto) genom att klicka på %{icon} flaggan bredvid innehållet.
|
|
509
|
+
content_original_language: Innehållets originalspråk
|
|
510
|
+
participatory_space: Deltagarutrymme
|
|
511
|
+
reported_content: Rapporterat innehåll
|
|
512
|
+
see_current: Se nuvarande
|
|
513
|
+
see_original: Se original
|
|
514
|
+
title: Anmälningar
|
|
515
|
+
show:
|
|
516
|
+
report_details: Anledningsdetaljer
|
|
517
|
+
report_language: Anmälningsspråk
|
|
518
|
+
report_reason: Anledning
|
|
519
|
+
title: Anmälningsdetaljer
|
|
482
520
|
newsletter_templates:
|
|
483
521
|
index:
|
|
484
522
|
preview_template: Förhandsvisa
|
|
@@ -619,7 +657,7 @@ sv:
|
|
|
619
657
|
error: Det gick inte att ta bort en privat deltagare från deltagarutrymmet.
|
|
620
658
|
success: Åtkomsten för privat deltagare till deltagarutrymmet har tagits bort.
|
|
621
659
|
index:
|
|
622
|
-
import_via_csv: Importera via
|
|
660
|
+
import_via_csv: Importera via CSV
|
|
623
661
|
title: Privat deltagare i deltagarutrymme
|
|
624
662
|
new:
|
|
625
663
|
create: Skapa
|
|
@@ -689,7 +727,7 @@ sv:
|
|
|
689
727
|
gallery:
|
|
690
728
|
add_images: Lägg till bilder
|
|
691
729
|
delete_image: Ta bort bild
|
|
692
|
-
gallery_legend: Lägg till ett bildgalleri (
|
|
730
|
+
gallery_legend: Lägg till ett bildgalleri (valfritt)
|
|
693
731
|
static_page_topics:
|
|
694
732
|
create:
|
|
695
733
|
error: Det gick inte att skapa ett nytt ämne.
|
|
@@ -807,6 +845,7 @@ sv:
|
|
|
807
845
|
reason: Du måste ange en anledning vid hantering av en icke-hanterad användare
|
|
808
846
|
moderations:
|
|
809
847
|
actions:
|
|
848
|
+
expand: Expandera
|
|
810
849
|
hidden: Dold
|
|
811
850
|
hide: Dölj
|
|
812
851
|
not_hidden: Inte dold
|
|
@@ -827,12 +866,19 @@ sv:
|
|
|
827
866
|
models:
|
|
828
867
|
moderation:
|
|
829
868
|
fields:
|
|
869
|
+
created_at: Skapandedatum
|
|
830
870
|
hidden_at: Dold
|
|
831
871
|
report_count: Antal
|
|
832
|
-
|
|
872
|
+
reportable_id: Id
|
|
873
|
+
reportable_type: Typ
|
|
833
874
|
reported_content_url: Rapporterad innehållsadress
|
|
834
875
|
reports: Rapporter
|
|
835
876
|
visit_url: Besök URL
|
|
877
|
+
report:
|
|
878
|
+
fields:
|
|
879
|
+
details: Anledningsdetaljer
|
|
880
|
+
locale: Språk
|
|
881
|
+
reason: Anledning
|
|
836
882
|
errors:
|
|
837
883
|
messages:
|
|
838
884
|
invalid_json: Ogiltig JSON
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -70,7 +70,6 @@ tr:
|
|
|
70
70
|
rich_text_editor_in_public_views: Katılımcılar için zengin metin düzenleyiciyi etkinleştirin
|
|
71
71
|
secondary_color: İkincil
|
|
72
72
|
send_welcome_notification: Karşılama bildirimi gönder
|
|
73
|
-
show_statistics: İstatistikleri göster
|
|
74
73
|
success_color: başarı
|
|
75
74
|
time_zone: Zaman Dilimi
|
|
76
75
|
tos_version: Hizmet sürümü şartları
|
|
@@ -94,6 +93,7 @@ tr:
|
|
|
94
93
|
settings:
|
|
95
94
|
scope_id: Kapsam
|
|
96
95
|
static_page:
|
|
96
|
+
allow_public_access: Kimlik doğrulama olmadan erişime izin ver
|
|
97
97
|
changed_notably: Gözle görülür değişiklikler oldu.
|
|
98
98
|
content: içerik
|
|
99
99
|
organization: organizasyon
|
|
@@ -148,7 +148,7 @@ tr:
|
|
|
148
148
|
error: Yönetici kullanım şartlarını kabul ederken bir hata oluştu.
|
|
149
149
|
success: Harika! Yönetici kullanım şartlarını kabul ettiniz.
|
|
150
150
|
actions:
|
|
151
|
-
accept:
|
|
151
|
+
accept: Aşağıdaki şartları kabul ediyorum
|
|
152
152
|
are_you_sure: Yönetici şartlarını reddettiğinizden emin misiniz?
|
|
153
153
|
refuse: Yönetici şartlarını reddedin
|
|
154
154
|
title: Kullanım şartlarını ve koşullarını kabul edin
|
|
@@ -227,6 +227,12 @@ tr:
|
|
|
227
227
|
autocomplete:
|
|
228
228
|
no_results: Sonuç bulunamadı
|
|
229
229
|
search_prompt: Aramak için en az üç karakter girin
|
|
230
|
+
block_user:
|
|
231
|
+
new:
|
|
232
|
+
action: Hesabı engelle ve uyarı mesjı gönder
|
|
233
|
+
description: Bir kullanıcının engellenmesi, hesabının kullanılamaz hale gelmesine neden olur, gerekçenizde ve kullanıcının engellemesini kaldırmayı düşündüğünüz yollarla ilgili yönergeler sağlayabilirsiniz.
|
|
234
|
+
justification: Gerekçe
|
|
235
|
+
title: '%{name} Kullanıcısını Engelle'
|
|
230
236
|
categories:
|
|
231
237
|
create:
|
|
232
238
|
error: Bu kategori oluşturulurken bir hata oluştu.
|
|
@@ -282,6 +288,21 @@ tr:
|
|
|
282
288
|
update:
|
|
283
289
|
error: Bu bileşeni güncellerken bir hata oluştu.
|
|
284
290
|
success: Bileşen başarıyla güncellendi.
|
|
291
|
+
conflicts:
|
|
292
|
+
attempts: Girişimler
|
|
293
|
+
'false': 'Hayır'
|
|
294
|
+
managed_user_name: Yönetilen Kullanıcı
|
|
295
|
+
solved: Çözüldü
|
|
296
|
+
title: Doğrulamaların çatışmaları
|
|
297
|
+
transfer:
|
|
298
|
+
email: E-Posta
|
|
299
|
+
error: Mevcut katılımcıyı yönetilen katılımcıya aktarırken bir sorun oluştu.
|
|
300
|
+
name: İsim
|
|
301
|
+
reason: Nedeni
|
|
302
|
+
success: Aktarım başarıyla tamamlandı.
|
|
303
|
+
title: Aktar
|
|
304
|
+
'true': 'Evet'
|
|
305
|
+
user_name: Kullanıcı Adı
|
|
285
306
|
dashboard:
|
|
286
307
|
show:
|
|
287
308
|
view_more_logs: Daha fazla günlükleri görüntüle
|
|
@@ -298,6 +319,9 @@ tr:
|
|
|
298
319
|
category_id_eq:
|
|
299
320
|
label: Kategori
|
|
300
321
|
filter_label: Filtrele
|
|
322
|
+
moderations:
|
|
323
|
+
reportable_type_string_eq:
|
|
324
|
+
label: Türü
|
|
301
325
|
officialized_at_null:
|
|
302
326
|
label: Belirtmek, bildirmek
|
|
303
327
|
values:
|
|
@@ -318,6 +342,7 @@ tr:
|
|
|
318
342
|
search_label: Arama
|
|
319
343
|
search_placeholder:
|
|
320
344
|
name_or_nickname_or_email_cont: '%{collection} e-posta, isim veya takma ad ile arayın.'
|
|
345
|
+
reported_id_string_or_reported_content_cont: '%{collection} ''ı rapor edilebilir kimlik veya içeriğe göre arayın.'
|
|
321
346
|
title_cont: Başlığa göre %{collection} ara.
|
|
322
347
|
state_eq:
|
|
323
348
|
label: Durum
|
|
@@ -382,8 +407,10 @@ tr:
|
|
|
382
407
|
help_sections: Yardım bölümleri
|
|
383
408
|
homepage: Anasayfa
|
|
384
409
|
impersonations: impersonations
|
|
410
|
+
moderation: Küresel denetimler
|
|
385
411
|
newsletters: Haber bültenleri
|
|
386
412
|
participants: Katılımcılar
|
|
413
|
+
reported_users: Raporlanan Kullanıcı
|
|
387
414
|
scope_types: Kapsam türleri
|
|
388
415
|
scopes: kapsamları
|
|
389
416
|
settings: Ayarlar
|
|
@@ -471,6 +498,20 @@ tr:
|
|
|
471
498
|
phone: Telefon
|
|
472
499
|
state: Belirtmek, bildirmek
|
|
473
500
|
users_count: Kullanıcılar
|
|
501
|
+
moderated_users:
|
|
502
|
+
index:
|
|
503
|
+
actions:
|
|
504
|
+
title: Eylemler
|
|
505
|
+
unreport: Bildirilmedi
|
|
506
|
+
name: Adı
|
|
507
|
+
nickname: Rumuz
|
|
508
|
+
reason: Nedeni
|
|
509
|
+
title: Bildirilen kullanıcılar listesi
|
|
510
|
+
report:
|
|
511
|
+
reasons:
|
|
512
|
+
does_not_belong: Ait değil
|
|
513
|
+
offensive: Saldırgan
|
|
514
|
+
spam: İstenmeyen
|
|
474
515
|
moderations:
|
|
475
516
|
index:
|
|
476
517
|
title: Denetimler
|
|
@@ -479,6 +520,21 @@ tr:
|
|
|
479
520
|
does_not_belong: Ait değil
|
|
480
521
|
offensive: saldırgan
|
|
481
522
|
spam: İstenmeyen e
|
|
523
|
+
reports:
|
|
524
|
+
index:
|
|
525
|
+
author: Yazar(lar)
|
|
526
|
+
callout_html: Bir kullanıcı tarafından (kayıtlı hesabı olan herhangi biri olabilir) öğenin yanındaki %{icon} bayrağına tıklanarak bildirildiğinde, denetim panelinde bir içerik görünür.
|
|
527
|
+
content_original_language: İçerik orijinal dili
|
|
528
|
+
participatory_space: Katılımcı süreç
|
|
529
|
+
reported_content: Şikayet Edilmiş İçerik
|
|
530
|
+
see_current: Şu ankini gör
|
|
531
|
+
see_original: Orijinali gör
|
|
532
|
+
title: Moderatör raporları
|
|
533
|
+
show:
|
|
534
|
+
report_details: Nedenin ayrıntıları
|
|
535
|
+
report_language: Rapor dili
|
|
536
|
+
report_reason: Nedeni
|
|
537
|
+
title: Rapor ayrıntıları
|
|
482
538
|
newsletter_templates:
|
|
483
539
|
index:
|
|
484
540
|
preview_template: Ön izleme
|
|
@@ -544,6 +600,9 @@ tr:
|
|
|
544
600
|
error: Bu bülteni güncellerken bir hata oluştu.
|
|
545
601
|
success: Bülten başarıyla güncellendi. Lütfen göndermeden önce gözden geçirin.
|
|
546
602
|
officializations:
|
|
603
|
+
block:
|
|
604
|
+
error: Katılımcıyı engellerken bir hata oluştu
|
|
605
|
+
success: Katılımcı başarıyla engellendi
|
|
547
606
|
create:
|
|
548
607
|
success: Kullanıcı başarıyla onaylandı
|
|
549
608
|
destroy:
|
|
@@ -551,6 +610,7 @@ tr:
|
|
|
551
610
|
index:
|
|
552
611
|
actions: Eylemler
|
|
553
612
|
badge: rozet
|
|
613
|
+
block: Kullanıcıyı Engelle
|
|
554
614
|
created_at: At düzenlendi
|
|
555
615
|
name: isim
|
|
556
616
|
nickname: Takma ad
|
|
@@ -558,8 +618,10 @@ tr:
|
|
|
558
618
|
officialize: ', resmiyete'
|
|
559
619
|
officialized: resmileştirilmiş
|
|
560
620
|
reofficialize: Reofficialize
|
|
621
|
+
reports: Raporlar
|
|
561
622
|
show_email: E-posta adresini göster
|
|
562
623
|
status: durum
|
|
624
|
+
unblock: Kullanıcının Engelini Kaldır
|
|
563
625
|
unofficialize: Unofficialize
|
|
564
626
|
new:
|
|
565
627
|
badge: Resmi görevlendirme rozeti
|
|
@@ -573,6 +635,9 @@ tr:
|
|
|
573
635
|
hidden: saklı
|
|
574
636
|
show: Göster
|
|
575
637
|
title: Katılımcı e-posta adresini göster
|
|
638
|
+
unblock:
|
|
639
|
+
error: Katılımcıyı engellerken bir hata oluştu
|
|
640
|
+
success: Katılımcı başarıyla engellendi
|
|
576
641
|
organization:
|
|
577
642
|
edit:
|
|
578
643
|
title: Kuruluş düzenle
|
|
@@ -619,7 +684,7 @@ tr:
|
|
|
619
684
|
error: Bu katılımcı alan için özel bir kullanıcı silinirken bir hata oluştu.
|
|
620
685
|
success: Katılımcı alan özel kullanıcı erişimi başarıyla yok edildi.
|
|
621
686
|
index:
|
|
622
|
-
import_via_csv:
|
|
687
|
+
import_via_csv: CSV'den içe aktar
|
|
623
688
|
title: Katılımcı alan özel kullanıcısı
|
|
624
689
|
new:
|
|
625
690
|
create: yaratmak
|
|
@@ -742,6 +807,7 @@ tr:
|
|
|
742
807
|
impersonatable_users: Yönetilebilir kullanıcılar
|
|
743
808
|
impersonations: Kullanıcılar yönetimi
|
|
744
809
|
metrics: Metrik
|
|
810
|
+
panel: Yönetici
|
|
745
811
|
participants: Kullanıcılar
|
|
746
812
|
scope_types: Kapsam türleri
|
|
747
813
|
scopes: kapsamları
|
|
@@ -807,6 +873,7 @@ tr:
|
|
|
807
873
|
reason: Yönetilmeyen bir kullanıcıyı taklit ederken bir neden belirtmeniz gerekir
|
|
808
874
|
moderations:
|
|
809
875
|
actions:
|
|
876
|
+
expand: Genişlet
|
|
810
877
|
hidden: Gizli
|
|
811
878
|
hide: Saklamak
|
|
812
879
|
not_hidden: Gizli değil
|
|
@@ -827,18 +894,28 @@ tr:
|
|
|
827
894
|
models:
|
|
828
895
|
moderation:
|
|
829
896
|
fields:
|
|
897
|
+
created_at: Oluşturulma tarihi
|
|
830
898
|
hidden_at: Gizli
|
|
899
|
+
participatory_space: Katılımcı alanı
|
|
831
900
|
report_count: saymak
|
|
832
|
-
|
|
901
|
+
reportable_id: Id
|
|
902
|
+
reportable_type: Türü
|
|
833
903
|
reported_content_url: Raporlanan içerik URL'si
|
|
834
904
|
reports: Raporlar
|
|
835
905
|
visit_url: URL'yi ziyaret et
|
|
906
|
+
report:
|
|
907
|
+
fields:
|
|
908
|
+
details: Nedenin ayrıntıları
|
|
909
|
+
locale: Dil
|
|
910
|
+
reason: Nedeni
|
|
836
911
|
errors:
|
|
837
912
|
messages:
|
|
838
913
|
invalid_json: Geçersiz JSON
|
|
839
914
|
layouts:
|
|
840
915
|
decidim:
|
|
841
916
|
admin:
|
|
917
|
+
global_moderations:
|
|
918
|
+
title: Küresel denetimler
|
|
842
919
|
newsletters:
|
|
843
920
|
title: Haber bültenleri
|
|
844
921
|
settings:
|
data/config/locales/uk.yml
CHANGED
|
@@ -55,7 +55,6 @@ uk:
|
|
|
55
55
|
omnipresent_banner_title: Заголовок
|
|
56
56
|
omnipresent_banner_url: Веб-адреса
|
|
57
57
|
reference_prefix: Довідковий префікс
|
|
58
|
-
show_statistics: Показувати статистику
|
|
59
58
|
tos_version: Версія умов участі
|
|
60
59
|
twitter_handler: Адреса Twitter
|
|
61
60
|
youtube_handler: Адреса YouTube
|
|
@@ -440,7 +439,6 @@ uk:
|
|
|
440
439
|
instagram: Інстаграм
|
|
441
440
|
social_handlers: Соціальні мережі
|
|
442
441
|
twitter: Твіттер
|
|
443
|
-
url: Веб-адреса
|
|
444
442
|
youtube: ЮТуб
|
|
445
443
|
update:
|
|
446
444
|
error: При спробі оновити цю організацію сталася помилка.
|
|
@@ -598,7 +596,6 @@ uk:
|
|
|
598
596
|
fields:
|
|
599
597
|
hidden_at: 'Приховано:'
|
|
600
598
|
report_count: Кількість
|
|
601
|
-
reportable: Різновид скарги
|
|
602
599
|
reported_content_url: Веб-адреса оскарженого вмісту
|
|
603
600
|
reports: Скарги
|
|
604
601
|
visit_url: Відвідайте веб-адресу
|
data/config/locales/zh-CN.yml
CHANGED
|
@@ -70,7 +70,6 @@ zh-CN:
|
|
|
70
70
|
rich_text_editor_in_public_views: 为参与者启用富文本编辑器
|
|
71
71
|
secondary_color: 次要文件
|
|
72
72
|
send_welcome_notification: 发送欢迎通知
|
|
73
|
-
show_statistics: 显示统计
|
|
74
73
|
success_color: 成功
|
|
75
74
|
time_zone: 时区
|
|
76
75
|
tos_version: 服务条款版本
|
|
@@ -146,7 +145,6 @@ zh-CN:
|
|
|
146
145
|
error: 接受管理员使用条款时出错。
|
|
147
146
|
success: 太棒了!您已经接受了管理员使用条款。
|
|
148
147
|
actions:
|
|
149
|
-
accept: 我同意这个管理条款
|
|
150
148
|
are_you_sure: 您确定要拒绝管理员条款吗?
|
|
151
149
|
refuse: 拒绝管理条款
|
|
152
150
|
title: 同意使用条款
|
|
@@ -582,7 +580,6 @@ zh-CN:
|
|
|
582
580
|
rich_text_editor_in_public_views_help: 在某些文本领域,参与者将能够通过使用丰富的文本编辑器插入一些HTML标签。
|
|
583
581
|
social_handlers: 社交活动
|
|
584
582
|
twitter: 推特
|
|
585
|
-
url: 网址
|
|
586
583
|
youtube: YouTube
|
|
587
584
|
update:
|
|
588
585
|
error: 更新这个组织时出现问题。
|
|
@@ -617,7 +614,6 @@ zh-CN:
|
|
|
617
614
|
error: 删除这个参与空间的私人参与者时出错。
|
|
618
615
|
success: 参与性空间私人参与者访问成功被摧毁。
|
|
619
616
|
index:
|
|
620
|
-
import_via_csv: 通过 csv 导入
|
|
621
617
|
title: 参与性空间私人参与者
|
|
622
618
|
new:
|
|
623
619
|
create: 创建
|
|
@@ -827,7 +823,6 @@ zh-CN:
|
|
|
827
823
|
fields:
|
|
828
824
|
hidden_at: 隐藏于
|
|
829
825
|
report_count: 计数
|
|
830
|
-
reportable: 可重写
|
|
831
826
|
reported_content_url: 报告的内容 URL
|
|
832
827
|
reports: 报告
|
|
833
828
|
visit_url: 访问 URL
|
data/config/routes.rb
CHANGED
|
@@ -38,10 +38,19 @@ Decidim::Admin::Engine.routes.draw do
|
|
|
38
38
|
member do
|
|
39
39
|
post :resend_invitation, to: "users#resend_invitation"
|
|
40
40
|
end
|
|
41
|
+
resource :block, only: [:new, :create, :destroy], controller: :block_user
|
|
41
42
|
end
|
|
42
43
|
|
|
43
44
|
resources :officializations, only: [:new, :create, :index, :destroy], param: :user_id do
|
|
44
|
-
|
|
45
|
+
member do
|
|
46
|
+
get :show_email
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
resources :moderated_users, only: [:index] do
|
|
51
|
+
member do
|
|
52
|
+
put :ignore
|
|
53
|
+
end
|
|
45
54
|
end
|
|
46
55
|
|
|
47
56
|
resources :impersonatable_users, only: [:index] do
|
|
@@ -90,6 +99,17 @@ Decidim::Admin::Engine.routes.draw do
|
|
|
90
99
|
|
|
91
100
|
resources :share_tokens, only: :destroy
|
|
92
101
|
|
|
102
|
+
resources :moderations, controller: "global_moderations" do
|
|
103
|
+
member do
|
|
104
|
+
put :unreport
|
|
105
|
+
put :hide
|
|
106
|
+
put :unhide
|
|
107
|
+
end
|
|
108
|
+
resources :reports, controller: "global_moderations/reports", only: [:index, :show]
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
resources :conflicts, only: [:index, :edit, :update], controller: "conflicts"
|
|
112
|
+
|
|
93
113
|
root to: "dashboard#show"
|
|
94
114
|
end
|
|
95
115
|
end
|
data/lib/decidim/admin/engine.rb
CHANGED
|
@@ -32,6 +32,70 @@ module Decidim
|
|
|
32
32
|
app.config.assets.precompile += %w(decidim_admin_manifest.js)
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
+
initializer "decidim_admin.global_moderation_menu" do
|
|
36
|
+
Decidim.menu :admin_global_moderation_menu do |menu|
|
|
37
|
+
menu.item I18n.t("actions.not_hidden", scope: "decidim.moderations"),
|
|
38
|
+
decidim_admin.moderations_path,
|
|
39
|
+
position: 1,
|
|
40
|
+
active: params[:hidden].blank?
|
|
41
|
+
|
|
42
|
+
menu.item I18n.t("actions.hidden", scope: "decidim.moderations"),
|
|
43
|
+
decidim_admin.moderations_path(hidden: true),
|
|
44
|
+
position: 2,
|
|
45
|
+
active: params[:hidden].present?
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
initializer "decidim_admin.admin_settings_menu" do
|
|
50
|
+
Decidim.menu :admin_settings_menu do |menu|
|
|
51
|
+
menu.item I18n.t("menu.configuration", scope: "decidim.admin"),
|
|
52
|
+
decidim_admin.edit_organization_path,
|
|
53
|
+
position: 1.0,
|
|
54
|
+
if: allowed_to?(:update, :organization, organization: current_organization),
|
|
55
|
+
active: is_active_link?(decidim_admin.edit_organization_path)
|
|
56
|
+
|
|
57
|
+
menu.item I18n.t("menu.appearance", scope: "decidim.admin"),
|
|
58
|
+
decidim_admin.edit_organization_appearance_path,
|
|
59
|
+
position: 1.1,
|
|
60
|
+
if: allowed_to?(:update, :organization, organization: current_organization),
|
|
61
|
+
active: is_active_link?(decidim_admin.edit_organization_appearance_path)
|
|
62
|
+
|
|
63
|
+
menu.item I18n.t("menu.homepage", scope: "decidim.admin"),
|
|
64
|
+
decidim_admin.edit_organization_homepage_path,
|
|
65
|
+
position: 1.2,
|
|
66
|
+
if: allowed_to?(:update, :organization, organization: current_organization),
|
|
67
|
+
active: is_active_link?(decidim_admin.edit_organization_homepage_path, %r{^/admin/organization/homepage})
|
|
68
|
+
|
|
69
|
+
menu.item I18n.t("menu.scopes", scope: "decidim.admin"),
|
|
70
|
+
decidim_admin.scopes_path,
|
|
71
|
+
position: 1.3,
|
|
72
|
+
if: allowed_to?(:read, :scope),
|
|
73
|
+
active: is_active_link?(decidim_admin.scopes_path)
|
|
74
|
+
menu.item I18n.t("menu.scope_types", scope: "decidim.admin"),
|
|
75
|
+
decidim_admin.scope_types_path,
|
|
76
|
+
position: 1.4,
|
|
77
|
+
if: allowed_to?(:read, :scope_type),
|
|
78
|
+
active: is_active_link?(decidim_admin.scope_types_path)
|
|
79
|
+
menu.item I18n.t("menu.areas", scope: "decidim.admin"),
|
|
80
|
+
decidim_admin.areas_path,
|
|
81
|
+
position: 1.5,
|
|
82
|
+
if: allowed_to?(:read, :area),
|
|
83
|
+
active: is_active_link?(decidim_admin.areas_path)
|
|
84
|
+
|
|
85
|
+
menu.item I18n.t("menu.area_types", scope: "decidim.admin"),
|
|
86
|
+
decidim_admin.area_types_path,
|
|
87
|
+
position: 1.6,
|
|
88
|
+
if: allowed_to?(:read, :area_type),
|
|
89
|
+
active: is_active_link?(decidim_admin.area_types_path)
|
|
90
|
+
|
|
91
|
+
menu.item I18n.t("menu.help_sections", scope: "decidim.admin"),
|
|
92
|
+
decidim_admin.help_sections_path,
|
|
93
|
+
position: 1.6,
|
|
94
|
+
if: allowed_to?(:update, :help_sections),
|
|
95
|
+
active: is_active_link?(decidim_admin.help_sections_path)
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
35
99
|
initializer "decidim_admin.menu" do
|
|
36
100
|
Decidim.menu :admin_menu do |menu|
|
|
37
101
|
menu.item I18n.t("menu.dashboard", scope: "decidim.admin"),
|
|
@@ -40,10 +104,20 @@ module Decidim
|
|
|
40
104
|
position: 1,
|
|
41
105
|
active: ["decidim/admin/dashboard" => :show]
|
|
42
106
|
|
|
107
|
+
menu.item I18n.t("menu.moderation", scope: "decidim.admin"),
|
|
108
|
+
decidim_admin.moderations_path,
|
|
109
|
+
icon_name: "flag",
|
|
110
|
+
position: 4,
|
|
111
|
+
active: [%w(
|
|
112
|
+
decidim/admin/global_moderations
|
|
113
|
+
decidim/admin/global_moderations/reports
|
|
114
|
+
), []],
|
|
115
|
+
if: allowed_to?(:read, :global_moderation)
|
|
116
|
+
|
|
43
117
|
menu.item I18n.t("menu.static_pages", scope: "decidim.admin"),
|
|
44
118
|
decidim_admin.static_pages_path,
|
|
45
119
|
icon_name: "book",
|
|
46
|
-
position: 4,
|
|
120
|
+
position: 4.5,
|
|
47
121
|
active: [%w(
|
|
48
122
|
decidim/admin/static_pages
|
|
49
123
|
decidim/admin/static_page_topics
|
|
@@ -60,6 +134,7 @@ module Decidim
|
|
|
60
134
|
decidim/admin/user_groups_csv_verifications
|
|
61
135
|
decidim/admin/officializations
|
|
62
136
|
decidim/admin/impersonatable_users
|
|
137
|
+
decidim/admin/moderated_users
|
|
63
138
|
decidim/admin/managed_users/impersonation_logs
|
|
64
139
|
decidim/admin/managed_users/promotions
|
|
65
140
|
decidim/admin/authorization_workflows
|