decidim-admin 0.23.5 → 0.24.2
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.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_admin_manifest.js +1 -0
- data/app/assets/javascripts/decidim/admin/application.js.es6 +4 -1
- 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/subform_multi_toggler.component.js.es6 +2 -2
- data/app/assets/javascripts/decidim/admin/subform_toggler.component.js.es6 +2 -2
- 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 +47 -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/admin_terms_helper.rb +0 -7
- 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/admin_terms/show.html.erb +1 -1
- 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/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 +2 -1
- 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 +28 -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 +6 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +26 -0
- 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 +150 -4
- data/config/locales/cs.yml +151 -5
- data/config/locales/de.yml +150 -5
- data/config/locales/el.yml +55 -5
- data/config/locales/en.yml +151 -5
- data/config/locales/es-MX.yml +149 -3
- data/config/locales/es-PY.yml +149 -3
- data/config/locales/es.yml +149 -3
- data/config/locales/eu.yml +0 -3
- data/config/locales/fi-plain.yml +149 -3
- data/config/locales/fi.yml +149 -3
- data/config/locales/fr-CA.yml +146 -4
- data/config/locales/fr.yml +146 -4
- data/config/locales/gl.yml +120 -5
- 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 +59 -5
- data/config/locales/lv.yml +0 -5
- data/config/locales/nl.yml +113 -4
- data/config/locales/no.yml +11 -5
- data/config/locales/pl.yml +150 -5
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +102 -5
- 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 +149 -4
- 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.rb +6 -0
- data/lib/decidim/admin/engine.rb +76 -1
- data/lib/decidim/admin/import.rb +12 -0
- 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.rb +39 -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/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 +68 -4
- data/lib/decidim/admin/version.rb +1 -1
- metadata +71 -15
- data/app/assets/javascripts/decidim/admin/gallery.js.es6 +0 -5
data/config/locales/hu.yml
CHANGED
@@ -70,7 +70,6 @@ hu:
|
|
70
70
|
rich_text_editor_in_public_views: A résztvevők számára a szövegszerkesztő felület engedélyezése
|
71
71
|
secondary_color: Másodlagos
|
72
72
|
send_welcome_notification: Üdvözlő értesítés küldése
|
73
|
-
show_statistics: Statisztikák megjelenítése
|
74
73
|
success_color: Siker
|
75
74
|
time_zone: Időzóna
|
76
75
|
tos_version: Használati feltételek
|
@@ -145,7 +144,6 @@ hu:
|
|
145
144
|
error: Hiba történt az adminra vonatkozó általános szerződési feltételek elfogadása során.
|
146
145
|
success: Nagyszerű! Elfogadtad az admin felhasználási feltételeket.
|
147
146
|
actions:
|
148
|
-
accept: Elfogadom ezeket az admin feltételeket
|
149
147
|
are_you_sure: Biztosan visszautasítod az admin feltételek elfogadását?
|
150
148
|
refuse: Admin feltételek elutasítása
|
151
149
|
title: Elfogadom a felhasználási feltételeket
|
@@ -278,6 +276,19 @@ hu:
|
|
278
276
|
update:
|
279
277
|
error: Hiba történt az elem frissítése során.
|
280
278
|
success: Az elem frissítése sikeres volt.
|
279
|
+
conflicts:
|
280
|
+
attempts: Próbálkozások
|
281
|
+
'false': 'Nincs'
|
282
|
+
managed_user_name: Kezelt felhasználó
|
283
|
+
solved: Megoldva
|
284
|
+
transfer:
|
285
|
+
email: Email
|
286
|
+
error: Hiba történt a jelenlegi résztvevő kezelt résztvevővé transzferálása során.
|
287
|
+
name: Név
|
288
|
+
reason: Ok
|
289
|
+
title: Átvezetés
|
290
|
+
'true': 'Igen'
|
291
|
+
user_name: Felhasználó
|
281
292
|
dashboard:
|
282
293
|
show:
|
283
294
|
view_more_logs: További naplók megtekintése
|
@@ -572,7 +583,6 @@ hu:
|
|
572
583
|
rich_text_editor_in_public_views_help: Néhány szövegmezőbe, a résztvevők HTML tag-eket tudnak majd beilleszteni a szövegszerkesztő segítségével.
|
573
584
|
social_handlers: Social
|
574
585
|
twitter: Twitter
|
575
|
-
url: Url
|
576
586
|
youtube: Youtube
|
577
587
|
update:
|
578
588
|
error: Hiba történt a szervezet frissítése során.
|
@@ -607,7 +617,6 @@ hu:
|
|
607
617
|
error: Hiba történt egy privát felhasználó törlésével a részvételi helyen.
|
608
618
|
success: Privát felhasználó részvételi helyhez való hozzáférése törölve.
|
609
619
|
index:
|
610
|
-
import_via_csv: Importálás CSV -ből
|
611
620
|
title: Részvételi tér privát felhasználója
|
612
621
|
new:
|
613
622
|
create: Létrehozás
|
@@ -800,7 +809,6 @@ hu:
|
|
800
809
|
fields:
|
801
810
|
hidden_at: 'Rejtett itt:'
|
802
811
|
report_count: Számol
|
803
|
-
reportable: Kimutatható
|
804
812
|
reported_content_url: Jelentett URL tartalom
|
805
813
|
reports: Jelentések
|
806
814
|
visit_url: URL meglátogatása
|
data/config/locales/id-ID.yml
CHANGED
@@ -59,7 +59,6 @@ id:
|
|
59
59
|
primary_color: Utama
|
60
60
|
reference_prefix: Awalan referensi
|
61
61
|
secondary_color: Sekunder
|
62
|
-
show_statistics: Tampilkan statistik
|
63
62
|
success_color: Keberhasilan
|
64
63
|
tos_version: Versi persyaratan layanan
|
65
64
|
twitter_handler: Penangan Twitter
|
@@ -471,7 +470,6 @@ id:
|
|
471
470
|
instagram: Instagram
|
472
471
|
social_handlers: Sosial
|
473
472
|
twitter: Kericau
|
474
|
-
url: Url
|
475
473
|
youtube: Youtube
|
476
474
|
update:
|
477
475
|
error: Terjadi kesalahan saat memperbarui organisasi ini.
|
@@ -678,7 +676,6 @@ id:
|
|
678
676
|
fields:
|
679
677
|
hidden_at: Tersembunyi di
|
680
678
|
report_count: Menghitung
|
681
|
-
reportable: Dapat dilaporkan
|
682
679
|
reported_content_url: URL konten yang dilaporkan
|
683
680
|
reports: Laporan
|
684
681
|
visit_url: Kunjungi URL
|
data/config/locales/is-IS.yml
CHANGED
@@ -31,6 +31,7 @@ is-IS:
|
|
31
31
|
subject: Efni
|
32
32
|
organization:
|
33
33
|
alert_color: Viðvörun
|
34
|
+
available_authorizations: Möguleg auðkenni
|
34
35
|
badges_enabled: Virkja merki
|
35
36
|
cta_button_path: Hringja til aðgerða hnappaslóð
|
36
37
|
cta_button_text: Hringja í aðgerð hnappinn texta
|
@@ -39,6 +40,8 @@ is-IS:
|
|
39
40
|
enable_omnipresent_banner: Sýna algengasta borði
|
40
41
|
facebook_handler: Facebook handler
|
41
42
|
favicon: Táknmynd
|
43
|
+
force_authentication: Þvinga auðkenningu
|
44
|
+
force_users_to_authenticate_before_access_organization: Þvinga notendur í að auðkenna, áður en þeir komast í samtök
|
42
45
|
from: Netfang sendanda
|
43
46
|
github_handler: GitHub handler
|
44
47
|
header_snippets: Header brot
|
@@ -49,6 +52,7 @@ is-IS:
|
|
49
52
|
highlighted_content_banner_image: Mynd
|
50
53
|
highlighted_content_banner_short_description: Stutt lýsing
|
51
54
|
highlighted_content_banner_title: Titill
|
55
|
+
host: Gestgjafi
|
52
56
|
instagram_handler: Instagram handler
|
53
57
|
logo: Merki
|
54
58
|
name: Nafn
|
@@ -61,7 +65,6 @@ is-IS:
|
|
61
65
|
primary_color: Aðal
|
62
66
|
reference_prefix: Tilvísunarnúmer
|
63
67
|
secondary_color: Til vara
|
64
|
-
show_statistics: Sýna tölfræði
|
65
68
|
success_color: Tókst
|
66
69
|
time_zone: Tímabelti
|
67
70
|
twitter_handler: Twitter handler
|
@@ -103,6 +106,10 @@ is-IS:
|
|
103
106
|
allowed_file_content_types: Vitlaus myndskrá
|
104
107
|
official_img_header:
|
105
108
|
allowed_file_content_types: Vitlaus myndskrá
|
109
|
+
new_import:
|
110
|
+
attributes:
|
111
|
+
file:
|
112
|
+
invalid_mime_type: Vitlaus Mime týpa
|
106
113
|
activerecord:
|
107
114
|
attributes:
|
108
115
|
decidim/static_page:
|
@@ -121,14 +128,25 @@ is-IS:
|
|
121
128
|
admin:
|
122
129
|
actions:
|
123
130
|
add: Bæta við
|
131
|
+
attachment:
|
132
|
+
new: Nýtt viðhengi
|
133
|
+
attachment_collection:
|
134
|
+
new: Nýtt viðhengissafn
|
124
135
|
browse: Skoða
|
136
|
+
category:
|
137
|
+
new: Nýr flokkur
|
125
138
|
export: Útflutningur
|
139
|
+
import: Flytja inn
|
126
140
|
manage: Stjórna
|
127
141
|
new: Nýtt %{name}
|
142
|
+
newsletter:
|
143
|
+
new: Nýtt fréttabréf
|
128
144
|
per_page: Á hveri síðu
|
129
145
|
permissions: Heimildir
|
130
146
|
reject: Hafna
|
131
147
|
share: Deila
|
148
|
+
user:
|
149
|
+
new: Nýr notandi
|
132
150
|
verify: Staðfestu
|
133
151
|
area_types:
|
134
152
|
create:
|
@@ -419,7 +437,6 @@ is-IS:
|
|
419
437
|
instagram: Instagram
|
420
438
|
social_handlers: Félagsleg
|
421
439
|
twitter: Twitter
|
422
|
-
url: Url
|
423
440
|
youtube: Youtube
|
424
441
|
update:
|
425
442
|
success: Skipulag uppfærður með góðum árangri.
|
@@ -532,7 +549,6 @@ is-IS:
|
|
532
549
|
fields:
|
533
550
|
hidden_at: Falinn á
|
534
551
|
report_count: Telja
|
535
|
-
reportable: Tilkynnt
|
536
552
|
reported_content_url: Tilkynnt efni vefslóð
|
537
553
|
reports: Skýrslur
|
538
554
|
visit_url: Heimsókn vefslóð
|
data/config/locales/it.yml
CHANGED
@@ -70,7 +70,6 @@ it:
|
|
70
70
|
rich_text_editor_in_public_views: Abilita l'editor di testo esteso per i partecipanti
|
71
71
|
secondary_color: Secondario
|
72
72
|
send_welcome_notification: Invia notifica di benvenuto
|
73
|
-
show_statistics: Mostra statistiche
|
74
73
|
success_color: Successo
|
75
74
|
time_zone: Fuso Orario
|
76
75
|
tos_version: Termini di versione del servizio
|
@@ -94,6 +93,7 @@ it:
|
|
94
93
|
settings:
|
95
94
|
scope_id: Obiettivi
|
96
95
|
static_page:
|
96
|
+
allow_public_access: Consenti l'accesso senza autenticazione
|
97
97
|
changed_notably: Ci sono stati cambiamenti evidenti.
|
98
98
|
content: Contenuto
|
99
99
|
organization: Organizzazione
|
@@ -134,21 +134,33 @@ it:
|
|
134
134
|
admin:
|
135
135
|
actions:
|
136
136
|
add: Aggiungi
|
137
|
+
attachment:
|
138
|
+
new: Nuovo allegato
|
139
|
+
attachment_collection:
|
140
|
+
new: Nuova collezione di allegati
|
137
141
|
browse: Naviga
|
142
|
+
category:
|
143
|
+
new: Nuova categoria
|
138
144
|
export: Esporta
|
139
145
|
manage: Gestisci
|
140
146
|
new: Nuovo %{name}
|
147
|
+
newsletter:
|
148
|
+
new: Nuova newsletter
|
149
|
+
participatory_space_private_user:
|
150
|
+
new: Nuovo utente dello spazio partecipativo privato
|
141
151
|
per_page: Per pagina
|
142
152
|
permissions: Permessi
|
143
153
|
reject: Rifiuta
|
144
154
|
share: Condividi
|
155
|
+
user:
|
156
|
+
new: Nuovo utente
|
145
157
|
verify: Verifica
|
146
158
|
admin_terms_of_use:
|
147
159
|
accept:
|
148
160
|
error: Si è verificato un errore durante l'accettazione dei termini di utilizzo da parte dell'amministratore.
|
149
161
|
success: Ottimo! Hai accettato i termini d'uso dell'amministratore.
|
150
162
|
actions:
|
151
|
-
accept:
|
163
|
+
accept: Sono d'accordo con i seguenti termini
|
152
164
|
are_you_sure: Sei sicuro di voler rifiutare i termini di amministrazione?
|
153
165
|
refuse: Rifiuta i termini di amministrazione
|
154
166
|
title: Accetta i termini e le condizioni di utilizzo
|
@@ -227,6 +239,12 @@ it:
|
|
227
239
|
autocomplete:
|
228
240
|
no_results: Nessun risultato trovato
|
229
241
|
search_prompt: Digitare almeno tre caratteri da cercare
|
242
|
+
block_user:
|
243
|
+
new:
|
244
|
+
action: Blocca account e invia la motivazione
|
245
|
+
description: Bloccare un utente renderà il suo account inutilizzabile, puoi fornire nelle tue motivazioni e linee guida i modi in cui ritieni di prendere in considerazione lo sblocco dell'utente.
|
246
|
+
justification: Motivazione
|
247
|
+
title: Blocca utente %{name}
|
230
248
|
categories:
|
231
249
|
create:
|
232
250
|
error: Si è verificato un errore durante la creazione di questa categoria.
|
@@ -282,6 +300,21 @@ it:
|
|
282
300
|
update:
|
283
301
|
error: Si è verificato un errore durante l'aggiornamento di questo componente.
|
284
302
|
success: Il componente è stato aggiornato correttamente.
|
303
|
+
conflicts:
|
304
|
+
attempts: Tentativi
|
305
|
+
'false': 'No'
|
306
|
+
managed_user_name: Gestione utente
|
307
|
+
solved: Risolto
|
308
|
+
title: Conflitti delle verifiche
|
309
|
+
transfer:
|
310
|
+
email: Email
|
311
|
+
error: Si è verificato un problema nel trasferimento dell'utente corrente a partecipante gestito.
|
312
|
+
name: Nome
|
313
|
+
reason: Motivazione
|
314
|
+
success: Il trasferimento è stato completato con successo.
|
315
|
+
title: Trasferimento
|
316
|
+
'true': 'Si'
|
317
|
+
user_name: Utente
|
285
318
|
dashboard:
|
286
319
|
show:
|
287
320
|
view_more_logs: Visualizza più registri
|
@@ -298,6 +331,9 @@ it:
|
|
298
331
|
category_id_eq:
|
299
332
|
label: Categorie
|
300
333
|
filter_label: Filtro
|
334
|
+
moderations:
|
335
|
+
reportable_type_string_eq:
|
336
|
+
label: Tipo
|
301
337
|
officialized_at_null:
|
302
338
|
label: Stato
|
303
339
|
values:
|
@@ -318,6 +354,7 @@ it:
|
|
318
354
|
search_label: Ricerca
|
319
355
|
search_placeholder:
|
320
356
|
name_or_nickname_or_email_cont: Cerca %{collection} per email, nome o pseudonimo.
|
357
|
+
reported_id_string_or_reported_content_cont: Cerca %{collection} per id o contenuto segnalabile.
|
321
358
|
title_cont: Cerca %{collection} per titolo.
|
322
359
|
state_eq:
|
323
360
|
label: Stato
|
@@ -382,8 +419,10 @@ it:
|
|
382
419
|
help_sections: Sezioni di Aiuto
|
383
420
|
homepage: Homepage
|
384
421
|
impersonations: Impersonificazioni
|
422
|
+
moderation: Moderazione globale
|
385
423
|
newsletters: Newsletters
|
386
424
|
participants: Partecipanti
|
425
|
+
reported_users: Utenti Segnalati
|
387
426
|
scope_types: Tipi di ambito
|
388
427
|
scopes: Ambito tematico
|
389
428
|
settings: Impostazioni
|
@@ -471,6 +510,20 @@ it:
|
|
471
510
|
phone: Telefono
|
472
511
|
state: Stato
|
473
512
|
users_count: Conteggio dei partecipanti
|
513
|
+
moderated_users:
|
514
|
+
index:
|
515
|
+
actions:
|
516
|
+
title: Azioni
|
517
|
+
unreport: Non inserire
|
518
|
+
name: Nome
|
519
|
+
nickname: Nickname
|
520
|
+
reason: Motivazione
|
521
|
+
title: Elencando gli utenti segnalati
|
522
|
+
report:
|
523
|
+
reasons:
|
524
|
+
does_not_belong: Non appartiene
|
525
|
+
offensive: Offensivo
|
526
|
+
spam: Spam
|
474
527
|
moderations:
|
475
528
|
index:
|
476
529
|
title: Moderazione
|
@@ -479,6 +532,10 @@ it:
|
|
479
532
|
does_not_belong: Non appartiene
|
480
533
|
offensive: Offensivo
|
481
534
|
spam: Spam
|
535
|
+
reports:
|
536
|
+
index:
|
537
|
+
author: Autore(i)
|
538
|
+
callout_html: Un contenuto appare nel pannello di moderazione quando è stato segnalato da un utente (può essere chiunque abbia un account registrato) cliccando sul flag %{icon} accanto all'elemento.
|
482
539
|
newsletter_templates:
|
483
540
|
index:
|
484
541
|
preview_template: Anteprima
|
@@ -584,7 +641,6 @@ it:
|
|
584
641
|
rich_text_editor_in_public_views_help: In alcune aree di testo, i partecipanti saranno in grado di inserire alcuni tag HTML utilizzando l'editor di testo rich text.
|
585
642
|
social_handlers: Social networks
|
586
643
|
twitter: Twitter
|
587
|
-
url: URL
|
588
644
|
youtube: Youtube
|
589
645
|
update:
|
590
646
|
error: Si è verificato un errore durante la modifica di questa organizzazione.
|
@@ -619,7 +675,6 @@ it:
|
|
619
675
|
error: Si è verificato un errore durante l'eliminazione di un utente privato per questo spazio partecipativo.
|
620
676
|
success: Accesso utente privato spazio distruttivo distrutto con successo.
|
621
677
|
index:
|
622
|
-
import_via_csv: Importa tramite csv
|
623
678
|
title: Utente privato dello spazio partecipativo
|
624
679
|
new:
|
625
680
|
create: Creare
|
@@ -812,7 +867,6 @@ it:
|
|
812
867
|
fields:
|
813
868
|
hidden_at: Nascosto a
|
814
869
|
report_count: Conteggio
|
815
|
-
reportable: Inseribile
|
816
870
|
reported_content_url: URL del contenuto riportato
|
817
871
|
reports: Report
|
818
872
|
visit_url: Visita URL
|
data/config/locales/ja.yml
CHANGED
@@ -26,11 +26,15 @@ ja:
|
|
26
26
|
published_at: 公開日時
|
27
27
|
weight: 重みづけ
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: インポートを作成
|
29
31
|
newsletter:
|
30
32
|
body: 本文
|
31
33
|
subject: 件名
|
32
34
|
organization:
|
35
|
+
admin_terms_of_use_body: 管理者の利用規約の本文
|
33
36
|
alert_color: アラート
|
37
|
+
available_authorizations: 利用可能な認証方式
|
34
38
|
badges_enabled: バッジを有効にする
|
35
39
|
comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
|
36
40
|
cta_button_path: Call To Action ボタンのパス
|
@@ -41,6 +45,8 @@ ja:
|
|
41
45
|
enable_omnipresent_banner: Show omnipresent banner
|
42
46
|
facebook_handler: Facebook handler
|
43
47
|
favicon: アイコン
|
48
|
+
force_authentication: 認証の強制
|
49
|
+
force_users_to_authenticate_before_access_organization: 組織にアクセスする前にユーザーの認証を強制する
|
44
50
|
from: メールアドレスから
|
45
51
|
github_handler: GitHub handler
|
46
52
|
header_snippets: ヘッダスニペットを表示
|
@@ -53,6 +59,7 @@ ja:
|
|
53
59
|
highlighted_content_banner_image: 画像
|
54
60
|
highlighted_content_banner_short_description: 短い説明
|
55
61
|
highlighted_content_banner_title: タイトル
|
62
|
+
host: ホスト
|
56
63
|
instagram_handler: Instagram handler
|
57
64
|
logo: ロゴ
|
58
65
|
machine_translation_display_priority: 機械翻訳表示の優先度
|
@@ -65,17 +72,21 @@ ja:
|
|
65
72
|
omnipresent_banner_short_description: 短い説明
|
66
73
|
omnipresent_banner_title: タイトル
|
67
74
|
omnipresent_banner_url: URL
|
75
|
+
organization_admin_email: 組織管理者メールアドレス
|
76
|
+
organization_admin_name: 組織管理者名
|
77
|
+
organization_locales: 組織のロケール
|
68
78
|
primary_color: プライマリ(プライマリ)
|
69
79
|
reference_prefix: 参照の接頭辞:
|
70
80
|
rich_text_editor_in_public_views: 参加者にリッチテキストエディタを有効にする
|
71
81
|
secondary_color: Secondary
|
82
|
+
secondary_hosts: セカンダリホスト
|
72
83
|
send_welcome_notification: ウェルカム通知を送信
|
73
|
-
show_statistics: 統計情報を表示
|
74
84
|
success_color: 成功
|
75
85
|
time_zone: タイムゾーン
|
76
86
|
tos_version: Terms of service version
|
77
87
|
twitter_handler: Twitter handler
|
78
88
|
user_groups_enabled: グループを有効にする
|
89
|
+
users_registration_mode: ユーザー登録モード
|
79
90
|
warning_color: 警告
|
80
91
|
welcome_notification_body: Welcome通知本文
|
81
92
|
welcome_notification_subject: ウェルカム通知の件名
|
@@ -94,6 +105,7 @@ ja:
|
|
94
105
|
settings:
|
95
106
|
scope_id: スコープ
|
96
107
|
static_page:
|
108
|
+
allow_public_access: 認証なしでのアクセスを許可
|
97
109
|
changed_notably: 目立つ変更がありました。
|
98
110
|
content: コンテンツ
|
99
111
|
organization: 組織
|
@@ -116,6 +128,10 @@ ja:
|
|
116
128
|
allowed_file_content_types: 無効な画像ファイル
|
117
129
|
official_img_header:
|
118
130
|
allowed_file_content_types: 無効な画像ファイル
|
131
|
+
new_import:
|
132
|
+
attributes:
|
133
|
+
file:
|
134
|
+
invalid_mime_type: MIMEタイプが無効です
|
119
135
|
activerecord:
|
120
136
|
attributes:
|
121
137
|
decidim/static_page:
|
@@ -135,20 +151,29 @@ ja:
|
|
135
151
|
actions:
|
136
152
|
add: 追加
|
137
153
|
browse: 検索
|
154
|
+
category:
|
155
|
+
new: 新しいカテゴリ
|
138
156
|
export: エクスポート
|
157
|
+
import: インポート
|
139
158
|
manage: 管理
|
140
159
|
new: 新しい %{name}
|
160
|
+
newsletter:
|
161
|
+
new: 新しいニュースレター
|
162
|
+
participatory_space_private_user:
|
163
|
+
new: 新しい参加スペースのプライベートユーザー
|
141
164
|
per_page: ページごと
|
142
165
|
permissions: アクセス許可
|
143
166
|
reject: 拒否
|
144
167
|
share: 共有
|
168
|
+
user:
|
169
|
+
new: 新規ユーザー
|
145
170
|
verify: 確認する
|
146
171
|
admin_terms_of_use:
|
147
172
|
accept:
|
148
173
|
error: 管理者の利用規約に同意中にエラーが発生しました。
|
149
174
|
success: 素晴らしい!管理者の利用規約に同意しました。
|
150
175
|
actions:
|
151
|
-
accept:
|
176
|
+
accept: 次の規約に同意します
|
152
177
|
are_you_sure: 管理者の条件を拒否してもよろしいですか?
|
153
178
|
refuse: 同意しない
|
154
179
|
title: 利用規約に同意する
|
@@ -227,6 +252,10 @@ ja:
|
|
227
252
|
autocomplete:
|
228
253
|
no_results: 結果が見つかりませんでした
|
229
254
|
search_prompt: 検索するには少なくとも3文字を入力してください
|
255
|
+
block_user:
|
256
|
+
new:
|
257
|
+
justification: 判定理由
|
258
|
+
title: ユーザー %{name} をブロックする
|
230
259
|
categories:
|
231
260
|
create:
|
232
261
|
error: このカテゴリの作成中に問題が発生しました。
|
@@ -282,6 +311,8 @@ ja:
|
|
282
311
|
update:
|
283
312
|
error: このコンポーネントの更新中に問題が発生しました。
|
284
313
|
success: コンポーネントは正常に更新されました。
|
314
|
+
conflicts:
|
315
|
+
'false': 'いいえ'
|
285
316
|
dashboard:
|
286
317
|
show:
|
287
318
|
view_more_logs: もっとログを見る
|
@@ -359,6 +390,16 @@ ja:
|
|
359
390
|
impersonate_existing_managed_user: 参加者を管理 "%{name}"
|
360
391
|
impersonate_existing_user: 参加者を管理 "%{name}"
|
361
392
|
impersonate_new_managed_user: 新規参加者の管理
|
393
|
+
imports:
|
394
|
+
new:
|
395
|
+
accepted_mime_types:
|
396
|
+
csv: csv
|
397
|
+
json: json
|
398
|
+
xls: xls
|
399
|
+
actions:
|
400
|
+
back: 戻る
|
401
|
+
import: インポート
|
402
|
+
notice: "%{number} %{resource_name} を正常にインポートしました"
|
362
403
|
logs:
|
363
404
|
logs_list:
|
364
405
|
no_logs_yet: ログはまだありません
|
@@ -382,8 +423,10 @@ ja:
|
|
382
423
|
help_sections: ヘルプセクション
|
383
424
|
homepage: ホームページ
|
384
425
|
impersonations: なりすまし
|
426
|
+
moderation: グローバルモデレーション
|
385
427
|
newsletters: ニュースレター
|
386
428
|
participants: 参加者
|
429
|
+
reported_users: 報告済みユーザー
|
387
430
|
scope_types: スコープの種類
|
388
431
|
scopes: スコープ
|
389
432
|
settings: 設定
|
@@ -471,6 +514,17 @@ ja:
|
|
471
514
|
phone: 電話番号
|
472
515
|
state: 都道府県:
|
473
516
|
users_count: 参加者数
|
517
|
+
moderated_users:
|
518
|
+
index:
|
519
|
+
actions:
|
520
|
+
title: アクション
|
521
|
+
unreport: 報告解除
|
522
|
+
nickname: ニックネーム
|
523
|
+
report:
|
524
|
+
reasons:
|
525
|
+
spam: スパム
|
526
|
+
tabs:
|
527
|
+
unblocked: 未ブロック
|
474
528
|
moderations:
|
475
529
|
index:
|
476
530
|
title: モデレーション
|
@@ -479,6 +533,9 @@ ja:
|
|
479
533
|
does_not_belong: 属していません
|
480
534
|
offensive: 攻撃
|
481
535
|
spam: スパム
|
536
|
+
reports:
|
537
|
+
index:
|
538
|
+
author: 投稿者
|
482
539
|
newsletter_templates:
|
483
540
|
index:
|
484
541
|
preview_template: プレビュー
|
@@ -584,7 +641,6 @@ ja:
|
|
584
641
|
rich_text_editor_in_public_views_help: 一部のテキストエリアでは、参加者はリッチテキストエディタを使用してHTMLタグを挿入することができます。
|
585
642
|
social_handlers: ソーシャル
|
586
643
|
twitter: Twitter
|
587
|
-
url: URL
|
588
644
|
youtube: YouTube
|
589
645
|
update:
|
590
646
|
error: この組織の更新に問題がありました。
|
@@ -619,7 +675,6 @@ ja:
|
|
619
675
|
error: この参加スペースのプライベート参加者を削除する際に問題が発生しました。
|
620
676
|
success: 参加スペースのプライベート参加者アクセスが正常に破棄されました。
|
621
677
|
index:
|
622
|
-
import_via_csv: csv経由でインポート
|
623
678
|
title: 参加スペースプライベート参加者
|
624
679
|
new:
|
625
680
|
create: 作成
|
@@ -829,7 +884,6 @@ ja:
|
|
829
884
|
fields:
|
830
885
|
hidden_at: '非表示:'
|
831
886
|
report_count: カウント
|
832
|
-
reportable: 報告可能
|
833
887
|
reported_content_url: 報告されたコンテンツ URL
|
834
888
|
reports: レポート
|
835
889
|
visit_url: URL を参照
|