decidim-admin 0.21.0 → 0.23.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/admin/application.js.es6 +7 -0
- data/app/assets/javascripts/decidim/admin/budget_rule_toggler.component.js.es6 +52 -0
- data/app/assets/javascripts/decidim/admin/bundle.js +26 -32
- data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/admin/choose_language.js +12 -0
- data/app/assets/javascripts/decidim/admin/dynamic_fields.component.js.es6 +24 -5
- data/app/assets/javascripts/decidim/admin/form.js.es6 +24 -10
- data/app/assets/javascripts/decidim/admin/gallery.js.es6 +5 -0
- data/app/assets/javascripts/decidim/admin/newsletters.js.es6 +4 -0
- data/app/assets/javascripts/decidim/admin/officializations.js.es6 +20 -0
- data/app/assets/javascripts/decidim/admin/scope_picker_enabler.component.js.es6 +14 -0
- data/app/assets/stylesheets/decidim/admin/_decidim.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/_variables.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_newsletter-templates-gallery.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/extra/_organization-appearance.scss +141 -0
- data/app/assets/stylesheets/decidim/admin/extra/_show_email.scss +31 -0
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +4 -0
- data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +11 -1
- data/app/assets/stylesheets/decidim/admin/modules/_callouts.scss +11 -0
- data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_filters.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_forms.scss +16 -2
- data/app/assets/stylesheets/decidim/admin/modules/_import_result.scss +10 -0
- data/app/assets/stylesheets/decidim/admin/modules/_loading-spinner.scss +19 -0
- data/app/assets/stylesheets/decidim/admin/modules/_main-nav.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_modules.scss +5 -1
- data/app/assets/stylesheets/decidim/admin/modules/_process-header.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +0 -1
- data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +0 -5
- data/app/assets/stylesheets/decidim/admin/modules/_tabs.scss +7 -0
- data/app/assets/stylesheets/decidim/admin/modules/_users_statistics.scss +18 -0
- data/app/assets/stylesheets/decidim/admin/utils/_mixins.scss +42 -0
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +4 -1
- data/app/cells/decidim/admin/content_block/show.erb +2 -2
- data/app/commands/decidim/admin/create_attachment.rb +2 -2
- data/app/commands/decidim/admin/create_newsletter.rb +34 -9
- data/app/commands/decidim/admin/destroy_share_token.rb +46 -0
- data/app/commands/decidim/admin/reorder_content_blocks.rb +1 -1
- data/app/commands/decidim/admin/update_component.rb +27 -3
- data/app/commands/decidim/admin/update_content_block.rb +25 -1
- data/app/commands/decidim/admin/update_newsletter.rb +31 -9
- data/app/commands/decidim/admin/update_organization.rb +11 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +3 -1
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +8 -2
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +6 -0
- data/app/controllers/decidim/admin/components_controller.rb +17 -6
- data/app/controllers/decidim/admin/dashboard_controller.rb +33 -1
- data/app/controllers/decidim/admin/metrics_controller.rb +22 -0
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +41 -0
- data/app/controllers/decidim/admin/newsletters_controller.rb +32 -4
- data/app/controllers/decidim/admin/officializations_controller.rb +8 -0
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -0
- data/app/controllers/decidim/admin/organization_controller.rb +4 -3
- data/app/controllers/decidim/admin/organization_homepage_content_blocks_controller.rb +2 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +30 -0
- data/app/forms/decidim/admin/attachment_form.rb +3 -0
- data/app/forms/decidim/admin/component_form.rb +5 -22
- data/app/forms/decidim/admin/newsletter_form.rb +15 -3
- data/app/forms/decidim/admin/organization_appearance_form.rb +7 -4
- data/app/forms/decidim/admin/organization_form.rb +20 -0
- data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +13 -0
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +3 -2
- data/app/forms/decidim/admin/selective_newsletter_form.rb +6 -0
- data/app/frontend/components/autocomplete.component.test.tsx +2 -1
- data/app/frontend/components/autocomplete.component.tsx +29 -0
- data/app/helpers/decidim/admin/application_helper.rb +1 -0
- data/app/helpers/decidim/admin/filterable_helper.rb +35 -27
- data/app/helpers/decidim/admin/icon_link_helper.rb +1 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -1
- data/app/helpers/decidim/admin/resource_scope_helper.rb +43 -0
- data/app/helpers/decidim/admin/settings_helper.rb +52 -59
- data/app/helpers/decidim/admin/uploader_image_dimensions_helper.rb +30 -0
- data/app/models/decidim/admin/fake_newsletter.rb +49 -0
- data/app/permissions/decidim/admin/permissions.rb +7 -1
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +57 -0
- data/app/queries/decidim/admin/active_users_counter.rb +35 -0
- data/app/queries/decidim/admin/newsletter_recipients.rb +5 -8
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +1 -0
- data/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/app/views/decidim/admin/components/_component.html.erb +5 -0
- data/app/views/decidim/admin/components/_form.html.erb +4 -0
- data/app/views/decidim/admin/components/_settings_fields.html.erb +2 -2
- data/app/views/decidim/admin/components/index.html.erb +1 -0
- data/app/views/decidim/admin/dashboard/show.html.erb +35 -10
- data/app/views/decidim/admin/exports/_dropdown.html.erb +6 -2
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +2 -2
- data/app/views/decidim/admin/metrics/_metrics.html.erb +21 -0
- data/app/views/decidim/admin/metrics/index.html.erb +7 -0
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +28 -0
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +12 -0
- data/app/views/decidim/admin/newsletters/_form.html.erb +1 -7
- data/app/views/decidim/admin/newsletters/edit.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/new.html.erb +1 -1
- data/app/views/decidim/admin/officializations/_show_email_modal.html.erb +31 -0
- data/app/views/decidim/admin/officializations/index.html.erb +7 -3
- data/app/views/decidim/admin/officializations/show_email.html.erb +2 -0
- data/app/views/decidim/admin/organization/_form.html.erb +21 -0
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +2 -72
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +23 -0
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +38 -0
- data/app/views/decidim/admin/organization_appearance/form/_minimap.html.erb +46 -0
- data/app/views/decidim/admin/resource_permissions/_options_form.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +57 -0
- data/app/views/decidim/admin/shared/_filters.html.erb +3 -3
- data/app/views/decidim/admin/shared/_gallery.html.erb +21 -0
- data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
- data/app/views/decidim/admin/user_groups/index.html.erb +4 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +39 -0
- data/app/views/layouts/decidim/admin/_application.html.erb +1 -0
- data/app/views/layouts/decidim/admin/_header.html.erb +3 -0
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +20 -10
- data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +12 -45
- data/config/locales/bg-BG.yml +16 -0
- data/config/locales/bg.yml +131 -0
- data/config/locales/ca.yml +84 -46
- data/config/locales/cs.yml +175 -137
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +150 -56
- data/config/locales/el.yml +814 -0
- data/config/locales/en.yml +84 -46
- data/config/locales/eo-UY.yml +0 -1
- data/config/locales/eo.yml +51 -0
- data/config/locales/es-MX.yml +84 -46
- data/config/locales/es-PY.yml +84 -46
- data/config/locales/es.yml +84 -46
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +30 -59
- data/config/locales/fi-plain.yml +84 -46
- data/config/locales/fi.yml +98 -60
- data/config/locales/fr-CA.yml +847 -0
- data/config/locales/fr.yml +126 -51
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +156 -42
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +55 -46
- data/config/locales/id-ID.yml +12 -41
- data/config/locales/is-IS.yml +10 -42
- data/config/locales/is.yml +568 -0
- data/config/locales/it.yml +106 -85
- data/config/locales/ja-JP.yml +855 -0
- data/config/locales/ja.yml +847 -0
- data/config/locales/ko-KR.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +795 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +74 -46
- data/config/locales/no.yml +108 -83
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +354 -233
- data/config/locales/pt-BR.yml +13 -42
- data/config/locales/pt.yml +321 -231
- data/config/locales/ro-RO.yml +810 -0
- data/config/locales/ru.yml +11 -44
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk-SK.yml +823 -0
- data/config/locales/sk.yml +802 -0
- data/config/locales/sl.yml +162 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +586 -0
- data/config/locales/sv.yml +134 -54
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +139 -50
- data/config/locales/uk.yml +10 -42
- data/config/locales/vi-VN.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +845 -0
- data/config/locales/zh-TW.yml +1 -0
- data/config/routes.rb +14 -3
- data/lib/decidim/admin/engine.rb +12 -9
- data/lib/decidim/admin/form_builder.rb +2 -2
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +1 -1
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +15 -15
- data/lib/decidim/admin/version.rb +1 -1
- metadata +85 -33
- data/app/commands/decidim/admin/create_oauth_application.rb +0 -36
- data/app/commands/decidim/admin/destroy_oauth_application.rb +0 -39
- data/app/commands/decidim/admin/update_oauth_application.rb +0 -39
- data/app/controllers/decidim/admin/oauth_applications_controller.rb +0 -90
- data/app/forms/decidim/admin/oauth_application_form.rb +0 -32
- data/app/views/decidim/admin/oauth_applications/_form.html.erb +0 -19
- data/app/views/decidim/admin/oauth_applications/edit.html.erb +0 -13
- data/app/views/decidim/admin/oauth_applications/index.html.erb +0 -40
- data/app/views/decidim/admin/oauth_applications/new.html.erb +0 -13
- data/app/views/decidim/admin/oauth_applications/show.html.erb +0 -27
data/config/locales/en.yml
CHANGED
@@ -14,7 +14,7 @@ en:
|
|
14
14
|
attachment_collection_id: Folder
|
15
15
|
description: Description
|
16
16
|
file: File
|
17
|
-
title:
|
17
|
+
title: Attachment or image name
|
18
18
|
attachment_collection:
|
19
19
|
description: Description
|
20
20
|
name: Name
|
@@ -30,16 +30,10 @@ en:
|
|
30
30
|
newsletter:
|
31
31
|
body: Body
|
32
32
|
subject: Subject
|
33
|
-
oauth_application:
|
34
|
-
name: Name
|
35
|
-
organization_logo: Organization logo (square)
|
36
|
-
organization_name: Organization name
|
37
|
-
organization_url: Organization URL
|
38
|
-
redirect_uri: Redirect URI
|
39
33
|
organization:
|
40
|
-
address: SMTP hostname
|
41
34
|
alert_color: Alert
|
42
35
|
badges_enabled: Enable badges
|
36
|
+
comments_max_length: Comments max length (Leave 0 for default value)
|
43
37
|
cta_button_path: Call To Action button path
|
44
38
|
cta_button_text: Call To Action button text
|
45
39
|
customize_welcome_notification: Customize welcome notification
|
@@ -51,6 +45,8 @@ en:
|
|
51
45
|
from: From email address
|
52
46
|
github_handler: GitHub handler
|
53
47
|
header_snippets: Header snippets
|
48
|
+
highlight_alternative_color: Highlight, alternative
|
49
|
+
highlight_color: Highlight
|
54
50
|
highlighted_content_banner_action_subtitle: Action button subtitle
|
55
51
|
highlighted_content_banner_action_title: Action button title
|
56
52
|
highlighted_content_banner_action_url: Action button URL
|
@@ -60,6 +56,9 @@ en:
|
|
60
56
|
highlighted_content_banner_title: Title
|
61
57
|
instagram_handler: Instagram handler
|
62
58
|
logo: Logo
|
59
|
+
machine_translation_display_priority: Machine translation display priority
|
60
|
+
machine_translation_display_priority_original: Original text first
|
61
|
+
machine_translation_display_priority_translation: Translated text first
|
63
62
|
name: Name
|
64
63
|
official_img_footer: Official logo footer
|
65
64
|
official_img_header: Official logo header
|
@@ -67,8 +66,6 @@ en:
|
|
67
66
|
omnipresent_banner_short_description: Short description
|
68
67
|
omnipresent_banner_title: Title
|
69
68
|
omnipresent_banner_url: URL
|
70
|
-
password: Password
|
71
|
-
port: Port
|
72
69
|
primary_color: Primary
|
73
70
|
reference_prefix: Reference prefix
|
74
71
|
rich_text_editor_in_public_views: Enable rich text editor for participants
|
@@ -80,7 +77,6 @@ en:
|
|
80
77
|
tos_version: Terms of service version
|
81
78
|
twitter_handler: Twitter handler
|
82
79
|
user_groups_enabled: Enable groups
|
83
|
-
user_name: Username
|
84
80
|
warning_color: Warning
|
85
81
|
welcome_notification_body: Welcome notification body
|
86
82
|
welcome_notification_subject: Welcome notification subject
|
@@ -96,6 +92,8 @@ en:
|
|
96
92
|
name: Name
|
97
93
|
organization: Organization
|
98
94
|
plural: Plural
|
95
|
+
settings:
|
96
|
+
scope_id: Scope
|
99
97
|
static_page:
|
100
98
|
changed_notably: There have been noticeable changes.
|
101
99
|
content: Content
|
@@ -113,10 +111,6 @@ en:
|
|
113
111
|
file: File
|
114
112
|
errors:
|
115
113
|
models:
|
116
|
-
oauth_application:
|
117
|
-
attributes:
|
118
|
-
redirect_uri:
|
119
|
-
must_be_ssl: The redirect URI must be a SSL URI
|
120
114
|
organization:
|
121
115
|
attributes:
|
122
116
|
official_img_footer:
|
@@ -148,6 +142,7 @@ en:
|
|
148
142
|
per_page: Per page
|
149
143
|
permissions: Permissions
|
150
144
|
reject: Reject
|
145
|
+
share: Share
|
151
146
|
verify: Verify
|
152
147
|
admin_terms_of_use:
|
153
148
|
accept:
|
@@ -275,6 +270,7 @@ en:
|
|
275
270
|
headers:
|
276
271
|
actions: Actions
|
277
272
|
name: Component name
|
273
|
+
scope: Component scope
|
278
274
|
type: Component type
|
279
275
|
new:
|
280
276
|
add: Add component
|
@@ -293,6 +289,11 @@ en:
|
|
293
289
|
welcome: Welcome to the Decidim Admin Panel.
|
294
290
|
exports:
|
295
291
|
export_as: "%{name} as %{export_format}"
|
292
|
+
formats:
|
293
|
+
CSV: CSV
|
294
|
+
Excel: Excel
|
295
|
+
FormPDF: PDF
|
296
|
+
JSON: JSON
|
296
297
|
notice: Your export is currently in progress. You'll receive an email when it's complete.
|
297
298
|
filters:
|
298
299
|
category_id_eq:
|
@@ -319,6 +320,8 @@ en:
|
|
319
320
|
search_placeholder:
|
320
321
|
name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname.
|
321
322
|
title_cont: Search %{collection} by title.
|
323
|
+
state_eq:
|
324
|
+
label: State
|
322
325
|
help_sections:
|
323
326
|
error: There was a problem updating the help sections
|
324
327
|
form:
|
@@ -381,7 +384,6 @@ en:
|
|
381
384
|
homepage: Homepage
|
382
385
|
impersonations: Impersonations
|
383
386
|
newsletters: Newsletters
|
384
|
-
oauth_applications: OAuth applications
|
385
387
|
participants: Participants
|
386
388
|
scope_types: Scope types
|
387
389
|
scopes: Scopes
|
@@ -389,6 +391,9 @@ en:
|
|
389
391
|
static_pages: Pages
|
390
392
|
user_groups: Groups
|
391
393
|
users: Participants
|
394
|
+
metrics:
|
395
|
+
metrics:
|
396
|
+
see_more_metrics: See more metrics
|
392
397
|
models:
|
393
398
|
area:
|
394
399
|
fields:
|
@@ -425,11 +430,6 @@ en:
|
|
425
430
|
sent_to: Sent to
|
426
431
|
subject: Subject
|
427
432
|
name: Newsletter
|
428
|
-
oauth_application:
|
429
|
-
fields:
|
430
|
-
created_at: Created at
|
431
|
-
name: Name
|
432
|
-
name: OAuth application
|
433
433
|
participatory_space_private_user:
|
434
434
|
name: Participatory space private participant
|
435
435
|
scope:
|
@@ -440,6 +440,14 @@ en:
|
|
440
440
|
fields:
|
441
441
|
name: Name
|
442
442
|
plural: Plural
|
443
|
+
share_token:
|
444
|
+
fields:
|
445
|
+
created_at: Created at
|
446
|
+
expires_at: Expires at
|
447
|
+
last_used_at: Last time used
|
448
|
+
times_used: Times used
|
449
|
+
token: Token
|
450
|
+
user: Created by
|
443
451
|
static_page:
|
444
452
|
fields:
|
445
453
|
created_at: Created at
|
@@ -472,6 +480,14 @@ en:
|
|
472
480
|
does_not_belong: Does not belong
|
473
481
|
offensive: Offensive
|
474
482
|
spam: Spam
|
483
|
+
newsletter_templates:
|
484
|
+
index:
|
485
|
+
preview_template: Preview
|
486
|
+
title: Newsletter templates
|
487
|
+
use_template: Use this template
|
488
|
+
show:
|
489
|
+
preview: 'Preview template: %{template_name}'
|
490
|
+
use_template: Use this template
|
475
491
|
newsletters:
|
476
492
|
create:
|
477
493
|
error: There was a problem creating this newsletter.
|
@@ -485,8 +501,6 @@ en:
|
|
485
501
|
edit:
|
486
502
|
save_and_preview: Save and preview
|
487
503
|
title: Edit newsletter
|
488
|
-
form:
|
489
|
-
interpolations_hint: 'Hint: You can use "%{name}" anywhere in the body or subject and it will be replaced by the recipient''s name.'
|
490
504
|
index:
|
491
505
|
all: all
|
492
506
|
all_users: 'All users '
|
@@ -530,25 +544,6 @@ en:
|
|
530
544
|
update:
|
531
545
|
error: There was a problem updating this newsletter.
|
532
546
|
success: Newsletter updated successfully. Please review it before sending.
|
533
|
-
oauth_applications:
|
534
|
-
create:
|
535
|
-
error: There was a problem creating this application.
|
536
|
-
success: Application created successfully.
|
537
|
-
destroy:
|
538
|
-
error: There was a problem destroying this application.
|
539
|
-
success: Application destroyed successfully.
|
540
|
-
edit:
|
541
|
-
save: Save
|
542
|
-
title: Edit application
|
543
|
-
index:
|
544
|
-
confirm_delete: Are you sure you want to delete this application?
|
545
|
-
title: OAuth applications
|
546
|
-
new:
|
547
|
-
save: Save
|
548
|
-
title: New application
|
549
|
-
update:
|
550
|
-
error: There was a problem updating this application.
|
551
|
-
success: Application updated successfully.
|
552
547
|
officializations:
|
553
548
|
create:
|
554
549
|
success: Participant successfully officialized
|
@@ -564,12 +559,21 @@ en:
|
|
564
559
|
officialize: Officialize
|
565
560
|
officialized: Officialized
|
566
561
|
reofficialize: Reofficialize
|
562
|
+
show_email: Show email address
|
567
563
|
status: Status
|
568
564
|
unofficialize: Unofficialize
|
569
565
|
new:
|
570
566
|
badge: Officialization badge
|
571
567
|
officialize: Officialize
|
572
568
|
title: Officialize participant "%{name}"
|
569
|
+
show_email_modal:
|
570
|
+
close_modal: Close modal
|
571
|
+
description: If you need to contact a participant directly you can click on the Show button to see the email address. This action will be logged.
|
572
|
+
email_address: Email address
|
573
|
+
full_name: Full name
|
574
|
+
hidden: hidden
|
575
|
+
show: Show
|
576
|
+
title: Show participant email address
|
573
577
|
organization:
|
574
578
|
edit:
|
575
579
|
title: Edit organization
|
@@ -590,13 +594,16 @@ en:
|
|
590
594
|
edit:
|
591
595
|
update: Update
|
592
596
|
form:
|
593
|
-
|
597
|
+
colors:
|
598
|
+
colors_title: Organization colors
|
599
|
+
header_snippets_help: 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.
|
594
600
|
cta_button_path_help: '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}'
|
595
601
|
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.
|
596
|
-
header_snippets_help: 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.
|
597
602
|
homepage_appearance_title: Edit homepage appearance
|
598
603
|
homepage_highlighted_content_banner_title: Highligted content banner
|
599
|
-
|
604
|
+
images:
|
605
|
+
layout_appearance_title: Edit layout appearance
|
606
|
+
preview: Preview
|
600
607
|
omnipresent_banner_appearance_title: Edit omnipresent banner
|
601
608
|
organization_homepage:
|
602
609
|
edit:
|
@@ -623,7 +630,7 @@ en:
|
|
623
630
|
invalid: There was a problem reading the CSV file.
|
624
631
|
success: CSV file uploaded successfully, we're sending an invitation email to participants. This might take a while.
|
625
632
|
new:
|
626
|
-
explanation: Upload your CSV file. It must have two columns with email in the first column of the file and name in the last column of the file (email, name) of the users that you want to add to the participatory space, without headers.
|
633
|
+
explanation: Upload your CSV file. It must have two columns with email in the first column of the file and name in the last column of the file (email, name) of the users that you want to add to the participatory space, without headers. Avoid using invalid chars like `<>?%&^*#@()[]=+:;"{}\|` in user name.
|
627
634
|
title: Upload your CSV file
|
628
635
|
upload: Upload
|
629
636
|
resource_permissions:
|
@@ -632,6 +639,10 @@ en:
|
|
632
639
|
title: Edit permissions
|
633
640
|
update:
|
634
641
|
success: Permissions updated successfully.
|
642
|
+
resources:
|
643
|
+
index:
|
644
|
+
headers:
|
645
|
+
scope: Scope
|
635
646
|
scope_types:
|
636
647
|
create:
|
637
648
|
error: There was a problem creating a new scope type.
|
@@ -663,6 +674,23 @@ en:
|
|
663
674
|
update:
|
664
675
|
error: There was a problem updating this scope.
|
665
676
|
success: Scope updated successfully
|
677
|
+
share_tokens:
|
678
|
+
actions:
|
679
|
+
confirm_destroy: Are you sure you want to delete this token?
|
680
|
+
destroy: Delete
|
681
|
+
share: Share
|
682
|
+
destroy:
|
683
|
+
error: There was a problem destroying the token.
|
684
|
+
success: Token destroyed successfully.
|
685
|
+
share_tokens:
|
686
|
+
empty: There are no active tokens
|
687
|
+
help: These tokens are used to publicly share this unpublished resource to any user. They will be hidden when the resource is published. Click on the token's share icon to visit the shareable URL.
|
688
|
+
title: Share tokens
|
689
|
+
shared:
|
690
|
+
gallery:
|
691
|
+
add_images: Add images
|
692
|
+
delete_image: Delete Image
|
693
|
+
gallery_legend: Add an image gallery (Optional)
|
666
694
|
static_page_topics:
|
667
695
|
create:
|
668
696
|
error: There was a problem creating a new topic.
|
@@ -714,10 +742,12 @@ en:
|
|
714
742
|
dashboard: Dashboard
|
715
743
|
impersonatable_users: Manageable participants
|
716
744
|
impersonations: Participants management
|
745
|
+
metrics: Metrics
|
717
746
|
participants: Participants
|
718
747
|
scope_types: Scope types
|
719
748
|
scopes: Scopes
|
720
749
|
static_pages: Pages
|
750
|
+
statistics: Activity
|
721
751
|
user_groups: Groups
|
722
752
|
users: Participants
|
723
753
|
user_group:
|
@@ -763,6 +793,14 @@ en:
|
|
763
793
|
new:
|
764
794
|
create: Invite
|
765
795
|
title: Invite participant as administrator
|
796
|
+
users_statistics:
|
797
|
+
users_count:
|
798
|
+
admins: Admins
|
799
|
+
last_day: Last day
|
800
|
+
last_month: Last month
|
801
|
+
last_week: Last week
|
802
|
+
no_users_count_statistics_yet: There are no users count statistics yet
|
803
|
+
participants: Participants
|
766
804
|
view_public_page: View public page
|
767
805
|
forms:
|
768
806
|
errors:
|
data/config/locales/eo-UY.yml
CHANGED
@@ -0,0 +1,51 @@
|
|
1
|
+
eo:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
area:
|
5
|
+
area_type: Areo tipo
|
6
|
+
name: Nomo
|
7
|
+
organization: Organizo
|
8
|
+
area_type:
|
9
|
+
name: Nomo
|
10
|
+
organization: Organizo
|
11
|
+
plural: Multnombro
|
12
|
+
attachment:
|
13
|
+
attachment_collection_id: Dosierujo
|
14
|
+
description: Priskribo
|
15
|
+
file: Dosiero
|
16
|
+
attachment_collection:
|
17
|
+
description: Priskribo
|
18
|
+
name: Nomo
|
19
|
+
category:
|
20
|
+
description: Priskribo
|
21
|
+
name: Nomo
|
22
|
+
parent_id: Gepatro
|
23
|
+
component:
|
24
|
+
name: Nomo
|
25
|
+
published_at: Eldonita ĉe
|
26
|
+
weight: Pezo
|
27
|
+
id: ID
|
28
|
+
newsletter:
|
29
|
+
body: Korpo
|
30
|
+
subject: Temo
|
31
|
+
decidim:
|
32
|
+
admin:
|
33
|
+
actions:
|
34
|
+
new: Nova %{name}
|
35
|
+
managed_users:
|
36
|
+
promotions:
|
37
|
+
new:
|
38
|
+
explanation: Administritaj partoprenantoj povas esti promociitaj al normaj partoprenantoj. Ĝi signifas, ke ili estos invititaj al la sistemo kaj vi ne povos administri ilin denove. La invitita partoprenanto ricevos retpoŝton por akcepti vian inviton.
|
39
|
+
new_managed_user_promotion: Nova administrita partoprenanto-promocio
|
40
|
+
models:
|
41
|
+
impersonation_log:
|
42
|
+
fields:
|
43
|
+
ended_at: Finita je
|
44
|
+
participatory_space_private_user:
|
45
|
+
name: Privata partoprenanto
|
46
|
+
user_group:
|
47
|
+
fields:
|
48
|
+
document_number: Dokumento Nombro
|
49
|
+
newsletters:
|
50
|
+
select_recipients_to_deliver:
|
51
|
+
all_users_help: Sendu la informilon al ĉiuj konfirmitaj partoprenantoj.
|
data/config/locales/es-MX.yml
CHANGED
@@ -13,7 +13,7 @@ es-MX:
|
|
13
13
|
attachment_collection_id: Carpeta
|
14
14
|
description: Descripción
|
15
15
|
file: Archivo
|
16
|
-
title:
|
16
|
+
title: Nombre del adjunto o imagen
|
17
17
|
attachment_collection:
|
18
18
|
description: Descripción
|
19
19
|
name: Nombre
|
@@ -29,16 +29,10 @@ es-MX:
|
|
29
29
|
newsletter:
|
30
30
|
body: Cuerpo
|
31
31
|
subject: Asunto
|
32
|
-
oauth_application:
|
33
|
-
name: Nombre
|
34
|
-
organization_logo: Logotipo de la organización (cuadrado)
|
35
|
-
organization_name: Nombre de la organización
|
36
|
-
organization_url: URL de organización
|
37
|
-
redirect_uri: Redirigir URI
|
38
32
|
organization:
|
39
|
-
address: Nombre de host SMTP
|
40
33
|
alert_color: Alerta
|
41
34
|
badges_enabled: Habilitar insignias
|
35
|
+
comments_max_length: Longitud máxima de los comentarios (deja 0 si quieres mantener la configuración por defecto)
|
42
36
|
cta_button_path: Ruta del botón de acción principal
|
43
37
|
cta_button_text: Texto del botón de acción principal
|
44
38
|
customize_welcome_notification: Personalizar notificación de bienvenida
|
@@ -50,6 +44,8 @@ es-MX:
|
|
50
44
|
from: Correo electrónico del remitente
|
51
45
|
github_handler: Nombre en GitHub
|
52
46
|
header_snippets: Snippets de encabezado
|
47
|
+
highlight_alternative_color: Destacado, alternativo
|
48
|
+
highlight_color: Destacar
|
53
49
|
highlighted_content_banner_action_subtitle: Subtítulo del botón de acción
|
54
50
|
highlighted_content_banner_action_title: Título del botón de acción
|
55
51
|
highlighted_content_banner_action_url: URL del botón de acción
|
@@ -59,6 +55,9 @@ es-MX:
|
|
59
55
|
highlighted_content_banner_title: Título
|
60
56
|
instagram_handler: Nombre de Instagram
|
61
57
|
logo: Logo
|
58
|
+
machine_translation_display_priority: Prioridad de la traducción automática
|
59
|
+
machine_translation_display_priority_original: Texto original primero
|
60
|
+
machine_translation_display_priority_translation: Texto traducido primero
|
62
61
|
name: Nombre
|
63
62
|
official_img_footer: Logotipo oficial de pie de página
|
64
63
|
official_img_header: Logotipo oficial de cabecera
|
@@ -66,8 +65,6 @@ es-MX:
|
|
66
65
|
omnipresent_banner_short_description: Descripción breve
|
67
66
|
omnipresent_banner_title: Título
|
68
67
|
omnipresent_banner_url: URL
|
69
|
-
password: Contraseña
|
70
|
-
port: Puerto
|
71
68
|
primary_color: Primario
|
72
69
|
reference_prefix: Prefijo de la referencia
|
73
70
|
rich_text_editor_in_public_views: Habilitar editor de texto enriquecido para las participantes
|
@@ -79,7 +76,6 @@ es-MX:
|
|
79
76
|
tos_version: Versión de los Términos de Servicio
|
80
77
|
twitter_handler: Nombre de Twitter
|
81
78
|
user_groups_enabled: Habilitar grupos de usuarios
|
82
|
-
user_name: Nombre de usuario
|
83
79
|
warning_color: Advertencia
|
84
80
|
welcome_notification_body: Cuerpo del mensaje de notificación de bienvenida
|
85
81
|
welcome_notification_subject: Asunto del mensaje de notificación de bienvenida
|
@@ -95,6 +91,8 @@ es-MX:
|
|
95
91
|
name: Nombre
|
96
92
|
organization: Organización
|
97
93
|
plural: Plural
|
94
|
+
settings:
|
95
|
+
scope_id: Ámbito
|
98
96
|
static_page:
|
99
97
|
changed_notably: Ha habido cambios notables.
|
100
98
|
content: Contenido
|
@@ -112,10 +110,6 @@ es-MX:
|
|
112
110
|
file: Expediente
|
113
111
|
errors:
|
114
112
|
models:
|
115
|
-
oauth_application:
|
116
|
-
attributes:
|
117
|
-
redirect_uri:
|
118
|
-
must_be_ssl: El URI de redirección debe ser un URI SSL
|
119
113
|
organization:
|
120
114
|
attributes:
|
121
115
|
official_img_footer:
|
@@ -147,6 +141,7 @@ es-MX:
|
|
147
141
|
per_page: Por página
|
148
142
|
permissions: Permisos
|
149
143
|
reject: Rechazar
|
144
|
+
share: Compartir
|
150
145
|
verify: Verificar
|
151
146
|
admin_terms_of_use:
|
152
147
|
accept:
|
@@ -274,6 +269,7 @@ es-MX:
|
|
274
269
|
headers:
|
275
270
|
actions: Comportamiento
|
276
271
|
name: Nombre del componente
|
272
|
+
scope: Ámbito del componente
|
277
273
|
type: Tipo de componente
|
278
274
|
new:
|
279
275
|
add: Agregar componente
|
@@ -292,6 +288,11 @@ es-MX:
|
|
292
288
|
welcome: Bienvenido al panel de administración de Decidim.
|
293
289
|
exports:
|
294
290
|
export_as: "%{name} como %{export_format}"
|
291
|
+
formats:
|
292
|
+
CSV: CSV
|
293
|
+
Excel: Excel
|
294
|
+
FormPDF: PDF
|
295
|
+
JSON: JSON
|
295
296
|
notice: Su exportación está actualmente en curso. Recibirá un correo electrónico cuando esté completo.
|
296
297
|
filters:
|
297
298
|
category_id_eq:
|
@@ -318,6 +319,8 @@ es-MX:
|
|
318
319
|
search_placeholder:
|
319
320
|
name_or_nickname_or_email_cont: Buscar %{collection} por correo electrónico, nombre o alias.
|
320
321
|
title_cont: Buscar %{collection} por título.
|
322
|
+
state_eq:
|
323
|
+
label: Estado
|
321
324
|
help_sections:
|
322
325
|
error: Se ha producido un error al actualizar las secciones de ayuda
|
323
326
|
form:
|
@@ -380,7 +383,6 @@ es-MX:
|
|
380
383
|
homepage: Página principal
|
381
384
|
impersonations: Impersonaciones
|
382
385
|
newsletters: Boletines
|
383
|
-
oauth_applications: Aplicaciones OAuth
|
384
386
|
participants: Participantes
|
385
387
|
scope_types: Tipos de ámbito
|
386
388
|
scopes: Ámbitos
|
@@ -388,6 +390,9 @@ es-MX:
|
|
388
390
|
static_pages: Páginas
|
389
391
|
user_groups: Grupos de usuarios
|
390
392
|
users: Usuarios
|
393
|
+
metrics:
|
394
|
+
metrics:
|
395
|
+
see_more_metrics: Ver más métricas
|
391
396
|
models:
|
392
397
|
area:
|
393
398
|
fields:
|
@@ -424,11 +429,6 @@ es-MX:
|
|
424
429
|
sent_to: Enviado a
|
425
430
|
subject: Asunto
|
426
431
|
name: Boletín
|
427
|
-
oauth_application:
|
428
|
-
fields:
|
429
|
-
created_at: Creado en
|
430
|
-
name: Nombre
|
431
|
-
name: Aplicación OAuth
|
432
432
|
participatory_space_private_user:
|
433
433
|
name: Usuario privado de espacio participativo
|
434
434
|
scope:
|
@@ -439,6 +439,14 @@ es-MX:
|
|
439
439
|
fields:
|
440
440
|
name: Nombre
|
441
441
|
plural: Plural
|
442
|
+
share_token:
|
443
|
+
fields:
|
444
|
+
created_at: Creado el
|
445
|
+
expires_at: Caduca el
|
446
|
+
last_used_at: Último uso
|
447
|
+
times_used: Veces utilizado
|
448
|
+
token: Token
|
449
|
+
user: Creado por
|
442
450
|
static_page:
|
443
451
|
fields:
|
444
452
|
created_at: Fecha de creación
|
@@ -471,6 +479,14 @@ es-MX:
|
|
471
479
|
does_not_belong: No pertenece
|
472
480
|
offensive: Ofensiva
|
473
481
|
spam: Contenido no deseado
|
482
|
+
newsletter_templates:
|
483
|
+
index:
|
484
|
+
preview_template: Previsualizar
|
485
|
+
title: Plantillas para el boletín
|
486
|
+
use_template: Utilizar esta plantilla
|
487
|
+
show:
|
488
|
+
preview: 'Previsualizar la plantilla: %{template_name}'
|
489
|
+
use_template: Utilizar esta plantilla
|
474
490
|
newsletters:
|
475
491
|
create:
|
476
492
|
error: Se ha producido un error al crear este boletín.
|
@@ -484,8 +500,6 @@ es-MX:
|
|
484
500
|
edit:
|
485
501
|
save_and_preview: Guardar y vista previa
|
486
502
|
title: Editar boletín
|
487
|
-
form:
|
488
|
-
interpolations_hint: 'Sugerencia: Puede utilizar "%{name}" en cualquier parte del cuerpo o asunto y será reemplazado por el nombre del destinatario.'
|
489
503
|
index:
|
490
504
|
all: todos
|
491
505
|
all_users: 'Todos los usuarios '
|
@@ -529,25 +543,6 @@ es-MX:
|
|
529
543
|
update:
|
530
544
|
error: Se ha producido un error al actualizar este boletín.
|
531
545
|
success: Boletín actualizado correctamente. Por favor revísalo antes de enviarlo.
|
532
|
-
oauth_applications:
|
533
|
-
create:
|
534
|
-
error: Se ha producido un error al crear esta aplicación.
|
535
|
-
success: Aplicación creada con éxito.
|
536
|
-
destroy:
|
537
|
-
error: Se ha producido un error al destruir esta aplicación.
|
538
|
-
success: Aplicación eliminada con éxito.
|
539
|
-
edit:
|
540
|
-
save: Guardar
|
541
|
-
title: Editar aplicación
|
542
|
-
index:
|
543
|
-
confirm_delete: '¿Estás seguro que quieres eliminar esta aplicación?'
|
544
|
-
title: Aplicaciones OAuth
|
545
|
-
new:
|
546
|
-
save: Guardar
|
547
|
-
title: Nueva aplicación
|
548
|
-
update:
|
549
|
-
error: Se ha producido un error al actualizar esta aplicación.
|
550
|
-
success: Aplicación actualizada con éxito.
|
551
546
|
officializations:
|
552
547
|
create:
|
553
548
|
success: Usuario oficializado con éxito
|
@@ -563,12 +558,21 @@ es-MX:
|
|
563
558
|
officialize: Oficializar
|
564
559
|
officialized: Oficializado
|
565
560
|
reofficialize: Re-oficializar
|
561
|
+
show_email: Mostrar la dirección de correo electrónico
|
566
562
|
status: Estado
|
567
563
|
unofficialize: Des-oficializar
|
568
564
|
new:
|
569
565
|
badge: Insignia de oficialización
|
570
566
|
officialize: Oficializar
|
571
567
|
title: Oficializar el usuario "%{name}"
|
568
|
+
show_email_modal:
|
569
|
+
close_modal: Cierra el modal
|
570
|
+
description: Si necesitas contactar directamente con una participante, puedes hacer clic en el botón Mostrar para ver la dirección de correo electrónico. Esta acción se registrará.
|
571
|
+
email_address: Dirección de correo electrónico
|
572
|
+
full_name: Nombre completo
|
573
|
+
hidden: oculto
|
574
|
+
show: Mostrar
|
575
|
+
title: Mostrar dirección de correo del participante
|
572
576
|
organization:
|
573
577
|
edit:
|
574
578
|
title: Editar organización
|
@@ -589,13 +593,16 @@ es-MX:
|
|
589
593
|
edit:
|
590
594
|
update: Actualizar
|
591
595
|
form:
|
592
|
-
|
596
|
+
colors:
|
597
|
+
colors_title: Colores de organizacion
|
598
|
+
header_snippets_help: Utiliza este campo para agregar cosas a la cabecera HTML. El uso más común es integrar servicios de terceros que requieran JavaScript o CSS adicionales. Además, puedes usarlo para agregar etiquetas HTML adicionales. Ten en cuenta que esto sólo se mostrará en las páginas públicas, no en la sección de administración.
|
593
599
|
cta_button_path_help: 'Puedes sobrescribir el enlace al botón de acción principal en la página principal. Usa rutas parciales, no URLs completas aquí. Acepta letras, números, guiones y barras, y debe comenzar con una letra. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción. Ejemplo: %{url}'
|
594
600
|
cta_button_text_help: Puedes sobrescribir el texto del botón de acción principal en la página de inicio para cada idioma disponible en tu organización. Si no está configurado, se usará el valor predeterminado. El botón de acción principal se muestra en la página de inicio entre el texto de bienvenida y la descripción.
|
595
|
-
header_snippets_help: Utiliza este campo para agregar cosas a la cabecera HTML. El uso más común es integrar servicios de terceros que requieran JavaScript o CSS adicionales. Además, puedes usarlo para agregar etiquetas HTML adicionales. Ten en cuenta que esto sólo se mostrará en las páginas públicas, no en la sección de administración.
|
596
601
|
homepage_appearance_title: Editar apariencia de página de inicio
|
597
602
|
homepage_highlighted_content_banner_title: Banner de contenido resaltado
|
598
|
-
|
603
|
+
images:
|
604
|
+
layout_appearance_title: Editar apariencia de diseño global
|
605
|
+
preview: Previsualizar
|
599
606
|
omnipresent_banner_appearance_title: Editar banner omnipresente
|
600
607
|
organization_homepage:
|
601
608
|
edit:
|
@@ -622,7 +629,7 @@ es-MX:
|
|
622
629
|
invalid: Se ha producido un error al leer el archivo CSV.
|
623
630
|
success: Archivo CSV subido correctamente, estamos enviando un correo electrónico de invitación a las participantes. Esto puede tardar un tiempo.
|
624
631
|
new:
|
625
|
-
explanation: Sube tu archivo CSV. Debe tener dos columnas con correo electrónico en la primera columna del archivo y nombre en la última columna del archivo (correo electrónico, nombre) de
|
632
|
+
explanation: 'Sube tu archivo CSV. Debe tener dos columnas con correo electrónico en la primera columna del archivo y el nombre en la última columna del archivo (correo electrónico, nombre) de los usuarios que deseas añadir al espacio participativo, sin encabezados. Evitar usar caracteres no válidos como `<>?%&^*#@()[]=+:;"{}\|` en el nombre de usuario.'
|
626
633
|
title: Sube tu archivo CSV
|
627
634
|
upload: Subir
|
628
635
|
resource_permissions:
|
@@ -631,6 +638,10 @@ es-MX:
|
|
631
638
|
title: Editar permisos
|
632
639
|
update:
|
633
640
|
success: Permisos actualizados con éxito.
|
641
|
+
resources:
|
642
|
+
index:
|
643
|
+
headers:
|
644
|
+
scope: Ámbito
|
634
645
|
scope_types:
|
635
646
|
create:
|
636
647
|
error: Se ha producido un error al crear un nuevo tipo de ámbito.
|
@@ -662,6 +673,23 @@ es-MX:
|
|
662
673
|
update:
|
663
674
|
error: Se produjo un error en la actualización de este ámbito.
|
664
675
|
success: Ámbito actualizado correctamente
|
676
|
+
share_tokens:
|
677
|
+
actions:
|
678
|
+
confirm_destroy: '¿Seguro que quieres eliminar este token?'
|
679
|
+
destroy: Eliminar
|
680
|
+
share: Compartir
|
681
|
+
destroy:
|
682
|
+
error: Se ha producido un error al eliminar este token.
|
683
|
+
success: Token eliminado correctamente.
|
684
|
+
share_tokens:
|
685
|
+
empty: No hay tokens activos
|
686
|
+
help: Estos tokens se utilizan para compartir públicamente este recurso no publicado a cualquier usuario. Se ocultarán cuando se publique el recurso. Haz clic en el icono de compartir el token para visitar la URL compartible.
|
687
|
+
title: Compartir tokens
|
688
|
+
shared:
|
689
|
+
gallery:
|
690
|
+
add_images: Añadir imágenes
|
691
|
+
delete_image: Borrar la imagen
|
692
|
+
gallery_legend: Añadir una galería de imágenes (opccional)
|
665
693
|
static_page_topics:
|
666
694
|
create:
|
667
695
|
error: Se ha producido un error al crear un nuevo tema.
|
@@ -713,10 +741,12 @@ es-MX:
|
|
713
741
|
dashboard: Panel de control
|
714
742
|
impersonatable_users: Usuarios manejables
|
715
743
|
impersonations: Gestion de usuarios
|
744
|
+
metrics: Métricas
|
716
745
|
participants: Usuarios
|
717
746
|
scope_types: Tipos de ámbito
|
718
747
|
scopes: Ámbitos
|
719
748
|
static_pages: Páginas
|
749
|
+
statistics: Actividad
|
720
750
|
user_groups: Grupos de usuarios
|
721
751
|
users: Usuarios
|
722
752
|
user_group:
|
@@ -762,6 +792,14 @@ es-MX:
|
|
762
792
|
new:
|
763
793
|
create: Invitar
|
764
794
|
title: Invitar a un usuario como administrador
|
795
|
+
users_statistics:
|
796
|
+
users_count:
|
797
|
+
admins: Administradores
|
798
|
+
last_day: Del último día
|
799
|
+
last_month: El último mes
|
800
|
+
last_week: La última semana
|
801
|
+
no_users_count_statistics_yet: Aún no hay estadísticas de recuenteo de usuarias
|
802
|
+
participants: Participantes
|
765
803
|
view_public_page: Ver página pública
|
766
804
|
forms:
|
767
805
|
errors:
|