decidim-admin 0.30.1 → 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 +8 -8
- 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 +1 -10
- 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 -32
- 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 +2 -86
- data/config/locales/bg.yml +4 -105
- data/config/locales/bs-BA.yml +0 -44
- data/config/locales/ca-IT.yml +59 -117
- data/config/locales/ca.yml +59 -117
- data/config/locales/cs.yml +51 -119
- data/config/locales/de.yml +63 -121
- data/config/locales/el.yml +5 -97
- data/config/locales/en.yml +61 -119
- data/config/locales/eo.yml +0 -4
- data/config/locales/es-MX.yml +60 -118
- data/config/locales/es-PY.yml +60 -118
- data/config/locales/es.yml +60 -118
- data/config/locales/eu.yml +65 -123
- data/config/locales/fi-plain.yml +62 -109
- data/config/locales/fi.yml +62 -109
- data/config/locales/fr-CA.yml +69 -120
- data/config/locales/fr.yml +69 -120
- data/config/locales/ga-IE.yml +4 -28
- data/config/locales/gl.yml +3 -89
- data/config/locales/he-IL.yml +0 -8
- data/config/locales/hu.yml +5 -100
- data/config/locales/id-ID.yml +0 -58
- data/config/locales/is-IS.yml +1 -36
- data/config/locales/it.yml +202 -96
- data/config/locales/ja.yml +61 -110
- data/config/locales/kaa.yml +0 -12
- data/config/locales/ko.yml +0 -76
- data/config/locales/lb.yml +5 -89
- data/config/locales/lt.yml +4 -99
- data/config/locales/lv.yml +2 -70
- data/config/locales/nl.yml +5 -90
- data/config/locales/no.yml +5 -89
- data/config/locales/pl.yml +5 -103
- data/config/locales/pt-BR.yml +130 -105
- data/config/locales/pt.yml +2 -90
- data/config/locales/ro-RO.yml +13 -97
- data/config/locales/ru.yml +2 -50
- data/config/locales/sk.yml +2 -68
- data/config/locales/sl.yml +1 -18
- data/config/locales/sq-AL.yml +0 -43
- data/config/locales/sr-CS.yml +1 -44
- data/config/locales/sv.yml +59 -120
- data/config/locales/th-TH.yml +0 -5
- data/config/locales/tr-TR.yml +6 -83
- data/config/locales/uk.yml +1 -45
- data/config/locales/val-ES.yml +0 -1
- data/config/locales/zh-CN.yml +0 -68
- data/config/locales/zh-TW.yml +4 -97
- 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,8 +46,6 @@ 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
|
@@ -64,13 +60,6 @@ en:
|
|
64
60
|
header_snippets: Header snippets
|
65
61
|
highlight_alternative_color: Highlight, alternative
|
66
62
|
highlight_color: Highlight
|
67
|
-
highlighted_content_banner_action_subtitle: Action button subtitle
|
68
|
-
highlighted_content_banner_action_title: Action button title
|
69
|
-
highlighted_content_banner_action_url: Action button URL
|
70
|
-
highlighted_content_banner_enabled: Show the highlighted content banner
|
71
|
-
highlighted_content_banner_image: Image
|
72
|
-
highlighted_content_banner_short_description: Short description
|
73
|
-
highlighted_content_banner_title: Title
|
74
63
|
host: Host
|
75
64
|
instagram_handler: Instagram handler
|
76
65
|
logo: Logo
|
@@ -97,7 +86,6 @@ en:
|
|
97
86
|
time_zone: Time Zone
|
98
87
|
tos_version: Terms of service version
|
99
88
|
twitter_handler: X handler
|
100
|
-
user_groups_enabled: Enable groups
|
101
89
|
users_registration_mode: Users registration mode
|
102
90
|
warning_color: Warning
|
103
91
|
welcome_notification_body: Welcome notification body
|
@@ -179,12 +167,17 @@ en:
|
|
179
167
|
decidim:
|
180
168
|
admin:
|
181
169
|
actions:
|
170
|
+
actions: Actions
|
171
|
+
actions_label: Actions for %{resource}
|
182
172
|
add: Add
|
183
173
|
attachment:
|
184
174
|
new: New attachment
|
185
175
|
attachment_collection:
|
186
176
|
new: New attachment folder
|
177
|
+
attachment_collections: Add folder
|
178
|
+
attachments: Add attachment
|
187
179
|
browse: Browse
|
180
|
+
configure: Configure
|
188
181
|
confirm_delete_component: |
|
189
182
|
Are you sure you want to delete this component?<br>
|
190
183
|
This component contains:<br>
|
@@ -192,25 +185,24 @@ en:
|
|
192
185
|
<li class="font-bold">%{resources_count} resources</li>
|
193
186
|
</ul>
|
194
187
|
If you change your mind, you can restore it later.
|
195
|
-
export: Export
|
188
|
+
export: Export
|
196
189
|
export-selection: Export selection
|
197
190
|
import: Import
|
198
|
-
|
191
|
+
menu_hidden: Hide from menu
|
192
|
+
moderate: Manage moderations
|
199
193
|
newsletter:
|
200
194
|
new: New newsletter
|
201
195
|
participatory_space_private_user:
|
202
196
|
new: New participatory space private user
|
203
197
|
per_page: Per page
|
204
|
-
permissions:
|
205
|
-
reject: Reject
|
198
|
+
permissions: Manage permissions
|
206
199
|
restore: Restore
|
207
200
|
send_me_a_test_email: Send me a test email
|
208
201
|
share: Share
|
209
|
-
share_tokens:
|
210
|
-
soft_delete:
|
202
|
+
share_tokens: Share link
|
203
|
+
soft_delete: Move to trash
|
211
204
|
user:
|
212
205
|
new: New admin
|
213
|
-
verify: Verify
|
214
206
|
view_deleted_components: View deleted components
|
215
207
|
admin_terms_of_service:
|
216
208
|
accept:
|
@@ -360,7 +352,7 @@ en:
|
|
360
352
|
attempts: Attempts
|
361
353
|
'false': 'No'
|
362
354
|
index:
|
363
|
-
text: Search by current user email, name or nickname
|
355
|
+
text: Search by current user email, name or nickname
|
364
356
|
managed_user_name: Managed User
|
365
357
|
solved: Solved
|
366
358
|
title: Verification conflicts
|
@@ -462,11 +454,11 @@ en:
|
|
462
454
|
remove_all: Remove all
|
463
455
|
search_label: Search
|
464
456
|
search_placeholder:
|
465
|
-
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
|
466
458
|
report_count_eq: Report count eq
|
467
|
-
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content
|
468
|
-
title_cont: Search %{collection} by title
|
469
|
-
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
|
470
462
|
state_eq:
|
471
463
|
label: State
|
472
464
|
values:
|
@@ -483,6 +475,10 @@ en:
|
|
483
475
|
explanation: 'Guidance for file:'
|
484
476
|
message_1: CSV, JSON and Excel (.xlsx) files are supported
|
485
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"
|
486
482
|
help_sections:
|
487
483
|
error: There was a problem updating the help sections.
|
488
484
|
form:
|
@@ -561,7 +557,7 @@ en:
|
|
561
557
|
logs:
|
562
558
|
filters:
|
563
559
|
participatory_space: Find participatory space
|
564
|
-
text: Search by user email, name or nickname
|
560
|
+
text: Search by user email, name or nickname
|
565
561
|
user: User
|
566
562
|
logs_list:
|
567
563
|
no_logs_yet: There are no logs yet.
|
@@ -588,8 +584,9 @@ en:
|
|
588
584
|
content: Reported content
|
589
585
|
external_domain_allowlist: Allowed external domains
|
590
586
|
help_sections: Help sections
|
591
|
-
homepage: Homepage
|
587
|
+
homepage: Homepage layout
|
592
588
|
impersonations: Impersonations
|
589
|
+
insights: Insights
|
593
590
|
manage: Manage
|
594
591
|
moderation: Global moderations
|
595
592
|
newsletters: Newsletters
|
@@ -602,13 +599,10 @@ en:
|
|
602
599
|
share_tokens: Access links
|
603
600
|
static_page_topics: Topics
|
604
601
|
static_pages: Pages
|
602
|
+
statistics: Statistics
|
605
603
|
taxonomies: Taxonomies
|
606
604
|
taxonomy_filters: Taxonomy filters
|
607
|
-
user_groups: Groups
|
608
605
|
users: Participants
|
609
|
-
metrics:
|
610
|
-
metrics:
|
611
|
-
see_more_metrics: See more metrics
|
612
606
|
models:
|
613
607
|
area:
|
614
608
|
fields:
|
@@ -677,16 +671,6 @@ en:
|
|
677
671
|
admin: Admin
|
678
672
|
user_manager: Participant manager
|
679
673
|
name: Participant
|
680
|
-
user_group:
|
681
|
-
fields:
|
682
|
-
actions: Actions
|
683
|
-
created_at: Created at
|
684
|
-
document_number: Document number
|
685
|
-
name: Name
|
686
|
-
nickname: Nickname
|
687
|
-
phone: Phone
|
688
|
-
state: State
|
689
|
-
users_count: Participants count
|
690
674
|
moderated_users:
|
691
675
|
index:
|
692
676
|
actions:
|
@@ -705,7 +689,7 @@ en:
|
|
705
689
|
update_moderated_user_button: Unreport users
|
706
690
|
title: Actions
|
707
691
|
unblock: Unblock User
|
708
|
-
unreport:
|
692
|
+
unreport: Undo the report
|
709
693
|
cancel: Cancel
|
710
694
|
name: Name
|
711
695
|
nickname: Nickname
|
@@ -729,10 +713,10 @@ en:
|
|
729
713
|
title: Hide
|
730
714
|
update_moderation_button: Hide selected resources
|
731
715
|
unhide:
|
732
|
-
title:
|
716
|
+
title: Undo the hide
|
733
717
|
update_moderation_button: Unhide selected resources
|
734
718
|
unreport:
|
735
|
-
title:
|
719
|
+
title: Undo the report
|
736
720
|
update_moderation_button: Unreport selected resources
|
737
721
|
cancel: Cancel
|
738
722
|
selected: selected
|
@@ -860,7 +844,7 @@ en:
|
|
860
844
|
index:
|
861
845
|
actions: Actions
|
862
846
|
badge: Badge
|
863
|
-
block: Block
|
847
|
+
block: Block
|
864
848
|
created_at: Created At
|
865
849
|
name: Name
|
866
850
|
nickname: Nickname
|
@@ -869,9 +853,10 @@ en:
|
|
869
853
|
officialized: Officialized
|
870
854
|
reofficialize: Reofficialize
|
871
855
|
reports: Reports
|
872
|
-
|
856
|
+
send_message: Send message
|
857
|
+
show_email: Show email
|
873
858
|
status: Status
|
874
|
-
unblock: Unblock
|
859
|
+
unblock: Unblock
|
875
860
|
unofficialize: Unofficialize
|
876
861
|
new:
|
877
862
|
badge: Officialization badge
|
@@ -892,41 +877,33 @@ en:
|
|
892
877
|
title: Edit organization
|
893
878
|
update: Update
|
894
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
|
895
892
|
facebook: Facebook
|
896
893
|
github: GitHub
|
897
894
|
instagram: Instagram
|
895
|
+
logos:
|
896
|
+
organization_logos: Organization logos
|
897
|
+
preview: Preview
|
898
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.
|
899
899
|
social_handlers: Social
|
900
900
|
twitter: X
|
901
901
|
url: URL
|
902
|
+
welcome_notification: Welcome notification
|
902
903
|
youtube: YouTube
|
903
904
|
update:
|
904
905
|
error: There was a problem updating this organization.
|
905
906
|
success: Organization updated successfully.
|
906
|
-
organization_appearance:
|
907
|
-
edit:
|
908
|
-
update: Update
|
909
|
-
form:
|
910
|
-
colors:
|
911
|
-
choose_color: Choose a primary color
|
912
|
-
colors_title: Organization colors
|
913
|
-
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.
|
914
|
-
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.
|
915
|
-
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.
|
916
|
-
saturation: Saturation
|
917
|
-
title: Color chooser
|
918
|
-
update_suggested_colors: Update suggested colors
|
919
|
-
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}'
|
920
|
-
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.
|
921
|
-
header_snippets:
|
922
|
-
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> .
|
923
|
-
title: HTML header snippets
|
924
|
-
homepage_appearance_title: Edit homepage appearance
|
925
|
-
homepage_highlighted_content_banner_title: Highligted content banner
|
926
|
-
images:
|
927
|
-
layout_appearance_title: Edit layout appearance
|
928
|
-
preview: Preview
|
929
|
-
omnipresent_banner_appearance_title: Edit omnipresent banner
|
930
907
|
organization_external_domain_allowlist:
|
931
908
|
edit:
|
932
909
|
update: Update
|
@@ -1099,14 +1076,14 @@ en:
|
|
1099
1076
|
title: Edit topic
|
1100
1077
|
update: Update topic
|
1101
1078
|
new:
|
1102
|
-
create:
|
1079
|
+
create: New topic
|
1103
1080
|
title: New topic
|
1104
1081
|
update:
|
1105
1082
|
error: There was a problem updating this topic.
|
1106
1083
|
success: Topic updated successfully
|
1107
1084
|
static_pages:
|
1108
1085
|
actions:
|
1109
|
-
view: View
|
1086
|
+
view: View
|
1110
1087
|
create:
|
1111
1088
|
error: There was a problem creating a new page.
|
1112
1089
|
success: Page created successfully.
|
@@ -1123,7 +1100,7 @@ en:
|
|
1123
1100
|
index:
|
1124
1101
|
last_notable_change: Last notable change
|
1125
1102
|
new:
|
1126
|
-
create:
|
1103
|
+
create: New page
|
1127
1104
|
title: New page
|
1128
1105
|
topic:
|
1129
1106
|
empty: There are no pages under this topic.
|
@@ -1134,9 +1111,9 @@ en:
|
|
1134
1111
|
taxonomies:
|
1135
1112
|
actions:
|
1136
1113
|
actions: Actions
|
1137
|
-
destroy: Delete
|
1138
|
-
edit: Edit
|
1139
|
-
filters:
|
1114
|
+
destroy: Delete
|
1115
|
+
edit: Edit
|
1116
|
+
filters: Apply filters
|
1140
1117
|
breadcrumb:
|
1141
1118
|
edit: Edit taxonomy
|
1142
1119
|
new: New taxonomy
|
@@ -1248,24 +1225,23 @@ en:
|
|
1248
1225
|
authorization_workflows: Verification methods
|
1249
1226
|
dashboard: Dashboard
|
1250
1227
|
edit_external_domains: Allowed list of external domains
|
1251
|
-
edit_landing_page: Page contents
|
1252
|
-
edit_organization_appearance: Edit homepage appearance
|
1253
1228
|
impersonatable_users: Manageable participants
|
1254
1229
|
impersonations: Participants management
|
1255
1230
|
menu: Menu
|
1256
|
-
metrics: Metrics
|
1257
1231
|
page_topics: Topics
|
1258
1232
|
pages: Pages
|
1259
1233
|
panel: Admin
|
1260
1234
|
participants: Participants
|
1261
1235
|
scope_types: Scope types
|
1262
1236
|
scopes: Scopes
|
1263
|
-
statistics:
|
1237
|
+
statistics: Statistics
|
1264
1238
|
taxonomies: Taxonomies
|
1265
1239
|
taxonomy_filters: Taxonomy filters for "%{taxonomy}"
|
1266
|
-
user_groups: Groups
|
1267
1240
|
users: Administrators
|
1268
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.
|
1269
1245
|
deleted_component_info: This component can only be deleted if status is 'Unpublished'.
|
1270
1246
|
trash_management:
|
1271
1247
|
restore:
|
@@ -1274,32 +1250,6 @@ en:
|
|
1274
1250
|
soft_delete:
|
1275
1251
|
invalid: There was a problem deleting %{resource_name}.
|
1276
1252
|
success: "%{resource_name} successfully deleted."
|
1277
|
-
user_group:
|
1278
|
-
csv_verify:
|
1279
|
-
invalid: There was a problem reading the CSV file.
|
1280
|
-
success: CSV file uploaded successfully, we are verifying the groups matching the criteria. This might take a while.
|
1281
|
-
reject:
|
1282
|
-
invalid: There was a problem rejecting this group.
|
1283
|
-
success: Group successfully rejected.
|
1284
|
-
verify:
|
1285
|
-
invalid: There was a problem verifying this group.
|
1286
|
-
success: Group successfully verified.
|
1287
|
-
user_groups:
|
1288
|
-
index:
|
1289
|
-
state:
|
1290
|
-
pending: Pending
|
1291
|
-
rejected: Rejected
|
1292
|
-
verified: Verified
|
1293
|
-
verify_via_csv: Verify via CSV
|
1294
|
-
user_groups_csv_verifications:
|
1295
|
-
new:
|
1296
|
-
example_file: 'Example file:'
|
1297
|
-
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.
|
1298
|
-
explanation_example: |
|
1299
|
-
acme@example.org
|
1300
|
-
bubba.gump@example.org
|
1301
|
-
title: Upload your CSV file
|
1302
|
-
upload: Upload
|
1303
1253
|
users:
|
1304
1254
|
create:
|
1305
1255
|
error: There was a problem inviting this admin.
|
@@ -1326,16 +1276,6 @@ en:
|
|
1326
1276
|
errors:
|
1327
1277
|
impersonate_user:
|
1328
1278
|
reason: You need to provide a reason when managing a non-managed participant.
|
1329
|
-
metrics:
|
1330
|
-
blocked_users:
|
1331
|
-
object: blocked users
|
1332
|
-
title: Blocked users
|
1333
|
-
reported_users:
|
1334
|
-
object: reported users
|
1335
|
-
title: Reported users
|
1336
|
-
user_reports:
|
1337
|
-
object: user reports
|
1338
|
-
title: User reports
|
1339
1279
|
moderations:
|
1340
1280
|
actions:
|
1341
1281
|
expand: Expand
|
@@ -1344,8 +1284,8 @@ en:
|
|
1344
1284
|
not_hidden: Not hidden
|
1345
1285
|
parent_hidden: You cannot unhide this resource because its parent is still hidden.
|
1346
1286
|
title: Actions
|
1347
|
-
unhide:
|
1348
|
-
unreport:
|
1287
|
+
unhide: Undo the hide
|
1288
|
+
unreport: Undo the report
|
1349
1289
|
admin:
|
1350
1290
|
reportable:
|
1351
1291
|
bulk_action:
|
@@ -1400,5 +1340,7 @@ en:
|
|
1400
1340
|
admin:
|
1401
1341
|
global_moderations:
|
1402
1342
|
title: Global moderations
|
1343
|
+
insights:
|
1344
|
+
title: Insights
|
1403
1345
|
taxonomy_filters_selector:
|
1404
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.
|