decidim-admin 0.23.1 → 0.24.0.rc2
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 +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/en.yml
CHANGED
@@ -27,12 +27,14 @@ en:
|
|
27
27
|
published_at: Published at
|
28
28
|
weight: Weight
|
29
29
|
id: ID
|
30
|
+
import:
|
31
|
+
user_group_id: Create imports as
|
30
32
|
newsletter:
|
31
33
|
body: Body
|
32
34
|
subject: Subject
|
33
35
|
organization:
|
34
|
-
address: SMTP hostname
|
35
36
|
alert_color: Alert
|
37
|
+
available_authorizations: Available authorizations
|
36
38
|
badges_enabled: Enable badges
|
37
39
|
comments_max_length: Comments max length (Leave 0 for default value)
|
38
40
|
cta_button_path: Call To Action button path
|
@@ -43,6 +45,8 @@ en:
|
|
43
45
|
enable_omnipresent_banner: Show omnipresent banner
|
44
46
|
facebook_handler: Facebook handler
|
45
47
|
favicon: Icon
|
48
|
+
force_authentication: Force authentication
|
49
|
+
force_users_to_authenticate_before_access_organization: Force users to authenticate before access organization
|
46
50
|
from: From email address
|
47
51
|
github_handler: GitHub handler
|
48
52
|
header_snippets: Header snippets
|
@@ -55,6 +59,7 @@ en:
|
|
55
59
|
highlighted_content_banner_image: Image
|
56
60
|
highlighted_content_banner_short_description: Short description
|
57
61
|
highlighted_content_banner_title: Title
|
62
|
+
host: Host
|
58
63
|
instagram_handler: Instagram handler
|
59
64
|
logo: Logo
|
60
65
|
machine_translation_display_priority: Machine translation display priority
|
@@ -67,20 +72,21 @@ en:
|
|
67
72
|
omnipresent_banner_short_description: Short description
|
68
73
|
omnipresent_banner_title: Title
|
69
74
|
omnipresent_banner_url: URL
|
70
|
-
|
71
|
-
|
75
|
+
organization_admin_email: Organization admin email
|
76
|
+
organization_admin_name: Organization admin name
|
77
|
+
organization_locales: Organization locales
|
72
78
|
primary_color: Primary
|
73
79
|
reference_prefix: Reference prefix
|
74
80
|
rich_text_editor_in_public_views: Enable rich text editor for participants
|
75
81
|
secondary_color: Secondary
|
82
|
+
secondary_hosts: Secondary hosts
|
76
83
|
send_welcome_notification: Send welcome notification
|
77
|
-
show_statistics: Show statistics
|
78
84
|
success_color: Success
|
79
85
|
time_zone: Time Zone
|
80
86
|
tos_version: Terms of service version
|
81
87
|
twitter_handler: Twitter handler
|
82
88
|
user_groups_enabled: Enable groups
|
83
|
-
|
89
|
+
users_registration_mode: Users registration mode
|
84
90
|
warning_color: Warning
|
85
91
|
welcome_notification_body: Welcome notification body
|
86
92
|
welcome_notification_subject: Welcome notification subject
|
@@ -96,7 +102,10 @@ en:
|
|
96
102
|
name: Name
|
97
103
|
organization: Organization
|
98
104
|
plural: Plural
|
105
|
+
settings:
|
106
|
+
scope_id: Scope
|
99
107
|
static_page:
|
108
|
+
allow_public_access: Allow access without authentication
|
100
109
|
changed_notably: There have been noticeable changes.
|
101
110
|
content: Content
|
102
111
|
organization: Organization
|
@@ -119,6 +128,10 @@ en:
|
|
119
128
|
allowed_file_content_types: Invalid image file
|
120
129
|
official_img_header:
|
121
130
|
allowed_file_content_types: Invalid image file
|
131
|
+
new_import:
|
132
|
+
attributes:
|
133
|
+
file:
|
134
|
+
invalid_mime_type: Invalid mime type
|
122
135
|
activerecord:
|
123
136
|
attributes:
|
124
137
|
decidim/static_page:
|
@@ -137,21 +150,34 @@ en:
|
|
137
150
|
admin:
|
138
151
|
actions:
|
139
152
|
add: Add
|
153
|
+
attachment:
|
154
|
+
new: New attachment
|
155
|
+
attachment_collection:
|
156
|
+
new: New attachment collection
|
140
157
|
browse: Browse
|
158
|
+
category:
|
159
|
+
new: New category
|
141
160
|
export: Export
|
161
|
+
import: Import
|
142
162
|
manage: Manage
|
143
163
|
new: New %{name}
|
164
|
+
newsletter:
|
165
|
+
new: New newsletter
|
166
|
+
participatory_space_private_user:
|
167
|
+
new: New participatory space private user
|
144
168
|
per_page: Per page
|
145
169
|
permissions: Permissions
|
146
170
|
reject: Reject
|
147
171
|
share: Share
|
172
|
+
user:
|
173
|
+
new: New user
|
148
174
|
verify: Verify
|
149
175
|
admin_terms_of_use:
|
150
176
|
accept:
|
151
177
|
error: There's been an error while accepting the admin terms of use.
|
152
178
|
success: Great! You've accepted the admin terms of use.
|
153
179
|
actions:
|
154
|
-
accept: I agree
|
180
|
+
accept: I agree with the following terms
|
155
181
|
are_you_sure: Are you sure to refuse the admin terms?
|
156
182
|
refuse: Refuse the admin terms
|
157
183
|
title: Agree to the terms and conditions of use
|
@@ -230,6 +256,12 @@ en:
|
|
230
256
|
autocomplete:
|
231
257
|
no_results: No results found
|
232
258
|
search_prompt: Type at least three characters to search
|
259
|
+
block_user:
|
260
|
+
new:
|
261
|
+
action: Block account and send justification
|
262
|
+
description: Blocking an user will render its account unusable, you may provide in your justification and guidelines on ways you deem you would consider unblocking the user.
|
263
|
+
justification: Justification
|
264
|
+
title: Block User %{name}
|
233
265
|
categories:
|
234
266
|
create:
|
235
267
|
error: There was a problem creating this category.
|
@@ -285,6 +317,21 @@ en:
|
|
285
317
|
update:
|
286
318
|
error: There was a problem updating this component.
|
287
319
|
success: The component was updated successfully.
|
320
|
+
conflicts:
|
321
|
+
attempts: Attempts
|
322
|
+
'false': 'No'
|
323
|
+
managed_user_name: Managed User
|
324
|
+
solved: Solved
|
325
|
+
title: Verifications's conflicts
|
326
|
+
transfer:
|
327
|
+
email: Email
|
328
|
+
error: There was a problem transfering the current participant to managed participant.
|
329
|
+
name: Name
|
330
|
+
reason: Reason
|
331
|
+
success: The current transfer has been successfully completed.
|
332
|
+
title: Transfer
|
333
|
+
'true': 'Yes'
|
334
|
+
user_name: User
|
288
335
|
dashboard:
|
289
336
|
show:
|
290
337
|
view_more_logs: View more logs
|
@@ -301,6 +348,9 @@ en:
|
|
301
348
|
category_id_eq:
|
302
349
|
label: Category
|
303
350
|
filter_label: Filter
|
351
|
+
moderations:
|
352
|
+
reportable_type_string_eq:
|
353
|
+
label: Type
|
304
354
|
officialized_at_null:
|
305
355
|
label: State
|
306
356
|
values:
|
@@ -321,9 +371,16 @@ en:
|
|
321
371
|
search_label: Search
|
322
372
|
search_placeholder:
|
323
373
|
name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname.
|
374
|
+
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content.
|
324
375
|
title_cont: Search %{collection} by title.
|
325
376
|
state_eq:
|
326
377
|
label: State
|
378
|
+
forms:
|
379
|
+
file_help:
|
380
|
+
import:
|
381
|
+
explanation: 'Guidance for file:'
|
382
|
+
message_1: CSV, JSON and Excel (.xls) files are supported
|
383
|
+
message_2: For CSV files, the separator between columns must be a semicolon (";")
|
327
384
|
help_sections:
|
328
385
|
error: There was a problem updating the help sections
|
329
386
|
form:
|
@@ -362,6 +419,24 @@ en:
|
|
362
419
|
impersonate_existing_managed_user: Manage participant "%{name}"
|
363
420
|
impersonate_existing_user: Manage participant "%{name}"
|
364
421
|
impersonate_new_managed_user: Manage new participant
|
422
|
+
imports:
|
423
|
+
creators:
|
424
|
+
proposalcreator: Proposal creator
|
425
|
+
error: There was a problem during the import
|
426
|
+
help:
|
427
|
+
proposalcreator: The file must have column names title/en and body/en (or another locale which you prefer eg. title/ca and body/ca). Also scope/id and category/id columns are supported.
|
428
|
+
import_from_file: Import from a file
|
429
|
+
invalid_lines: Found error in resource number %{invalid_lines}
|
430
|
+
new:
|
431
|
+
accepted_mime_types:
|
432
|
+
csv: csv
|
433
|
+
json: json
|
434
|
+
xls: xls
|
435
|
+
actions:
|
436
|
+
back: Back
|
437
|
+
file_legend: Add an import file that will be parsed.
|
438
|
+
import: Import
|
439
|
+
notice: "%{number} %{resource_name} successfully imported"
|
365
440
|
logs:
|
366
441
|
logs_list:
|
367
442
|
no_logs_yet: There are no logs yet
|
@@ -385,8 +460,10 @@ en:
|
|
385
460
|
help_sections: Help sections
|
386
461
|
homepage: Homepage
|
387
462
|
impersonations: Impersonations
|
463
|
+
moderation: Global moderations
|
388
464
|
newsletters: Newsletters
|
389
465
|
participants: Participants
|
466
|
+
reported_users: Reported Users
|
390
467
|
scope_types: Scope types
|
391
468
|
scopes: Scopes
|
392
469
|
settings: Settings
|
@@ -474,6 +551,26 @@ en:
|
|
474
551
|
phone: Phone
|
475
552
|
state: State
|
476
553
|
users_count: Participants count
|
554
|
+
moderated_users:
|
555
|
+
index:
|
556
|
+
actions:
|
557
|
+
block: Block User
|
558
|
+
title: Actions
|
559
|
+
unblock: Unblock User
|
560
|
+
unreport: Unreport
|
561
|
+
name: Name
|
562
|
+
nickname: Nickname
|
563
|
+
reason: Reason
|
564
|
+
reports: Reports count
|
565
|
+
title: Listing reported users
|
566
|
+
report:
|
567
|
+
reasons:
|
568
|
+
does_not_belong: Does not belong
|
569
|
+
offensive: Offensive
|
570
|
+
spam: Spam
|
571
|
+
tabs:
|
572
|
+
blocked: Blocked
|
573
|
+
unblocked: Not Blocked
|
477
574
|
moderations:
|
478
575
|
index:
|
479
576
|
title: Moderations
|
@@ -482,6 +579,21 @@ en:
|
|
482
579
|
does_not_belong: Does not belong
|
483
580
|
offensive: Offensive
|
484
581
|
spam: Spam
|
582
|
+
reports:
|
583
|
+
index:
|
584
|
+
author: Author(s)
|
585
|
+
callout_html: A content appears in the moderation panel when it has been signaled by a user (can be anyone with a registered account) by clicking on the %{icon} flag next to the item.
|
586
|
+
content_original_language: Content original language
|
587
|
+
participatory_space: Participatory space
|
588
|
+
reported_content: Reported content
|
589
|
+
see_current: See current
|
590
|
+
see_original: See original
|
591
|
+
title: Moderation reports
|
592
|
+
show:
|
593
|
+
report_details: Reason details
|
594
|
+
report_language: Report language
|
595
|
+
report_reason: Reason
|
596
|
+
title: Report details
|
485
597
|
newsletter_templates:
|
486
598
|
index:
|
487
599
|
preview_template: Preview
|
@@ -547,6 +659,9 @@ en:
|
|
547
659
|
error: There was a problem updating this newsletter.
|
548
660
|
success: Newsletter updated successfully. Please review it before sending.
|
549
661
|
officializations:
|
662
|
+
block:
|
663
|
+
error: There was an error blocking the participant
|
664
|
+
success: Participant successfully blocked
|
550
665
|
create:
|
551
666
|
success: Participant successfully officialized
|
552
667
|
destroy:
|
@@ -554,6 +669,7 @@ en:
|
|
554
669
|
index:
|
555
670
|
actions: Actions
|
556
671
|
badge: Badge
|
672
|
+
block: Block User
|
557
673
|
created_at: Created At
|
558
674
|
name: Name
|
559
675
|
nickname: Nickname
|
@@ -561,8 +677,10 @@ en:
|
|
561
677
|
officialize: Officialize
|
562
678
|
officialized: Officialized
|
563
679
|
reofficialize: Reofficialize
|
680
|
+
reports: Reports
|
564
681
|
show_email: Show email address
|
565
682
|
status: Status
|
683
|
+
unblock: Unblock User
|
566
684
|
unofficialize: Unofficialize
|
567
685
|
new:
|
568
686
|
badge: Officialization badge
|
@@ -576,6 +694,9 @@ en:
|
|
576
694
|
hidden: hidden
|
577
695
|
show: Show
|
578
696
|
title: Show participant email address
|
697
|
+
unblock:
|
698
|
+
error: There was an error unblocking the participant
|
699
|
+
success: Participant successfully unblocked
|
579
700
|
organization:
|
580
701
|
edit:
|
581
702
|
title: Edit organization
|
@@ -587,7 +708,7 @@ en:
|
|
587
708
|
rich_text_editor_in_public_views_help: In some text areas, participants will be able to insert some HTML tags by using the rich text editor.
|
588
709
|
social_handlers: Social
|
589
710
|
twitter: Twitter
|
590
|
-
url:
|
711
|
+
url: URL
|
591
712
|
youtube: YouTube
|
592
713
|
update:
|
593
714
|
error: There was a problem updating this organization.
|
@@ -622,7 +743,7 @@ en:
|
|
622
743
|
error: There was a problem deleting a private participant for this participatory space.
|
623
744
|
success: Participatory space private participant access successfully destroyed.
|
624
745
|
index:
|
625
|
-
import_via_csv: Import via
|
746
|
+
import_via_csv: Import via CSV
|
626
747
|
title: Participatory space private participant
|
627
748
|
new:
|
628
749
|
create: Create
|
@@ -745,6 +866,7 @@ en:
|
|
745
866
|
impersonatable_users: Manageable participants
|
746
867
|
impersonations: Participants management
|
747
868
|
metrics: Metrics
|
869
|
+
panel: Admin
|
748
870
|
participants: Participants
|
749
871
|
scope_types: Scope types
|
750
872
|
scopes: Scopes
|
@@ -808,8 +930,19 @@ en:
|
|
808
930
|
errors:
|
809
931
|
impersonate_user:
|
810
932
|
reason: You need to provide a reason when managing a non managed participant
|
933
|
+
metrics:
|
934
|
+
blocked_users:
|
935
|
+
object: blocked users
|
936
|
+
title: Blocked users
|
937
|
+
reported_users:
|
938
|
+
object: reported users
|
939
|
+
title: Reported users
|
940
|
+
user_reports:
|
941
|
+
object: user reports
|
942
|
+
title: User reports
|
811
943
|
moderations:
|
812
944
|
actions:
|
945
|
+
expand: Expand
|
813
946
|
hidden: Hidden
|
814
947
|
hide: Hide
|
815
948
|
not_hidden: Not hidden
|
@@ -830,18 +963,28 @@ en:
|
|
830
963
|
models:
|
831
964
|
moderation:
|
832
965
|
fields:
|
966
|
+
created_at: Creation date
|
833
967
|
hidden_at: Hidden at
|
968
|
+
participatory_space: Participatory space
|
834
969
|
report_count: Count
|
835
|
-
|
970
|
+
reportable_id: Id
|
971
|
+
reportable_type: Type
|
836
972
|
reported_content_url: Reported content URL
|
837
973
|
reports: Reports
|
838
974
|
visit_url: Visit URL
|
975
|
+
report:
|
976
|
+
fields:
|
977
|
+
details: Reason details
|
978
|
+
locale: Language
|
979
|
+
reason: Reason
|
839
980
|
errors:
|
840
981
|
messages:
|
841
982
|
invalid_json: Invalid JSON
|
842
983
|
layouts:
|
843
984
|
decidim:
|
844
985
|
admin:
|
986
|
+
global_moderations:
|
987
|
+
title: Global moderations
|
845
988
|
newsletters:
|
846
989
|
title: Newsletters
|
847
990
|
settings:
|
data/config/locales/es-MX.yml
CHANGED
@@ -26,12 +26,14 @@ es-MX:
|
|
26
26
|
published_at: Publicado en
|
27
27
|
weight: Peso
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Importar como
|
29
31
|
newsletter:
|
30
32
|
body: Cuerpo
|
31
33
|
subject: Asunto
|
32
34
|
organization:
|
33
|
-
address: Nombre de host SMTP
|
34
35
|
alert_color: Alerta
|
36
|
+
available_authorizations: Autorizaciones disponibles
|
35
37
|
badges_enabled: Habilitar insignias
|
36
38
|
comments_max_length: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
37
39
|
cta_button_path: Ruta del botón de acción principal
|
@@ -42,6 +44,8 @@ es-MX:
|
|
42
44
|
enable_omnipresent_banner: Mostrar banner omnipresente
|
43
45
|
facebook_handler: Nombre en Facebook
|
44
46
|
favicon: Icono
|
47
|
+
force_authentication: Forzar autenticación
|
48
|
+
force_users_to_authenticate_before_access_organization: Forzar a las usuarias a autenticarse antes de acceder a la organización
|
45
49
|
from: Correo electrónico del remitente
|
46
50
|
github_handler: Nombre en GitHub
|
47
51
|
header_snippets: Snippets de encabezado
|
@@ -54,6 +58,7 @@ es-MX:
|
|
54
58
|
highlighted_content_banner_image: Imagen
|
55
59
|
highlighted_content_banner_short_description: Descripción breve
|
56
60
|
highlighted_content_banner_title: Título
|
61
|
+
host: Host
|
57
62
|
instagram_handler: Nombre de Instagram
|
58
63
|
logo: Logo
|
59
64
|
machine_translation_display_priority: Prioridad de la traducción automática
|
@@ -66,20 +71,21 @@ es-MX:
|
|
66
71
|
omnipresent_banner_short_description: Descripción breve
|
67
72
|
omnipresent_banner_title: Título
|
68
73
|
omnipresent_banner_url: URL
|
69
|
-
|
70
|
-
|
74
|
+
organization_admin_email: Email del administrador de la organización
|
75
|
+
organization_admin_name: Nombre de administrador de la organización
|
76
|
+
organization_locales: Idiomas de la organización
|
71
77
|
primary_color: Primario
|
72
78
|
reference_prefix: Prefijo de la referencia
|
73
79
|
rich_text_editor_in_public_views: Habilitar editor de texto enriquecido para las participantes
|
74
80
|
secondary_color: Secundario
|
81
|
+
secondary_hosts: Hosts secundarios
|
75
82
|
send_welcome_notification: Enviar notificación de bienvenida
|
76
|
-
show_statistics: Mostrar estadísticas
|
77
83
|
success_color: Éxito
|
78
84
|
time_zone: Zona Horaria
|
79
85
|
tos_version: Versión de los Términos de Servicio
|
80
86
|
twitter_handler: Nombre de Twitter
|
81
87
|
user_groups_enabled: Habilitar grupos de usuarios
|
82
|
-
|
88
|
+
users_registration_mode: Modo de registro de usuarios
|
83
89
|
warning_color: Advertencia
|
84
90
|
welcome_notification_body: Cuerpo del mensaje de notificación de bienvenida
|
85
91
|
welcome_notification_subject: Asunto del mensaje de notificación de bienvenida
|
@@ -95,7 +101,10 @@ es-MX:
|
|
95
101
|
name: Nombre
|
96
102
|
organization: Organización
|
97
103
|
plural: Plural
|
104
|
+
settings:
|
105
|
+
scope_id: Ámbito
|
98
106
|
static_page:
|
107
|
+
allow_public_access: Permitir el acceso sin autenticación
|
99
108
|
changed_notably: Ha habido cambios notables.
|
100
109
|
content: Contenido
|
101
110
|
organization: Organización
|
@@ -118,6 +127,10 @@ es-MX:
|
|
118
127
|
allowed_file_content_types: Archivo de imagen no válido
|
119
128
|
official_img_header:
|
120
129
|
allowed_file_content_types: Archivo de imagen no válido
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Tipo de mime inválido
|
121
134
|
activerecord:
|
122
135
|
attributes:
|
123
136
|
decidim/static_page:
|
@@ -136,21 +149,34 @@ es-MX:
|
|
136
149
|
admin:
|
137
150
|
actions:
|
138
151
|
add: Añadir
|
152
|
+
attachment:
|
153
|
+
new: Nuevo archivo adjunto
|
154
|
+
attachment_collection:
|
155
|
+
new: Nueva colección de archivos adjuntos
|
139
156
|
browse: Explorar
|
157
|
+
category:
|
158
|
+
new: Nueva categoría
|
140
159
|
export: Exportar
|
160
|
+
import: Importar
|
141
161
|
manage: Gestionar
|
142
162
|
new: Nuevo %{name}
|
163
|
+
newsletter:
|
164
|
+
new: Nuevo boletín
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Nuevo usuario privado del espacio participativo
|
143
167
|
per_page: Por página
|
144
168
|
permissions: Permisos
|
145
169
|
reject: Rechazar
|
146
170
|
share: Compartir
|
171
|
+
user:
|
172
|
+
new: Nuevo ususario
|
147
173
|
verify: Verificar
|
148
174
|
admin_terms_of_use:
|
149
175
|
accept:
|
150
176
|
error: Ha habido un error al aceptar los Términos y Condiciones de Administración.
|
151
177
|
success: '¡Genial! Has aceptado los Términos y Condiciones de Administración.'
|
152
178
|
actions:
|
153
|
-
accept: Estoy de acuerdo con
|
179
|
+
accept: Estoy de acuerdo con los siguientes términos
|
154
180
|
are_you_sure: '¿Estás seguro de rechazar los Términos y Condiciones de Administración?'
|
155
181
|
refuse: Rechazar los Términos y Condiciones de Administración
|
156
182
|
title: Acepto los Términos y Condiciones de Administración
|
@@ -229,6 +255,12 @@ es-MX:
|
|
229
255
|
autocomplete:
|
230
256
|
no_results: No se han encontrado resultados
|
231
257
|
search_prompt: Escriba al menos tres caracteres para buscar
|
258
|
+
block_user:
|
259
|
+
new:
|
260
|
+
action: Bloquear cuenta y enviar justificación
|
261
|
+
description: El bloqueo de una usuaria dejará su cuenta inservible, puede proporcionar en su justificación y directrices sobre las formas que consideres para desbloquear a la usuaria.
|
262
|
+
justification: Justificación
|
263
|
+
title: Bloquear a la usuaria %{name}
|
232
264
|
categories:
|
233
265
|
create:
|
234
266
|
error: Se ha producido un error al crear esta categoría.
|
@@ -284,6 +316,21 @@ es-MX:
|
|
284
316
|
update:
|
285
317
|
error: Se ha producido un error al actualizar este componente.
|
286
318
|
success: El componente se actualizó con éxito.
|
319
|
+
conflicts:
|
320
|
+
attempts: Intentos
|
321
|
+
'false': 'No'
|
322
|
+
managed_user_name: Usuario gestionado
|
323
|
+
solved: Resuelto
|
324
|
+
title: Conflictos de verificaciones
|
325
|
+
transfer:
|
326
|
+
email: Correo electrónico
|
327
|
+
error: Hubo un problema al transferir el participante actual a un participante gestionado.
|
328
|
+
name: Nombre
|
329
|
+
reason: Motivo
|
330
|
+
success: La transferencia actual se ha completado correctamente.
|
331
|
+
title: Transferir
|
332
|
+
'true': 'Sí'
|
333
|
+
user_name: Usuaria
|
287
334
|
dashboard:
|
288
335
|
show:
|
289
336
|
view_more_logs: Ver más registros
|
@@ -300,6 +347,9 @@ es-MX:
|
|
300
347
|
category_id_eq:
|
301
348
|
label: Categoría
|
302
349
|
filter_label: Filtro
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Tipo
|
303
353
|
officialized_at_null:
|
304
354
|
label: Estado
|
305
355
|
values:
|
@@ -320,9 +370,16 @@ es-MX:
|
|
320
370
|
search_label: Buscar
|
321
371
|
search_placeholder:
|
322
372
|
name_or_nickname_or_email_cont: Buscar %{collection} por correo electrónico, nombre o alias.
|
373
|
+
reported_id_string_or_reported_content_cont: Buscar %{collection} por contenido o id reportable.
|
323
374
|
title_cont: Buscar %{collection} por título.
|
324
375
|
state_eq:
|
325
376
|
label: Estado
|
377
|
+
forms:
|
378
|
+
file_help:
|
379
|
+
import:
|
380
|
+
explanation: 'Instrucciones para el archivo:'
|
381
|
+
message_1: Los archivos CSV, JSON y Excel (.xls) están soportados
|
382
|
+
message_2: Para archivos CSV, el separador entre columnas debe ser un punto y coma (";")
|
326
383
|
help_sections:
|
327
384
|
error: Se ha producido un error al actualizar las secciones de ayuda
|
328
385
|
form:
|
@@ -361,6 +418,24 @@ es-MX:
|
|
361
418
|
impersonate_existing_managed_user: Impersonar al usuario administrado "%{name}"
|
362
419
|
impersonate_existing_user: Impersonar usuario "%{name}"
|
363
420
|
impersonate_new_managed_user: Impersonar a un nuevo usuario administrado
|
421
|
+
imports:
|
422
|
+
creators:
|
423
|
+
proposalcreator: Creador de propuesta
|
424
|
+
error: Se ha producido un error durante la importación
|
425
|
+
help:
|
426
|
+
proposalcreator: El archivo debe incluir los nombres de columna title/en y body/en (u otro idioma de tu preferencia, por ejemplo title/es y body/es). También se admiten las columnas scope/id y category/id.
|
427
|
+
import_from_file: Importar desde un archivo
|
428
|
+
invalid_lines: Se ha encontrado un error en el número de recurso %{invalid_lines}
|
429
|
+
new:
|
430
|
+
accepted_mime_types:
|
431
|
+
csv: csv
|
432
|
+
json: json
|
433
|
+
xls: xls
|
434
|
+
actions:
|
435
|
+
back: Volver
|
436
|
+
file_legend: Añadir un archivo de importación que será procesado.
|
437
|
+
import: Importar
|
438
|
+
notice: "%{number} %{resource_name} importado correctamente"
|
364
439
|
logs:
|
365
440
|
logs_list:
|
366
441
|
no_logs_yet: Aún no hay ningún registro de actividad
|
@@ -384,8 +459,10 @@ es-MX:
|
|
384
459
|
help_sections: Secciones de ayuda
|
385
460
|
homepage: Página principal
|
386
461
|
impersonations: Impersonaciones
|
462
|
+
moderation: Moderaciones globales
|
387
463
|
newsletters: Boletines
|
388
464
|
participants: Participantes
|
465
|
+
reported_users: Usuarias reportadas
|
389
466
|
scope_types: Tipos de ámbito
|
390
467
|
scopes: Ámbitos
|
391
468
|
settings: Configuración
|
@@ -473,6 +550,26 @@ es-MX:
|
|
473
550
|
phone: Teléfono
|
474
551
|
state: Estado
|
475
552
|
users_count: Número de usuarios
|
553
|
+
moderated_users:
|
554
|
+
index:
|
555
|
+
actions:
|
556
|
+
block: Bloquear usuaria
|
557
|
+
title: Acciones
|
558
|
+
unblock: Desbloquear usuaria
|
559
|
+
unreport: Deshacer denuncia
|
560
|
+
name: Nombre
|
561
|
+
nickname: Alias
|
562
|
+
reason: Motivo
|
563
|
+
reports: Cantidad de veces reportado
|
564
|
+
title: Listando usuarios reportados
|
565
|
+
report:
|
566
|
+
reasons:
|
567
|
+
does_not_belong: No pertenece
|
568
|
+
offensive: Ofensivo
|
569
|
+
spam: Contenido no deseado
|
570
|
+
tabs:
|
571
|
+
blocked: Bloqueado
|
572
|
+
unblocked: No bloqueado
|
476
573
|
moderations:
|
477
574
|
index:
|
478
575
|
title: Moderaciones
|
@@ -481,6 +578,21 @@ es-MX:
|
|
481
578
|
does_not_belong: No pertenece
|
482
579
|
offensive: Ofensiva
|
483
580
|
spam: Contenido no deseado
|
581
|
+
reports:
|
582
|
+
index:
|
583
|
+
author: Autor(as)
|
584
|
+
callout_html: Un contenido aparece en el panel de moderación cuando ha sido reportado por una usuaria (puede ser cualquier persona con una cuenta registrada) haciendo clic en el icono %{icon} junto al contenido.
|
585
|
+
content_original_language: Idioma del contenido original
|
586
|
+
participatory_space: Espacio de participación
|
587
|
+
reported_content: Contenido reportado
|
588
|
+
see_current: Ver actual
|
589
|
+
see_original: Ver original
|
590
|
+
title: Informes de moderación
|
591
|
+
show:
|
592
|
+
report_details: Detalles del motivo
|
593
|
+
report_language: Idioma del informe
|
594
|
+
report_reason: Motivo
|
595
|
+
title: Detalles del informe
|
484
596
|
newsletter_templates:
|
485
597
|
index:
|
486
598
|
preview_template: Previsualizar
|
@@ -546,6 +658,9 @@ es-MX:
|
|
546
658
|
error: Se ha producido un error al actualizar este boletín.
|
547
659
|
success: Boletín actualizado correctamente. Por favor revísalo antes de enviarlo.
|
548
660
|
officializations:
|
661
|
+
block:
|
662
|
+
error: Se ha producido un error al bloquear a la participante
|
663
|
+
success: Participante bloqueada correctamente
|
549
664
|
create:
|
550
665
|
success: Usuario oficializado con éxito
|
551
666
|
destroy:
|
@@ -553,6 +668,7 @@ es-MX:
|
|
553
668
|
index:
|
554
669
|
actions: Acciones
|
555
670
|
badge: Distintivo
|
671
|
+
block: Bloquear usuaria
|
556
672
|
created_at: Creado el
|
557
673
|
name: Nombre
|
558
674
|
nickname: Apodo
|
@@ -560,8 +676,10 @@ es-MX:
|
|
560
676
|
officialize: Oficializar
|
561
677
|
officialized: Oficializado
|
562
678
|
reofficialize: Re-oficializar
|
679
|
+
reports: Informes
|
563
680
|
show_email: Mostrar la dirección de correo electrónico
|
564
681
|
status: Estado
|
682
|
+
unblock: Desbloquear usuaria
|
565
683
|
unofficialize: Des-oficializar
|
566
684
|
new:
|
567
685
|
badge: Insignia de oficialización
|
@@ -575,6 +693,9 @@ es-MX:
|
|
575
693
|
hidden: oculto
|
576
694
|
show: Mostrar
|
577
695
|
title: Mostrar dirección de correo del participante
|
696
|
+
unblock:
|
697
|
+
error: Se ha producido un error al desbloquear a la participante
|
698
|
+
success: Participante desbloqueada correctamente
|
578
699
|
organization:
|
579
700
|
edit:
|
580
701
|
title: Editar organización
|
@@ -744,6 +865,7 @@ es-MX:
|
|
744
865
|
impersonatable_users: Usuarios manejables
|
745
866
|
impersonations: Gestion de usuarios
|
746
867
|
metrics: Métricas
|
868
|
+
panel: Administradora
|
747
869
|
participants: Usuarios
|
748
870
|
scope_types: Tipos de ámbito
|
749
871
|
scopes: Ámbitos
|
@@ -807,8 +929,19 @@ es-MX:
|
|
807
929
|
errors:
|
808
930
|
impersonate_user:
|
809
931
|
reason: Debe proporcionar una razón para impersonar a un usuario no administrado
|
932
|
+
metrics:
|
933
|
+
blocked_users:
|
934
|
+
object: usuarias bloqueadas
|
935
|
+
title: Usuarias bloqueadas
|
936
|
+
reported_users:
|
937
|
+
object: usuarias reportadas
|
938
|
+
title: Usuarias reportadas
|
939
|
+
user_reports:
|
940
|
+
object: reportes de usuaria
|
941
|
+
title: Reportes de usuaria
|
810
942
|
moderations:
|
811
943
|
actions:
|
944
|
+
expand: Expandir
|
812
945
|
hidden: Ocultas
|
813
946
|
hide: Esconder
|
814
947
|
not_hidden: No ocultas
|
@@ -829,18 +962,28 @@ es-MX:
|
|
829
962
|
models:
|
830
963
|
moderation:
|
831
964
|
fields:
|
965
|
+
created_at: Fecha de creación
|
832
966
|
hidden_at: Fecha de ocultación
|
967
|
+
participatory_space: Espacio participativo
|
833
968
|
report_count: Recuento
|
834
|
-
|
969
|
+
reportable_id: Id
|
970
|
+
reportable_type: Tipo
|
835
971
|
reported_content_url: URL del contenido reportado
|
836
972
|
reports: Denuncias
|
837
973
|
visit_url: Visita la URL
|
974
|
+
report:
|
975
|
+
fields:
|
976
|
+
details: Detalles del motivo
|
977
|
+
locale: Idioma
|
978
|
+
reason: Motivo
|
838
979
|
errors:
|
839
980
|
messages:
|
840
981
|
invalid_json: JSON no válido
|
841
982
|
layouts:
|
842
983
|
decidim:
|
843
984
|
admin:
|
985
|
+
global_moderations:
|
986
|
+
title: Moderaciones globales
|
844
987
|
newsletters:
|
845
988
|
title: Boletines
|
846
989
|
settings:
|