decidim-admin 0.30.3 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/commands/decidim/admin/update_organization.rb +18 -3
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page_content_blocks.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/decidim/admin/area_types_controller.rb +2 -2
- data/app/controllers/decidim/admin/areas_controller.rb +2 -2
- data/app/controllers/decidim/admin/block_user_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +3 -3
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/conflicts_controller.rb +1 -1
- data/app/controllers/decidim/admin/dashboard_controller.rb +0 -9
- data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/imports_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +4 -4
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -3
- data/app/controllers/decidim/admin/organization_controller.rb +3 -5
- data/app/controllers/decidim/admin/organization_external_domain_allowlist_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_homepage_controller.rb +4 -0
- data/app/controllers/decidim/admin/participatory_space/user_role_controller.rb +2 -2
- data/app/controllers/decidim/admin/reminders_controller.rb +1 -1
- data/app/controllers/decidim/admin/resource_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/scope_types_controller.rb +2 -2
- data/app/controllers/decidim/admin/scopes_controller.rb +2 -2
- data/app/controllers/decidim/admin/share_tokens_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/controllers/decidim/admin/statistics_controller.rb +34 -0
- data/app/controllers/decidim/admin/taxonomies_controller.rb +2 -2
- data/app/controllers/decidim/admin/taxonomy_filters_controller.rb +2 -2
- data/app/controllers/decidim/admin/taxonomy_items_controller.rb +2 -2
- data/app/controllers/decidim/admin/users_controller.rb +1 -1
- data/app/forms/decidim/admin/block_user_form.rb +1 -1
- data/app/forms/decidim/admin/block_users_form.rb +1 -1
- data/app/forms/decidim/admin/organization_form.rb +35 -6
- data/app/helpers/decidim/admin/filterable_helper.rb +27 -8
- data/app/helpers/decidim/admin/icon_link_helper.rb +2 -3
- data/app/helpers/decidim/admin/icon_with_tooltip_helper.rb +1 -2
- data/app/helpers/decidim/admin/imports_helper.rb +0 -5
- data/app/helpers/decidim/admin/menu_helper.rb +3 -2
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +1 -1
- data/app/helpers/decidim/admin/resource_permissions_helper.rb +13 -13
- data/app/helpers/decidim/admin/settings_helper.rb +11 -3
- data/app/jobs/decidim/admin/newsletter_job.rb +1 -0
- data/app/packs/entrypoints/decidim_admin.js +2 -3
- data/app/packs/entrypoints/decidim_admin.scss +1 -1
- data/app/packs/entrypoints/decidim_admin_overrides.scss +1 -1
- data/app/packs/src/decidim/admin/admin_autocomplete.js +2 -2
- data/app/packs/src/decidim/admin/application.js +11 -10
- data/app/packs/src/decidim/admin/budget_rule_toggler.component.js +84 -34
- data/app/packs/src/decidim/admin/controllers/slug/controller.js +25 -0
- data/app/packs/src/decidim/admin/controllers/slug/slug.test.js +239 -0
- data/app/packs/src/decidim/admin/css_preview.js +1 -1
- data/app/packs/src/decidim/admin/draggable-list.js +1 -1
- data/app/packs/src/decidim/admin/draggable-table.js +1 -1
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +13 -12
- data/app/packs/src/decidim/admin/external_domain_allowlist.js +1 -1
- data/app/packs/src/decidim/admin/form.js +21 -4
- data/app/packs/src/decidim/admin/global_moderations.js +2 -2
- data/app/packs/src/decidim/admin/managed_moderated_users.js +2 -2
- data/app/packs/src/decidim/admin/moderations.js +1 -1
- data/app/packs/src/decidim/admin/newsletters.js +1 -1
- data/app/packs/src/decidim/admin/officializations.js +1 -1
- data/app/packs/src/decidim/admin/participatory_space_search.js +2 -2
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +1 -1
- data/app/packs/src/decidim/admin/resources_permissions.js +1 -1
- data/app/packs/src/decidim/admin/sortable.js +1 -1
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +1 -1
- data/app/packs/src/decidim/admin/tab_focus.js +1 -1
- data/app/packs/src/decidim/admin/text_copy.js +1 -1
- data/app/packs/src/decidim/admin/triadic_color_picker.js +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +2 -2
- data/app/packs/stylesheets/decidim/admin/_dropdown.scss +12 -2
- data/app/packs/stylesheets/decidim/admin/_filters.scss +1 -57
- data/app/packs/stylesheets/decidim/admin/_forms.scss +14 -32
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +2 -10
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +1 -5
- data/app/packs/stylesheets/decidim/admin/_legacy_foundation.scss +0 -412
- data/app/packs/stylesheets/decidim/admin/_main-nav.scss +75 -3
- data/app/packs/stylesheets/decidim/admin/_secondary-nav.scss +6 -10
- data/app/packs/stylesheets/decidim/admin/_select_picker.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_sidebar-menu.scss +2 -2
- data/app/packs/stylesheets/decidim/admin/_table-list.scss +25 -7
- data/app/packs/stylesheets/decidim/admin/_tabs.scss +4 -0
- data/app/packs/stylesheets/decidim/admin/_taxonomies.scss +6 -2
- data/app/packs/stylesheets/decidim/admin/application.scss +28 -29
- data/app/permissions/decidim/admin/permissions.rb +17 -5
- data/app/presenters/decidim/admin/dashboard_statistic_charts_presenter.rb +18 -0
- data/app/queries/decidim/admin/user_filter.rb +3 -3
- data/app/views/decidim/admin/area_types/index.html.erb +34 -11
- data/app/views/decidim/admin/areas/index.html.erb +32 -12
- data/app/views/decidim/admin/attachment_collections/index.html.erb +42 -14
- data/app/views/decidim/admin/attachments/index.html.erb +32 -13
- data/app/views/decidim/admin/block_user/bulk_new.html.erb +1 -1
- data/app/views/decidim/admin/block_user/new.html.erb +1 -1
- data/app/views/decidim/admin/components/_actions.html.erb +114 -54
- data/app/views/decidim/admin/components/_component_row.html.erb +5 -5
- data/app/views/decidim/admin/components/_components_table.html.erb +1 -1
- data/app/views/decidim/admin/components/_form.html.erb +4 -4
- data/app/views/decidim/admin/components/index.html.erb +12 -13
- data/app/views/decidim/admin/dashboard/show.html.erb +9 -21
- data/app/views/decidim/admin/exports/_dropdown.html.erb +16 -14
- data/app/views/decidim/admin/help_sections/_form.html.erb +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +68 -33
- data/app/views/decidim/admin/imports/_dropdown.html.erb +13 -11
- data/app/views/decidim/admin/imports/new.html.erb +13 -12
- data/app/views/decidim/admin/moderated_users/bulk_actions/_dropdown.html.erb +29 -32
- data/app/views/decidim/admin/moderated_users/index.html.erb +61 -21
- data/app/views/decidim/admin/moderations/_moderation-tr.html.erb +87 -32
- data/app/views/decidim/admin/moderations/_report.html.erb +2 -4
- data/app/views/decidim/admin/moderations/bulk_actions/_dropdown.html.erb +30 -34
- data/app/views/decidim/admin/moderations/index.html.erb +1 -1
- data/app/views/decidim/admin/moderations/reports/index.html.erb +1 -2
- data/app/views/decidim/admin/newsletters/index.html.erb +64 -21
- data/app/views/decidim/admin/officializations/index.html.erb +91 -37
- data/app/views/decidim/admin/organization/_form.html.erb +6 -92
- data/app/views/decidim/admin/organization/edit.html.erb +1 -5
- data/app/views/decidim/admin/organization/form/_admin_terms_of_service.html.erb +15 -0
- data/app/views/decidim/admin/organization/form/_basic_configuration.html.erb +31 -0
- data/app/views/decidim/admin/{organization_appearance → organization}/form/_colors.html.erb +9 -9
- data/app/views/decidim/admin/organization/form/_extra_features.html.erb +84 -0
- data/app/views/decidim/admin/{organization_appearance/form/_images.html.erb → organization/form/_logos.html.erb} +4 -4
- data/app/views/decidim/admin/organization/form/_welcome_notification.html.erb +25 -0
- data/app/views/decidim/admin/organization_external_domain_allowlist/_external_domain.html.erb +8 -6
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +49 -22
- data/app/views/decidim/admin/resource_permissions/edit.html.erb +1 -1
- data/app/views/decidim/admin/scope_types/index.html.erb +31 -12
- data/app/views/decidim/admin/scopes/index.html.erb +40 -13
- data/app/views/decidim/admin/share_tokens/_form.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/edit.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/index.html.erb +69 -12
- data/app/views/decidim/admin/share_tokens/new.html.erb +1 -1
- data/app/views/decidim/admin/shared/_filters.html.erb +8 -10
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +14 -11
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +2 -4
- data/app/views/decidim/admin/static_page_topics/index.html.erb +31 -10
- data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_topic.html.erb +46 -16
- data/app/views/decidim/admin/statistics/_statistics.html.erb +13 -0
- data/app/views/decidim/admin/statistics/index.html.erb +6 -0
- data/app/views/decidim/admin/taxonomies/_form.html.erb +1 -1
- data/app/views/decidim/admin/taxonomies/_row.html.erb +24 -6
- data/app/views/decidim/admin/taxonomies/_table.html.erb +2 -2
- data/app/views/decidim/admin/taxonomies/_taxonomy_actions.html.erb +48 -15
- data/app/views/decidim/admin/taxonomies/edit.html.erb +10 -0
- data/app/views/decidim/admin/taxonomy_filters/_form.html.erb +1 -1
- data/app/views/decidim/admin/taxonomy_filters/_table.html.erb +52 -15
- data/app/views/decidim/admin/taxonomy_filters/new.html.erb +1 -1
- data/app/views/decidim/admin/taxonomy_filters_selector/_component_table.html.erb +38 -23
- data/app/views/decidim/admin/taxonomy_items/_form.html.erb +1 -1
- data/app/views/decidim/admin/users/index.html.erb +48 -24
- data/app/views/layouts/decidim/admin/_application.html.erb +3 -6
- data/app/views/layouts/decidim/admin/_header.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +11 -12
- data/app/views/layouts/decidim/admin/_sidebar_menu.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +4 -4
- data/app/views/layouts/decidim/admin/insights.html.erb +6 -0
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +0 -90
- data/config/locales/bg.yml +1 -110
- data/config/locales/bs-BA.yml +0 -44
- data/config/locales/ca-IT.yml +61 -120
- data/config/locales/ca.yml +61 -120
- data/config/locales/cs.yml +51 -120
- data/config/locales/de.yml +61 -120
- data/config/locales/el.yml +2 -102
- data/config/locales/en.yml +61 -120
- data/config/locales/eo.yml +0 -4
- data/config/locales/es-MX.yml +61 -120
- data/config/locales/es-PY.yml +61 -120
- data/config/locales/es.yml +61 -120
- data/config/locales/eu.yml +61 -120
- data/config/locales/fi-plain.yml +60 -119
- data/config/locales/fi.yml +60 -119
- data/config/locales/fr-CA.yml +61 -119
- data/config/locales/fr.yml +61 -119
- data/config/locales/ga-IE.yml +1 -34
- data/config/locales/gl.yml +0 -95
- data/config/locales/he-IL.yml +0 -8
- data/config/locales/hu.yml +2 -105
- data/config/locales/id-ID.yml +0 -62
- data/config/locales/is-IS.yml +1 -36
- data/config/locales/it.yml +35 -116
- data/config/locales/ja.yml +60 -119
- data/config/locales/kaa.yml +0 -12
- data/config/locales/ko.yml +0 -75
- data/config/locales/lb.yml +2 -95
- data/config/locales/lt.yml +1 -103
- data/config/locales/lv.yml +2 -74
- data/config/locales/nl.yml +2 -96
- data/config/locales/no.yml +2 -96
- data/config/locales/pl.yml +2 -108
- data/config/locales/pt-BR.yml +6 -110
- data/config/locales/pt.yml +2 -96
- data/config/locales/ro-RO.yml +10 -102
- data/config/locales/ru.yml +2 -54
- data/config/locales/sk.yml +2 -72
- data/config/locales/sl.yml +1 -18
- data/config/locales/sq-AL.yml +0 -45
- data/config/locales/sr-CS.yml +1 -44
- data/config/locales/sv.yml +58 -119
- data/config/locales/th-TH.yml +0 -10
- data/config/locales/tr-TR.yml +5 -88
- data/config/locales/uk.yml +1 -45
- data/config/locales/val-ES.yml +0 -1
- data/config/locales/zh-CN.yml +0 -72
- data/config/locales/zh-TW.yml +1 -102
- data/config/routes.rb +1 -12
- data/lib/decidim/admin/engine.rb +5 -1
- data/lib/decidim/admin/form_builder.rb +1 -1
- data/lib/decidim/admin/menu.rb +32 -16
- data/lib/decidim/admin/test/filterable_examples.rb +8 -18
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +4 -4
- data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +2 -2
- data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +9 -6
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +1 -0
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +5 -1
- data/lib/decidim/admin/test/manage_attachments_examples.rb +5 -1
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +31 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +12 -5
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +12 -6
- data/lib/decidim/admin/test/manage_resource_soft_deletion_examples.rb +19 -4
- data/lib/decidim/admin/test/manage_taxonomy_filters_examples.rb +28 -8
- data/lib/decidim/admin/version.rb +1 -1
- metadata +22 -35
- data/app/commands/decidim/admin/process_user_group_verification_csv.rb +0 -44
- data/app/commands/decidim/admin/reject_user_group.rb +0 -42
- data/app/commands/decidim/admin/update_organization_appearance.rb +0 -39
- data/app/commands/decidim/admin/update_user_groups.rb +0 -44
- data/app/commands/decidim/admin/verify_user_group.rb +0 -43
- data/app/controllers/concerns/decidim/admin/user_groups/filterable.rb +0 -45
- data/app/controllers/concerns/decidim/admin/user_groups.rb +0 -24
- data/app/controllers/decidim/admin/metrics_controller.rb +0 -23
- data/app/controllers/decidim/admin/user_groups_controller.rb +0 -76
- data/app/controllers/decidim/admin/user_groups_csv_verifications_controller.rb +0 -36
- data/app/forms/decidim/admin/organization_appearance_form.rb +0 -88
- data/app/forms/decidim/admin/user_group_csv_verification_form.rb +0 -25
- data/app/jobs/decidim/admin/verify_user_group_from_csv_job.rb +0 -30
- data/app/packs/src/decidim/admin/welcome_notification.js +0 -32
- data/app/packs/stylesheets/decidim/admin/_bulk_actions.scss +0 -16
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +0 -33
- data/app/queries/decidim/admin/user_groups_evaluation.rb +0 -56
- data/app/views/decidim/admin/metrics/_metrics.html.erb +0 -16
- data/app/views/decidim/admin/metrics/index.html.erb +0 -7
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +0 -100
- data/app/views/decidim/admin/organization_appearance/edit.html.erb +0 -18
- data/app/views/decidim/admin/organization_appearance/form/_header_snippets.html.erb +0 -17
- data/app/views/decidim/admin/user_groups/index.html.erb +0 -68
- data/app/views/decidim/admin/user_groups_csv_verifications/new.html.erb +0 -31
- /data/app/views/decidim/admin/{organization_appearance → organization}/form/_minimap.html.erb +0 -0
data/config/locales/en.yml
CHANGED
|
@@ -34,8 +34,6 @@ en:
|
|
|
34
34
|
help_section:
|
|
35
35
|
content: Content
|
|
36
36
|
id: ID
|
|
37
|
-
import:
|
|
38
|
-
user_group_id: Create imports as
|
|
39
37
|
newsletter:
|
|
40
38
|
body: Body
|
|
41
39
|
send_to_all_users: Send to all users
|
|
@@ -48,12 +46,9 @@ en:
|
|
|
48
46
|
available_authorizations: Available authorizations
|
|
49
47
|
badges_enabled: Enable badges
|
|
50
48
|
comments_max_length: Comments max length (Leave 0 for default value)
|
|
51
|
-
cta_button_path: Call To Action button path
|
|
52
|
-
cta_button_text: Call To Action button text
|
|
53
49
|
customize_welcome_notification: Customize welcome notification
|
|
54
50
|
default_locale: Default locale
|
|
55
51
|
description: Description
|
|
56
|
-
enable_machine_translations: Enable machine translations
|
|
57
52
|
enable_omnipresent_banner: Show omnipresent banner
|
|
58
53
|
enable_participatory_space_filters: Enable participatory space filters
|
|
59
54
|
facebook_handler: Facebook handler
|
|
@@ -65,13 +60,6 @@ en:
|
|
|
65
60
|
header_snippets: Header snippets
|
|
66
61
|
highlight_alternative_color: Highlight, alternative
|
|
67
62
|
highlight_color: Highlight
|
|
68
|
-
highlighted_content_banner_action_subtitle: Action button subtitle
|
|
69
|
-
highlighted_content_banner_action_title: Action button title
|
|
70
|
-
highlighted_content_banner_action_url: Action button URL
|
|
71
|
-
highlighted_content_banner_enabled: Show the highlighted content banner
|
|
72
|
-
highlighted_content_banner_image: Image
|
|
73
|
-
highlighted_content_banner_short_description: Short description
|
|
74
|
-
highlighted_content_banner_title: Title
|
|
75
63
|
host: Host
|
|
76
64
|
instagram_handler: Instagram handler
|
|
77
65
|
logo: Logo
|
|
@@ -98,7 +86,6 @@ en:
|
|
|
98
86
|
time_zone: Time Zone
|
|
99
87
|
tos_version: Terms of service version
|
|
100
88
|
twitter_handler: X handler
|
|
101
|
-
user_groups_enabled: Enable groups
|
|
102
89
|
users_registration_mode: Users registration mode
|
|
103
90
|
warning_color: Warning
|
|
104
91
|
welcome_notification_body: Welcome notification body
|
|
@@ -180,12 +167,17 @@ en:
|
|
|
180
167
|
decidim:
|
|
181
168
|
admin:
|
|
182
169
|
actions:
|
|
170
|
+
actions: Actions
|
|
171
|
+
actions_label: Actions for %{resource}
|
|
183
172
|
add: Add
|
|
184
173
|
attachment:
|
|
185
174
|
new: New attachment
|
|
186
175
|
attachment_collection:
|
|
187
176
|
new: New attachment folder
|
|
177
|
+
attachment_collections: Add folder
|
|
178
|
+
attachments: Add attachment
|
|
188
179
|
browse: Browse
|
|
180
|
+
configure: Configure
|
|
189
181
|
confirm_delete_component: |
|
|
190
182
|
Are you sure you want to delete this component?<br>
|
|
191
183
|
This component contains:<br>
|
|
@@ -193,25 +185,24 @@ en:
|
|
|
193
185
|
<li class="font-bold">%{resources_count} resources</li>
|
|
194
186
|
</ul>
|
|
195
187
|
If you change your mind, you can restore it later.
|
|
196
|
-
export: Export
|
|
188
|
+
export: Export
|
|
197
189
|
export-selection: Export selection
|
|
198
190
|
import: Import
|
|
199
|
-
|
|
191
|
+
menu_hidden: Hide from menu
|
|
192
|
+
moderate: Manage moderations
|
|
200
193
|
newsletter:
|
|
201
194
|
new: New newsletter
|
|
202
195
|
participatory_space_private_user:
|
|
203
196
|
new: New participatory space private user
|
|
204
197
|
per_page: Per page
|
|
205
|
-
permissions:
|
|
206
|
-
reject: Reject
|
|
198
|
+
permissions: Manage permissions
|
|
207
199
|
restore: Restore
|
|
208
200
|
send_me_a_test_email: Send me a test email
|
|
209
201
|
share: Share
|
|
210
|
-
share_tokens:
|
|
211
|
-
soft_delete:
|
|
202
|
+
share_tokens: Share link
|
|
203
|
+
soft_delete: Move to trash
|
|
212
204
|
user:
|
|
213
205
|
new: New admin
|
|
214
|
-
verify: Verify
|
|
215
206
|
view_deleted_components: View deleted components
|
|
216
207
|
admin_terms_of_service:
|
|
217
208
|
accept:
|
|
@@ -361,7 +352,7 @@ en:
|
|
|
361
352
|
attempts: Attempts
|
|
362
353
|
'false': 'No'
|
|
363
354
|
index:
|
|
364
|
-
text: Search by current user email, name or nickname
|
|
355
|
+
text: Search by current user email, name or nickname
|
|
365
356
|
managed_user_name: Managed User
|
|
366
357
|
solved: Solved
|
|
367
358
|
title: Verification conflicts
|
|
@@ -463,11 +454,11 @@ en:
|
|
|
463
454
|
remove_all: Remove all
|
|
464
455
|
search_label: Search
|
|
465
456
|
search_placeholder:
|
|
466
|
-
name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname
|
|
457
|
+
name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname
|
|
467
458
|
report_count_eq: Report count eq
|
|
468
|
-
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content
|
|
469
|
-
title_cont: Search %{collection} by title
|
|
470
|
-
user_name_or_user_nickname_or_user_email_cont: Search %{collection} by email, name or nickname
|
|
459
|
+
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content
|
|
460
|
+
title_cont: Search %{collection} by title
|
|
461
|
+
user_name_or_user_nickname_or_user_email_cont: Search %{collection} by email, name or nickname
|
|
471
462
|
state_eq:
|
|
472
463
|
label: State
|
|
473
464
|
values:
|
|
@@ -484,6 +475,10 @@ en:
|
|
|
484
475
|
explanation: 'Guidance for file:'
|
|
485
476
|
message_1: CSV, JSON and Excel (.xlsx) files are supported
|
|
486
477
|
message_2: For CSV files, the separator between columns must be a semicolon (";")
|
|
478
|
+
import_csv:
|
|
479
|
+
explanation: 'Guidance for file:'
|
|
480
|
+
message_1: CSV files are supported
|
|
481
|
+
message_2: ".csv file with emails data"
|
|
487
482
|
help_sections:
|
|
488
483
|
error: There was a problem updating the help sections.
|
|
489
484
|
form:
|
|
@@ -562,7 +557,7 @@ en:
|
|
|
562
557
|
logs:
|
|
563
558
|
filters:
|
|
564
559
|
participatory_space: Find participatory space
|
|
565
|
-
text: Search by user email, name or nickname
|
|
560
|
+
text: Search by user email, name or nickname
|
|
566
561
|
user: User
|
|
567
562
|
logs_list:
|
|
568
563
|
no_logs_yet: There are no logs yet.
|
|
@@ -589,8 +584,9 @@ en:
|
|
|
589
584
|
content: Reported content
|
|
590
585
|
external_domain_allowlist: Allowed external domains
|
|
591
586
|
help_sections: Help sections
|
|
592
|
-
homepage: Homepage
|
|
587
|
+
homepage: Homepage layout
|
|
593
588
|
impersonations: Impersonations
|
|
589
|
+
insights: Insights
|
|
594
590
|
manage: Manage
|
|
595
591
|
moderation: Global moderations
|
|
596
592
|
newsletters: Newsletters
|
|
@@ -603,13 +599,10 @@ en:
|
|
|
603
599
|
share_tokens: Access links
|
|
604
600
|
static_page_topics: Topics
|
|
605
601
|
static_pages: Pages
|
|
602
|
+
statistics: Statistics
|
|
606
603
|
taxonomies: Taxonomies
|
|
607
604
|
taxonomy_filters: Taxonomy filters
|
|
608
|
-
user_groups: Groups
|
|
609
605
|
users: Participants
|
|
610
|
-
metrics:
|
|
611
|
-
metrics:
|
|
612
|
-
see_more_metrics: See more metrics
|
|
613
606
|
models:
|
|
614
607
|
area:
|
|
615
608
|
fields:
|
|
@@ -678,16 +671,6 @@ en:
|
|
|
678
671
|
admin: Admin
|
|
679
672
|
user_manager: Participant manager
|
|
680
673
|
name: Participant
|
|
681
|
-
user_group:
|
|
682
|
-
fields:
|
|
683
|
-
actions: Actions
|
|
684
|
-
created_at: Created at
|
|
685
|
-
document_number: Document number
|
|
686
|
-
name: Name
|
|
687
|
-
nickname: Nickname
|
|
688
|
-
phone: Phone
|
|
689
|
-
state: State
|
|
690
|
-
users_count: Participants count
|
|
691
674
|
moderated_users:
|
|
692
675
|
index:
|
|
693
676
|
actions:
|
|
@@ -706,7 +689,7 @@ en:
|
|
|
706
689
|
update_moderated_user_button: Unreport users
|
|
707
690
|
title: Actions
|
|
708
691
|
unblock: Unblock User
|
|
709
|
-
unreport:
|
|
692
|
+
unreport: Undo the report
|
|
710
693
|
cancel: Cancel
|
|
711
694
|
name: Name
|
|
712
695
|
nickname: Nickname
|
|
@@ -730,10 +713,10 @@ en:
|
|
|
730
713
|
title: Hide
|
|
731
714
|
update_moderation_button: Hide selected resources
|
|
732
715
|
unhide:
|
|
733
|
-
title:
|
|
716
|
+
title: Undo the hide
|
|
734
717
|
update_moderation_button: Unhide selected resources
|
|
735
718
|
unreport:
|
|
736
|
-
title:
|
|
719
|
+
title: Undo the report
|
|
737
720
|
update_moderation_button: Unreport selected resources
|
|
738
721
|
cancel: Cancel
|
|
739
722
|
selected: selected
|
|
@@ -861,7 +844,7 @@ en:
|
|
|
861
844
|
index:
|
|
862
845
|
actions: Actions
|
|
863
846
|
badge: Badge
|
|
864
|
-
block: Block
|
|
847
|
+
block: Block
|
|
865
848
|
created_at: Created At
|
|
866
849
|
name: Name
|
|
867
850
|
nickname: Nickname
|
|
@@ -870,9 +853,10 @@ en:
|
|
|
870
853
|
officialized: Officialized
|
|
871
854
|
reofficialize: Reofficialize
|
|
872
855
|
reports: Reports
|
|
873
|
-
|
|
856
|
+
send_message: Send message
|
|
857
|
+
show_email: Show email
|
|
874
858
|
status: Status
|
|
875
|
-
unblock: Unblock
|
|
859
|
+
unblock: Unblock
|
|
876
860
|
unofficialize: Unofficialize
|
|
877
861
|
new:
|
|
878
862
|
badge: Officialization badge
|
|
@@ -893,41 +877,33 @@ en:
|
|
|
893
877
|
title: Edit organization
|
|
894
878
|
update: Update
|
|
895
879
|
form:
|
|
880
|
+
admin_terms_of_service: Admin terms of service
|
|
881
|
+
basic_configuration: Basic configuration
|
|
882
|
+
colors:
|
|
883
|
+
choose_color: Choose a primary color
|
|
884
|
+
colors_title: Organization colors
|
|
885
|
+
colors_warning_html: Warning! Changing these colors can break the accessibility contrasts. You can check the contrast of your choosing with <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> or other similar tools.
|
|
886
|
+
explanation: This tool helps you out to choose a color scheme, made up of hues equally spaced around the color wheel, that will be used in the organization's website.
|
|
887
|
+
legend_html: Main application colors, based on the <a href="https://www.color-meanings.com/triadic-colors/">Triadic algorithm</a>. The <i>secondary</i> color is auto-calculated from the primary color and the saturation you chose.
|
|
888
|
+
saturation: Saturation
|
|
889
|
+
title: Color chooser
|
|
890
|
+
update_suggested_colors: Update suggested colors
|
|
891
|
+
extra_features: Extra features
|
|
896
892
|
facebook: Facebook
|
|
897
893
|
github: GitHub
|
|
898
894
|
instagram: Instagram
|
|
895
|
+
logos:
|
|
896
|
+
organization_logos: Organization logos
|
|
897
|
+
preview: Preview
|
|
899
898
|
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.
|
|
900
899
|
social_handlers: Social
|
|
901
900
|
twitter: X
|
|
902
901
|
url: URL
|
|
902
|
+
welcome_notification: Welcome notification
|
|
903
903
|
youtube: YouTube
|
|
904
904
|
update:
|
|
905
905
|
error: There was a problem updating this organization.
|
|
906
906
|
success: Organization updated successfully.
|
|
907
|
-
organization_appearance:
|
|
908
|
-
edit:
|
|
909
|
-
update: Update
|
|
910
|
-
form:
|
|
911
|
-
colors:
|
|
912
|
-
choose_color: Choose a primary color
|
|
913
|
-
colors_title: Organization colors
|
|
914
|
-
colors_warning_html: Warning! Changing these colors can break the accessibility contrasts. You can check the contrast of your choosing with <a href="https://webaim.org/resources/contrastchecker">WebAIM Contrast Checker</a> or other similar tools.
|
|
915
|
-
explanation: This tool helps you out to choose a color scheme, made up of hues equally spaced around the color wheel, that will be used in the organization's website.
|
|
916
|
-
legend_html: Main application colors, based on the <a href="https://www.color-meanings.com/triadic-colors/">Triadic algorithm</a>. The <i>secondary</i> color is auto-calculated from the primary color and the saturation you chose.
|
|
917
|
-
saturation: Saturation
|
|
918
|
-
title: Color chooser
|
|
919
|
-
update_suggested_colors: Update suggested colors
|
|
920
|
-
cta_button_path_help_html: 'You can overwrite where the Call To Action button in the homepage links to. Use partial paths, not full URLs here. Accepts letters, numbers, dashes and slashes, and must start with a letter. The Call To Action button is shown in the homepage between the welcome text and the description. Example: %{url}'
|
|
921
|
-
cta_button_text_help: You can overwrite the Call To Action button text in the homepage for each available language in your organization. If not set, the default value will be used. The Call To Action button is shown in the homepage between the welcome text and the description.
|
|
922
|
-
header_snippets:
|
|
923
|
-
header_snippets_help_html: Use this field to add things to the HTML head. The most common use is to integrate third-party services that require some extra JavaScript or CSS. Also, you can use it to add extra meta tags to the HTML. Note that this will only be rendered in public pages, not in the admin section. If the code interacts with external APIs or does not comply with the application security guidelines, it will be necessary to change the Content Security Policy. Read more about <a href="https://docs.decidim.org/develop/en/customize/content_security_policy">on the documentation site</a> .
|
|
924
|
-
title: HTML header snippets
|
|
925
|
-
homepage_appearance_title: Edit homepage appearance
|
|
926
|
-
homepage_highlighted_content_banner_title: Highligted content banner
|
|
927
|
-
images:
|
|
928
|
-
layout_appearance_title: Edit layout appearance
|
|
929
|
-
preview: Preview
|
|
930
|
-
omnipresent_banner_appearance_title: Edit omnipresent banner
|
|
931
907
|
organization_external_domain_allowlist:
|
|
932
908
|
edit:
|
|
933
909
|
update: Update
|
|
@@ -1100,14 +1076,14 @@ en:
|
|
|
1100
1076
|
title: Edit topic
|
|
1101
1077
|
update: Update topic
|
|
1102
1078
|
new:
|
|
1103
|
-
create:
|
|
1079
|
+
create: New topic
|
|
1104
1080
|
title: New topic
|
|
1105
1081
|
update:
|
|
1106
1082
|
error: There was a problem updating this topic.
|
|
1107
1083
|
success: Topic updated successfully
|
|
1108
1084
|
static_pages:
|
|
1109
1085
|
actions:
|
|
1110
|
-
view: View
|
|
1086
|
+
view: View
|
|
1111
1087
|
create:
|
|
1112
1088
|
error: There was a problem creating a new page.
|
|
1113
1089
|
success: Page created successfully.
|
|
@@ -1124,7 +1100,7 @@ en:
|
|
|
1124
1100
|
index:
|
|
1125
1101
|
last_notable_change: Last notable change
|
|
1126
1102
|
new:
|
|
1127
|
-
create:
|
|
1103
|
+
create: New page
|
|
1128
1104
|
title: New page
|
|
1129
1105
|
topic:
|
|
1130
1106
|
empty: There are no pages under this topic.
|
|
@@ -1135,9 +1111,9 @@ en:
|
|
|
1135
1111
|
taxonomies:
|
|
1136
1112
|
actions:
|
|
1137
1113
|
actions: Actions
|
|
1138
|
-
destroy: Delete
|
|
1139
|
-
edit: Edit
|
|
1140
|
-
filters:
|
|
1114
|
+
destroy: Delete
|
|
1115
|
+
edit: Edit
|
|
1116
|
+
filters: Apply filters
|
|
1141
1117
|
breadcrumb:
|
|
1142
1118
|
edit: Edit taxonomy
|
|
1143
1119
|
new: New taxonomy
|
|
@@ -1249,24 +1225,23 @@ en:
|
|
|
1249
1225
|
authorization_workflows: Verification methods
|
|
1250
1226
|
dashboard: Dashboard
|
|
1251
1227
|
edit_external_domains: Allowed list of external domains
|
|
1252
|
-
edit_landing_page: Page contents
|
|
1253
|
-
edit_organization_appearance: Edit homepage appearance
|
|
1254
1228
|
impersonatable_users: Manageable participants
|
|
1255
1229
|
impersonations: Participants management
|
|
1256
1230
|
menu: Menu
|
|
1257
|
-
metrics: Metrics
|
|
1258
1231
|
page_topics: Topics
|
|
1259
1232
|
pages: Pages
|
|
1260
1233
|
panel: Admin
|
|
1261
1234
|
participants: Participants
|
|
1262
1235
|
scope_types: Scope types
|
|
1263
1236
|
scopes: Scopes
|
|
1264
|
-
statistics:
|
|
1237
|
+
statistics: Statistics
|
|
1265
1238
|
taxonomies: Taxonomies
|
|
1266
1239
|
taxonomy_filters: Taxonomy filters for "%{taxonomy}"
|
|
1267
|
-
user_groups: Groups
|
|
1268
1240
|
users: Administrators
|
|
1269
1241
|
tooltips:
|
|
1242
|
+
cannot_destroy_taxonomy_filter: Cannot destroy this taxonomy filter
|
|
1243
|
+
cannot_edit_taxonomy_filter: Cannot edit this taxonomy filter
|
|
1244
|
+
deleted_attachment_collections_info: Cannot delete this folder because it has attachments.
|
|
1270
1245
|
deleted_component_info: This component can only be deleted if status is 'Unpublished'.
|
|
1271
1246
|
trash_management:
|
|
1272
1247
|
restore:
|
|
@@ -1275,32 +1250,6 @@ en:
|
|
|
1275
1250
|
soft_delete:
|
|
1276
1251
|
invalid: There was a problem deleting %{resource_name}.
|
|
1277
1252
|
success: "%{resource_name} successfully deleted."
|
|
1278
|
-
user_group:
|
|
1279
|
-
csv_verify:
|
|
1280
|
-
invalid: There was a problem reading the CSV file.
|
|
1281
|
-
success: CSV file uploaded successfully, we are verifying the groups matching the criteria. This might take a while.
|
|
1282
|
-
reject:
|
|
1283
|
-
invalid: There was a problem rejecting this group.
|
|
1284
|
-
success: Group successfully rejected.
|
|
1285
|
-
verify:
|
|
1286
|
-
invalid: There was a problem verifying this group.
|
|
1287
|
-
success: Group successfully verified.
|
|
1288
|
-
user_groups:
|
|
1289
|
-
index:
|
|
1290
|
-
state:
|
|
1291
|
-
pending: Pending
|
|
1292
|
-
rejected: Rejected
|
|
1293
|
-
verified: Verified
|
|
1294
|
-
verify_via_csv: Verify via CSV
|
|
1295
|
-
user_groups_csv_verifications:
|
|
1296
|
-
new:
|
|
1297
|
-
example_file: 'Example file:'
|
|
1298
|
-
explanation: Upload your CSV file. It must have the official emails of the groups in your organization in the first column of the file, without headers. Only groups that have confirmed their email and that have an email appearing in the CSV file will be validated.
|
|
1299
|
-
explanation_example: |
|
|
1300
|
-
acme@example.org
|
|
1301
|
-
bubba.gump@example.org
|
|
1302
|
-
title: Upload your CSV file
|
|
1303
|
-
upload: Upload
|
|
1304
1253
|
users:
|
|
1305
1254
|
create:
|
|
1306
1255
|
error: There was a problem inviting this admin.
|
|
@@ -1327,16 +1276,6 @@ en:
|
|
|
1327
1276
|
errors:
|
|
1328
1277
|
impersonate_user:
|
|
1329
1278
|
reason: You need to provide a reason when managing a non-managed participant.
|
|
1330
|
-
metrics:
|
|
1331
|
-
blocked_users:
|
|
1332
|
-
object: blocked users
|
|
1333
|
-
title: Blocked users
|
|
1334
|
-
reported_users:
|
|
1335
|
-
object: reported users
|
|
1336
|
-
title: Reported users
|
|
1337
|
-
user_reports:
|
|
1338
|
-
object: user reports
|
|
1339
|
-
title: User reports
|
|
1340
1279
|
moderations:
|
|
1341
1280
|
actions:
|
|
1342
1281
|
expand: Expand
|
|
@@ -1345,8 +1284,8 @@ en:
|
|
|
1345
1284
|
not_hidden: Not hidden
|
|
1346
1285
|
parent_hidden: You cannot unhide this resource because its parent is still hidden.
|
|
1347
1286
|
title: Actions
|
|
1348
|
-
unhide:
|
|
1349
|
-
unreport:
|
|
1287
|
+
unhide: Undo the hide
|
|
1288
|
+
unreport: Undo the report
|
|
1350
1289
|
admin:
|
|
1351
1290
|
reportable:
|
|
1352
1291
|
bulk_action:
|
|
@@ -1401,5 +1340,7 @@ en:
|
|
|
1401
1340
|
admin:
|
|
1402
1341
|
global_moderations:
|
|
1403
1342
|
title: Global moderations
|
|
1343
|
+
insights:
|
|
1344
|
+
title: Insights
|
|
1404
1345
|
taxonomy_filters_selector:
|
|
1405
1346
|
title: Filters
|
data/config/locales/eo.yml
CHANGED
|
@@ -41,10 +41,6 @@ eo:
|
|
|
41
41
|
ended_at: Finita je
|
|
42
42
|
participatory_space_private_user:
|
|
43
43
|
name: Privata partoprenanto
|
|
44
|
-
user_group:
|
|
45
|
-
fields:
|
|
46
|
-
document_number: Dokumento Nombro
|
|
47
|
-
name: Nomo
|
|
48
44
|
newsletters:
|
|
49
45
|
select_recipients_to_deliver:
|
|
50
46
|
all_users_help: Sendu la informilon al ĉiuj konfirmitaj partoprenantoj.
|