decidim-admin 0.23.1 → 0.24.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
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 +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/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/_buttons.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_admin_user_actions.rb +98 -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/participatory_space_private_user_csv_import_form.rb +4 -5
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +0 -5
- data/app/forms/decidim/admin/selective_newsletter_form.rb +6 -0
- 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/newsletter_recipients.rb +0 -7
- 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/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 +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 +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 +2 -2
- 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/shared/_gallery.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/users/index.html.erb +1 -1
- 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/settings.html.erb +2 -33
- data/app/views/layouts/decidim/admin/users.html.erb +11 -0
- data/config/locales/ar.yml +0 -9
- data/config/locales/bg.yml +0 -5
- data/config/locales/ca.yml +151 -8
- data/config/locales/cs.yml +194 -51
- data/config/locales/de.yml +172 -28
- data/config/locales/el.yml +62 -9
- data/config/locales/en.yml +152 -9
- data/config/locales/es-MX.yml +150 -7
- data/config/locales/es-PY.yml +150 -7
- data/config/locales/es.yml +150 -7
- data/config/locales/eu.yml +18 -21
- data/config/locales/fi-plain.yml +150 -7
- data/config/locales/fi.yml +150 -7
- data/config/locales/fr-CA.yml +141 -8
- data/config/locales/fr.yml +142 -9
- data/config/locales/gl.yml +225 -4
- data/config/locales/hu.yml +13 -9
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +36 -6
- data/config/locales/it.yml +74 -9
- data/config/locales/ja.yml +43 -12
- data/config/locales/lv.yml +0 -9
- data/config/locales/nl.yml +120 -11
- data/config/locales/no.yml +16 -9
- data/config/locales/pl.yml +168 -24
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -9
- data/config/locales/ro-RO.yml +21 -9
- data/config/locales/ru.yml +0 -7
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -9
- data/config/locales/sl.yml +0 -5
- data/config/locales/sr-CS.yml +0 -7
- data/config/locales/sv.yml +53 -9
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +206 -11
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -9
- 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 +49 -4
- data/lib/decidim/admin/version.rb +1 -1
- metadata +78 -19
data/config/locales/hu.yml
CHANGED
@@ -30,7 +30,6 @@ hu:
|
|
30
30
|
body: Szöveg
|
31
31
|
subject: Tárgy
|
32
32
|
organization:
|
33
|
-
address: SMTP host név
|
34
33
|
alert_color: Figyelmeztetés
|
35
34
|
badges_enabled: Jelvények engedélyezése
|
36
35
|
comments_max_length: Kommentek maximális hossza (Hagyjon 0 -t az alapértékhez)
|
@@ -66,20 +65,16 @@ hu:
|
|
66
65
|
omnipresent_banner_short_description: Rövid leírás
|
67
66
|
omnipresent_banner_title: Cím
|
68
67
|
omnipresent_banner_url: URL
|
69
|
-
password: Jelszó
|
70
|
-
port: Port
|
71
68
|
primary_color: Elsődleges
|
72
69
|
reference_prefix: Hivatkozási előtag
|
73
70
|
rich_text_editor_in_public_views: A résztvevők számára a szövegszerkesztő felület engedélyezése
|
74
71
|
secondary_color: Másodlagos
|
75
72
|
send_welcome_notification: Üdvözlő értesítés küldése
|
76
|
-
show_statistics: Statisztikák megjelenítése
|
77
73
|
success_color: Siker
|
78
74
|
time_zone: Időzóna
|
79
75
|
tos_version: Használati feltételek
|
80
76
|
twitter_handler: Twitter handler
|
81
77
|
user_groups_enabled: Csoportok engedélyezése
|
82
|
-
user_name: Felhasználónév
|
83
78
|
warning_color: Figyelmeztetés
|
84
79
|
welcome_notification_body: Üdvözlő értesítés szövegtörzse
|
85
80
|
welcome_notification_subject: Üdvözlő üzenet tárgya
|
@@ -149,7 +144,6 @@ hu:
|
|
149
144
|
error: Hiba történt az adminra vonatkozó általános szerződési feltételek elfogadása során.
|
150
145
|
success: Nagyszerű! Elfogadtad az admin felhasználási feltételeket.
|
151
146
|
actions:
|
152
|
-
accept: Elfogadom ezeket az admin feltételeket
|
153
147
|
are_you_sure: Biztosan visszautasítod az admin feltételek elfogadását?
|
154
148
|
refuse: Admin feltételek elutasítása
|
155
149
|
title: Elfogadom a felhasználási feltételeket
|
@@ -282,6 +276,19 @@ hu:
|
|
282
276
|
update:
|
283
277
|
error: Hiba történt az elem frissítése során.
|
284
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ó
|
285
292
|
dashboard:
|
286
293
|
show:
|
287
294
|
view_more_logs: További naplók megtekintése
|
@@ -576,7 +583,6 @@ hu:
|
|
576
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.
|
577
584
|
social_handlers: Social
|
578
585
|
twitter: Twitter
|
579
|
-
url: Url
|
580
586
|
youtube: Youtube
|
581
587
|
update:
|
582
588
|
error: Hiba történt a szervezet frissítése során.
|
@@ -611,7 +617,6 @@ hu:
|
|
611
617
|
error: Hiba történt egy privát felhasználó törlésével a részvételi helyen.
|
612
618
|
success: Privát felhasználó részvételi helyhez való hozzáférése törölve.
|
613
619
|
index:
|
614
|
-
import_via_csv: Importálás CSV -ből
|
615
620
|
title: Részvételi tér privát felhasználója
|
616
621
|
new:
|
617
622
|
create: Létrehozás
|
@@ -804,7 +809,6 @@ hu:
|
|
804
809
|
fields:
|
805
810
|
hidden_at: 'Rejtett itt:'
|
806
811
|
report_count: Számol
|
807
|
-
reportable: Kimutatható
|
808
812
|
reported_content_url: Jelentett URL tartalom
|
809
813
|
reports: Jelentések
|
810
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
@@ -13,6 +13,7 @@ is-IS:
|
|
13
13
|
attachment_collection_id: Mappa
|
14
14
|
description: Lýsing
|
15
15
|
file: Skrá
|
16
|
+
title: Nafn viðhengis eða myndar
|
16
17
|
attachment_collection:
|
17
18
|
description: Lýsing
|
18
19
|
name: Nafn
|
@@ -30,6 +31,8 @@ is-IS:
|
|
30
31
|
subject: Efni
|
31
32
|
organization:
|
32
33
|
alert_color: Viðvörun
|
34
|
+
available_authorizations: Möguleg auðkenni
|
35
|
+
badges_enabled: Virkja merki
|
33
36
|
cta_button_path: Hringja til aðgerða hnappaslóð
|
34
37
|
cta_button_text: Hringja í aðgerð hnappinn texta
|
35
38
|
default_locale: Sjálfgefið tungumál
|
@@ -37,6 +40,8 @@ is-IS:
|
|
37
40
|
enable_omnipresent_banner: Sýna algengasta borði
|
38
41
|
facebook_handler: Facebook handler
|
39
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
|
40
45
|
from: Netfang sendanda
|
41
46
|
github_handler: GitHub handler
|
42
47
|
header_snippets: Header brot
|
@@ -47,6 +52,7 @@ is-IS:
|
|
47
52
|
highlighted_content_banner_image: Mynd
|
48
53
|
highlighted_content_banner_short_description: Stutt lýsing
|
49
54
|
highlighted_content_banner_title: Titill
|
55
|
+
host: Gestgjafi
|
50
56
|
instagram_handler: Instagram handler
|
51
57
|
logo: Merki
|
52
58
|
name: Nafn
|
@@ -56,14 +62,13 @@ is-IS:
|
|
56
62
|
omnipresent_banner_short_description: Stutt lýsing
|
57
63
|
omnipresent_banner_title: Titill
|
58
64
|
omnipresent_banner_url: URL
|
59
|
-
password: Lykilorð
|
60
|
-
port: Gátt
|
61
65
|
primary_color: Aðal
|
62
66
|
reference_prefix: Tilvísunarnúmer
|
63
67
|
secondary_color: Til vara
|
64
|
-
|
68
|
+
success_color: Tókst
|
69
|
+
time_zone: Tímabelti
|
65
70
|
twitter_handler: Twitter handler
|
66
|
-
|
71
|
+
user_groups_enabled: Virkja hópa
|
67
72
|
warning_color: Aðvörun
|
68
73
|
youtube_handler: YouTube umsjónarmaður
|
69
74
|
scope:
|
@@ -77,6 +82,8 @@ is-IS:
|
|
77
82
|
name: Nafn
|
78
83
|
organization: Skipulag
|
79
84
|
plural: Fleirtala
|
85
|
+
settings:
|
86
|
+
scope_id: Svæði
|
80
87
|
static_page:
|
81
88
|
content: Innihald
|
82
89
|
organization: Skipulag
|
@@ -91,6 +98,18 @@ is-IS:
|
|
91
98
|
weight: Þyngd
|
92
99
|
user_group_csv_verification:
|
93
100
|
file: Skrá
|
101
|
+
errors:
|
102
|
+
models:
|
103
|
+
organization:
|
104
|
+
attributes:
|
105
|
+
official_img_footer:
|
106
|
+
allowed_file_content_types: Vitlaus myndskrá
|
107
|
+
official_img_header:
|
108
|
+
allowed_file_content_types: Vitlaus myndskrá
|
109
|
+
new_import:
|
110
|
+
attributes:
|
111
|
+
file:
|
112
|
+
invalid_mime_type: Vitlaus Mime týpa
|
94
113
|
activerecord:
|
95
114
|
attributes:
|
96
115
|
decidim/static_page:
|
@@ -109,12 +128,25 @@ is-IS:
|
|
109
128
|
admin:
|
110
129
|
actions:
|
111
130
|
add: Bæta við
|
131
|
+
attachment:
|
132
|
+
new: Nýtt viðhengi
|
133
|
+
attachment_collection:
|
134
|
+
new: Nýtt viðhengissafn
|
112
135
|
browse: Skoða
|
136
|
+
category:
|
137
|
+
new: Nýr flokkur
|
113
138
|
export: Útflutningur
|
139
|
+
import: Flytja inn
|
114
140
|
manage: Stjórna
|
115
141
|
new: Nýtt %{name}
|
142
|
+
newsletter:
|
143
|
+
new: Nýtt fréttabréf
|
144
|
+
per_page: Á hveri síðu
|
116
145
|
permissions: Heimildir
|
117
146
|
reject: Hafna
|
147
|
+
share: Deila
|
148
|
+
user:
|
149
|
+
new: Nýr notandi
|
118
150
|
verify: Staðfestu
|
119
151
|
area_types:
|
120
152
|
create:
|
@@ -405,7 +437,6 @@ is-IS:
|
|
405
437
|
instagram: Instagram
|
406
438
|
social_handlers: Félagsleg
|
407
439
|
twitter: Twitter
|
408
|
-
url: Url
|
409
440
|
youtube: Youtube
|
410
441
|
update:
|
411
442
|
success: Skipulag uppfærður með góðum árangri.
|
@@ -518,7 +549,6 @@ is-IS:
|
|
518
549
|
fields:
|
519
550
|
hidden_at: Falinn á
|
520
551
|
report_count: Telja
|
521
|
-
reportable: Tilkynnt
|
522
552
|
reported_content_url: Tilkynnt efni vefslóð
|
523
553
|
reports: Skýrslur
|
524
554
|
visit_url: Heimsókn vefslóð
|
data/config/locales/it.yml
CHANGED
@@ -30,7 +30,6 @@ it:
|
|
30
30
|
body: Testo
|
31
31
|
subject: Oggetto
|
32
32
|
organization:
|
33
|
-
address: Server SMTP
|
34
33
|
alert_color: Notifica
|
35
34
|
badges_enabled: Abilita badge
|
36
35
|
comments_max_length: Lunghezza massima dei commenti (Lasciare 0 per il valore predefinito)
|
@@ -56,6 +55,9 @@ it:
|
|
56
55
|
highlighted_content_banner_title: Titolo
|
57
56
|
instagram_handler: Gestore di Instagram
|
58
57
|
logo: Logo
|
58
|
+
machine_translation_display_priority: Priorità di visualizzazione della traduzione automatica
|
59
|
+
machine_translation_display_priority_original: Prima il testo originale
|
60
|
+
machine_translation_display_priority_translation: Prima il testo tradotto
|
59
61
|
name: Nome
|
60
62
|
official_img_footer: Logo ufficiale nel footer
|
61
63
|
official_img_header: Intestazione logo ufficiale
|
@@ -63,20 +65,16 @@ it:
|
|
63
65
|
omnipresent_banner_short_description: Breve descrizione
|
64
66
|
omnipresent_banner_title: Titolo
|
65
67
|
omnipresent_banner_url: URL
|
66
|
-
password: Password
|
67
|
-
port: Porta
|
68
68
|
primary_color: Primario
|
69
69
|
reference_prefix: Prefisso
|
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
|
77
76
|
twitter_handler: Gestore di Twitter
|
78
77
|
user_groups_enabled: Abilita gruppi
|
79
|
-
user_name: Pseudonimo
|
80
78
|
warning_color: Attenzione
|
81
79
|
welcome_notification_body: Testo del messaggio di Benvenuto
|
82
80
|
welcome_notification_subject: Oggetto della mail con messaggio di Benvenuto
|
@@ -92,7 +90,10 @@ it:
|
|
92
90
|
name: Nome
|
93
91
|
organization: Organizzazione
|
94
92
|
plural: Plurale
|
93
|
+
settings:
|
94
|
+
scope_id: Obiettivi
|
95
95
|
static_page:
|
96
|
+
allow_public_access: Consenti l'accesso senza autenticazione
|
96
97
|
changed_notably: Ci sono stati cambiamenti evidenti.
|
97
98
|
content: Contenuto
|
98
99
|
organization: Organizzazione
|
@@ -133,20 +134,33 @@ it:
|
|
133
134
|
admin:
|
134
135
|
actions:
|
135
136
|
add: Aggiungi
|
137
|
+
attachment:
|
138
|
+
new: Nuovo allegato
|
139
|
+
attachment_collection:
|
140
|
+
new: Nuova collezione di allegati
|
136
141
|
browse: Naviga
|
142
|
+
category:
|
143
|
+
new: Nuova categoria
|
137
144
|
export: Esporta
|
138
145
|
manage: Gestisci
|
139
146
|
new: Nuovo %{name}
|
147
|
+
newsletter:
|
148
|
+
new: Nuova newsletter
|
149
|
+
participatory_space_private_user:
|
150
|
+
new: Nuovo utente dello spazio partecipativo privato
|
140
151
|
per_page: Per pagina
|
141
152
|
permissions: Permessi
|
142
153
|
reject: Rifiuta
|
154
|
+
share: Condividi
|
155
|
+
user:
|
156
|
+
new: Nuovo utente
|
143
157
|
verify: Verifica
|
144
158
|
admin_terms_of_use:
|
145
159
|
accept:
|
146
160
|
error: Si è verificato un errore durante l'accettazione dei termini di utilizzo da parte dell'amministratore.
|
147
161
|
success: Ottimo! Hai accettato i termini d'uso dell'amministratore.
|
148
162
|
actions:
|
149
|
-
accept:
|
163
|
+
accept: Sono d'accordo con i seguenti termini
|
150
164
|
are_you_sure: Sei sicuro di voler rifiutare i termini di amministrazione?
|
151
165
|
refuse: Rifiuta i termini di amministrazione
|
152
166
|
title: Accetta i termini e le condizioni di utilizzo
|
@@ -225,6 +239,12 @@ it:
|
|
225
239
|
autocomplete:
|
226
240
|
no_results: Nessun risultato trovato
|
227
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}
|
228
248
|
categories:
|
229
249
|
create:
|
230
250
|
error: Si è verificato un errore durante la creazione di questa categoria.
|
@@ -267,6 +287,7 @@ it:
|
|
267
287
|
headers:
|
268
288
|
actions: Azioni
|
269
289
|
name: Nome del componente
|
290
|
+
scope: Ambito del componente
|
270
291
|
type: Tipo di componente
|
271
292
|
new:
|
272
293
|
add: Aggiungi componente
|
@@ -279,6 +300,21 @@ it:
|
|
279
300
|
update:
|
280
301
|
error: Si è verificato un errore durante l'aggiornamento di questo componente.
|
281
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
|
282
318
|
dashboard:
|
283
319
|
show:
|
284
320
|
view_more_logs: Visualizza più registri
|
@@ -295,6 +331,9 @@ it:
|
|
295
331
|
category_id_eq:
|
296
332
|
label: Categorie
|
297
333
|
filter_label: Filtro
|
334
|
+
moderations:
|
335
|
+
reportable_type_string_eq:
|
336
|
+
label: Tipo
|
298
337
|
officialized_at_null:
|
299
338
|
label: Stato
|
300
339
|
values:
|
@@ -315,6 +354,7 @@ it:
|
|
315
354
|
search_label: Ricerca
|
316
355
|
search_placeholder:
|
317
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.
|
318
358
|
title_cont: Cerca %{collection} per titolo.
|
319
359
|
state_eq:
|
320
360
|
label: Stato
|
@@ -379,8 +419,10 @@ it:
|
|
379
419
|
help_sections: Sezioni di Aiuto
|
380
420
|
homepage: Homepage
|
381
421
|
impersonations: Impersonificazioni
|
422
|
+
moderation: Moderazione globale
|
382
423
|
newsletters: Newsletters
|
383
424
|
participants: Partecipanti
|
425
|
+
reported_users: Utenti Segnalati
|
384
426
|
scope_types: Tipi di ambito
|
385
427
|
scopes: Ambito tematico
|
386
428
|
settings: Impostazioni
|
@@ -436,6 +478,14 @@ it:
|
|
436
478
|
fields:
|
437
479
|
name: Nome
|
438
480
|
plural: Plurale
|
481
|
+
share_token:
|
482
|
+
fields:
|
483
|
+
created_at: Creato il
|
484
|
+
expires_at: Scade il
|
485
|
+
last_used_at: Ultimo utilizzo
|
486
|
+
times_used: Volte usate
|
487
|
+
token: Token
|
488
|
+
user: Creata da
|
439
489
|
static_page:
|
440
490
|
fields:
|
441
491
|
created_at: Creato il
|
@@ -460,6 +510,20 @@ it:
|
|
460
510
|
phone: Telefono
|
461
511
|
state: Stato
|
462
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
|
463
527
|
moderations:
|
464
528
|
index:
|
465
529
|
title: Moderazione
|
@@ -468,6 +532,10 @@ it:
|
|
468
532
|
does_not_belong: Non appartiene
|
469
533
|
offensive: Offensivo
|
470
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.
|
471
539
|
newsletter_templates:
|
472
540
|
index:
|
473
541
|
preview_template: Anteprima
|
@@ -573,7 +641,6 @@ it:
|
|
573
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.
|
574
642
|
social_handlers: Social networks
|
575
643
|
twitter: Twitter
|
576
|
-
url: URL
|
577
644
|
youtube: Youtube
|
578
645
|
update:
|
579
646
|
error: Si è verificato un errore durante la modifica di questa organizzazione.
|
@@ -608,7 +675,6 @@ it:
|
|
608
675
|
error: Si è verificato un errore durante l'eliminazione di un utente privato per questo spazio partecipativo.
|
609
676
|
success: Accesso utente privato spazio distruttivo distrutto con successo.
|
610
677
|
index:
|
611
|
-
import_via_csv: Importa tramite csv
|
612
678
|
title: Utente privato dello spazio partecipativo
|
613
679
|
new:
|
614
680
|
create: Creare
|
@@ -801,7 +867,6 @@ it:
|
|
801
867
|
fields:
|
802
868
|
hidden_at: Nascosto a
|
803
869
|
report_count: Conteggio
|
804
|
-
reportable: Inseribile
|
805
870
|
reported_content_url: URL del contenuto riportato
|
806
871
|
reports: Report
|
807
872
|
visit_url: Visita URL
|
data/config/locales/ja.yml
CHANGED
@@ -24,13 +24,12 @@ ja:
|
|
24
24
|
component:
|
25
25
|
name: 名前
|
26
26
|
published_at: 公開日時
|
27
|
-
weight:
|
27
|
+
weight: 重みづけ
|
28
28
|
id: ID
|
29
29
|
newsletter:
|
30
30
|
body: 本文
|
31
31
|
subject: 件名
|
32
32
|
organization:
|
33
|
-
address: SMTP hostname
|
34
33
|
alert_color: アラート
|
35
34
|
badges_enabled: バッジを有効にする
|
36
35
|
comments_max_length: コメント最大長 (デフォルト値は 0 のまま)
|
@@ -66,20 +65,16 @@ ja:
|
|
66
65
|
omnipresent_banner_short_description: 短い説明
|
67
66
|
omnipresent_banner_title: タイトル
|
68
67
|
omnipresent_banner_url: URL
|
69
|
-
password: パスワード
|
70
|
-
port: ポート
|
71
68
|
primary_color: プライマリ(プライマリ)
|
72
69
|
reference_prefix: 参照の接頭辞:
|
73
70
|
rich_text_editor_in_public_views: 参加者にリッチテキストエディタを有効にする
|
74
71
|
secondary_color: Secondary
|
75
72
|
send_welcome_notification: ウェルカム通知を送信
|
76
|
-
show_statistics: 統計情報を表示
|
77
73
|
success_color: 成功
|
78
74
|
time_zone: タイムゾーン
|
79
75
|
tos_version: Terms of service version
|
80
76
|
twitter_handler: Twitter handler
|
81
77
|
user_groups_enabled: グループを有効にする
|
82
|
-
user_name: ユーザー名
|
83
78
|
warning_color: 警告
|
84
79
|
welcome_notification_body: Welcome通知本文
|
85
80
|
welcome_notification_subject: ウェルカム通知の件名
|
@@ -95,6 +90,8 @@ ja:
|
|
95
90
|
name: 名前
|
96
91
|
organization: 組織
|
97
92
|
plural: 複数形
|
93
|
+
settings:
|
94
|
+
scope_id: スコープ
|
98
95
|
static_page:
|
99
96
|
changed_notably: 目立つ変更がありました。
|
100
97
|
content: コンテンツ
|
@@ -118,6 +115,10 @@ ja:
|
|
118
115
|
allowed_file_content_types: 無効な画像ファイル
|
119
116
|
official_img_header:
|
120
117
|
allowed_file_content_types: 無効な画像ファイル
|
118
|
+
new_import:
|
119
|
+
attributes:
|
120
|
+
file:
|
121
|
+
invalid_mime_type: MIMEタイプが無効です
|
121
122
|
activerecord:
|
122
123
|
attributes:
|
123
124
|
decidim/static_page:
|
@@ -137,20 +138,29 @@ ja:
|
|
137
138
|
actions:
|
138
139
|
add: 追加
|
139
140
|
browse: 検索
|
141
|
+
category:
|
142
|
+
new: 新しいカテゴリ
|
140
143
|
export: エクスポート
|
144
|
+
import: インポート
|
141
145
|
manage: 管理
|
142
146
|
new: 新しい %{name}
|
147
|
+
newsletter:
|
148
|
+
new: 新しいニュースレター
|
149
|
+
participatory_space_private_user:
|
150
|
+
new: 新しい参加スペースのプライベートユーザー
|
143
151
|
per_page: ページごと
|
144
152
|
permissions: アクセス許可
|
145
153
|
reject: 拒否
|
146
154
|
share: 共有
|
155
|
+
user:
|
156
|
+
new: 新規ユーザー
|
147
157
|
verify: 確認する
|
148
158
|
admin_terms_of_use:
|
149
159
|
accept:
|
150
160
|
error: 管理者の利用規約に同意中にエラーが発生しました。
|
151
161
|
success: 素晴らしい!管理者の利用規約に同意しました。
|
152
162
|
actions:
|
153
|
-
accept:
|
163
|
+
accept: 次の規約に同意します
|
154
164
|
are_you_sure: 管理者の条件を拒否してもよろしいですか?
|
155
165
|
refuse: 同意しない
|
156
166
|
title: 利用規約に同意する
|
@@ -229,6 +239,10 @@ ja:
|
|
229
239
|
autocomplete:
|
230
240
|
no_results: 結果が見つかりませんでした
|
231
241
|
search_prompt: 検索するには少なくとも3文字を入力してください
|
242
|
+
block_user:
|
243
|
+
new:
|
244
|
+
justification: 判定理由
|
245
|
+
title: ユーザー %{name} をブロックする
|
232
246
|
categories:
|
233
247
|
create:
|
234
248
|
error: このカテゴリの作成中に問題が発生しました。
|
@@ -284,6 +298,8 @@ ja:
|
|
284
298
|
update:
|
285
299
|
error: このコンポーネントの更新中に問題が発生しました。
|
286
300
|
success: コンポーネントは正常に更新されました。
|
301
|
+
conflicts:
|
302
|
+
'false': 'いいえ'
|
287
303
|
dashboard:
|
288
304
|
show:
|
289
305
|
view_more_logs: もっとログを見る
|
@@ -361,6 +377,16 @@ ja:
|
|
361
377
|
impersonate_existing_managed_user: 参加者を管理 "%{name}"
|
362
378
|
impersonate_existing_user: 参加者を管理 "%{name}"
|
363
379
|
impersonate_new_managed_user: 新規参加者の管理
|
380
|
+
imports:
|
381
|
+
new:
|
382
|
+
accepted_mime_types:
|
383
|
+
csv: csv
|
384
|
+
json: json
|
385
|
+
xls: xls
|
386
|
+
actions:
|
387
|
+
back: 戻る
|
388
|
+
import: インポート
|
389
|
+
notice: "%{number} %{resource_name} を正常にインポートしました"
|
364
390
|
logs:
|
365
391
|
logs_list:
|
366
392
|
no_logs_yet: ログはまだありません
|
@@ -384,8 +410,10 @@ ja:
|
|
384
410
|
help_sections: ヘルプセクション
|
385
411
|
homepage: ホームページ
|
386
412
|
impersonations: なりすまし
|
413
|
+
moderation: グローバルモデレーション
|
387
414
|
newsletters: ニュースレター
|
388
415
|
participants: 参加者
|
416
|
+
reported_users: 報告済みユーザー
|
389
417
|
scope_types: スコープの種類
|
390
418
|
scopes: スコープ
|
391
419
|
settings: 設定
|
@@ -473,6 +501,12 @@ ja:
|
|
473
501
|
phone: 電話番号
|
474
502
|
state: 都道府県:
|
475
503
|
users_count: 参加者数
|
504
|
+
moderated_users:
|
505
|
+
index:
|
506
|
+
actions:
|
507
|
+
title: アクション
|
508
|
+
unreport: 報告解除
|
509
|
+
nickname: ニックネーム
|
476
510
|
moderations:
|
477
511
|
index:
|
478
512
|
title: モデレーション
|
@@ -586,7 +620,6 @@ ja:
|
|
586
620
|
rich_text_editor_in_public_views_help: 一部のテキストエリアでは、参加者はリッチテキストエディタを使用してHTMLタグを挿入することができます。
|
587
621
|
social_handlers: ソーシャル
|
588
622
|
twitter: Twitter
|
589
|
-
url: URL
|
590
623
|
youtube: YouTube
|
591
624
|
update:
|
592
625
|
error: この組織の更新に問題がありました。
|
@@ -621,7 +654,6 @@ ja:
|
|
621
654
|
error: この参加スペースのプライベート参加者を削除する際に問題が発生しました。
|
622
655
|
success: 参加スペースのプライベート参加者アクセスが正常に破棄されました。
|
623
656
|
index:
|
624
|
-
import_via_csv: csv経由でインポート
|
625
657
|
title: 参加スペースプライベート参加者
|
626
658
|
new:
|
627
659
|
create: 作成
|
@@ -814,7 +846,7 @@ ja:
|
|
814
846
|
not_hidden: 非表示にしない
|
815
847
|
title: アクション
|
816
848
|
unhide: Unhide
|
817
|
-
unreport:
|
849
|
+
unreport: 報告解除
|
818
850
|
admin:
|
819
851
|
reportable:
|
820
852
|
hide:
|
@@ -824,14 +856,13 @@ ja:
|
|
824
856
|
invalid: リソースの非表示解除中に問題が発生しました。
|
825
857
|
success: リソースの非表示を解除しました。
|
826
858
|
unreport:
|
827
|
-
invalid:
|
859
|
+
invalid: リソースの報告解除中に問題が発生しました。
|
828
860
|
success: リソースの報告を解除しました。
|
829
861
|
models:
|
830
862
|
moderation:
|
831
863
|
fields:
|
832
864
|
hidden_at: '非表示:'
|
833
865
|
report_count: カウント
|
834
|
-
reportable: 報告可能
|
835
866
|
reported_content_url: 報告されたコンテンツ URL
|
836
867
|
reports: レポート
|
837
868
|
visit_url: URL を参照
|