decidim-admin 0.28.6 → 0.29.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/README.md +13 -0
- data/app/cells/decidim/admin/content_block_cell.rb +0 -1
- data/app/cells/decidim/admin/results_per_page/show.erb +2 -2
- data/app/cells/decidim/admin/results_per_page_cell.rb +0 -2
- data/app/commands/decidim/admin/block_user.rb +0 -1
- data/app/commands/decidim/admin/create_area.rb +4 -32
- data/app/commands/decidim/admin/create_area_type.rb +4 -33
- data/app/commands/decidim/admin/create_attachment.rb +5 -4
- data/app/commands/decidim/admin/create_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/create_category.rb +4 -37
- data/app/commands/decidim/admin/create_component.rb +7 -40
- data/app/commands/decidim/admin/create_newsletter.rb +11 -29
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +4 -4
- data/app/commands/decidim/admin/create_scope.rb +15 -32
- data/app/commands/decidim/admin/create_scope_type.rb +3 -32
- data/app/commands/decidim/admin/create_static_page.rb +6 -47
- data/app/commands/decidim/admin/create_static_page_topic.rb +4 -26
- data/app/commands/decidim/admin/deliver_newsletter.rb +4 -5
- data/app/commands/decidim/admin/destroy_area.rb +2 -25
- data/app/commands/decidim/admin/destroy_category.rb +4 -29
- data/app/commands/decidim/admin/destroy_component.rb +5 -43
- data/app/commands/decidim/admin/destroy_newsletter.rb +2 -30
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +5 -32
- data/app/commands/decidim/admin/destroy_scope.rb +6 -33
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_admin.rb +4 -4
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +5 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +4 -5
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +2 -41
- data/app/commands/decidim/admin/update_area_type.rb +2 -42
- data/app/commands/decidim/admin/update_attachment.rb +10 -7
- data/app/commands/decidim/admin/update_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/update_category.rb +2 -45
- data/app/commands/decidim/admin/update_component.rb +4 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +3 -3
- data/app/commands/decidim/admin/{update_external_domain_whitelist.rb → update_external_domain_allowlist.rb} +6 -5
- data/app/commands/decidim/admin/update_help_sections.rb +6 -3
- data/app/commands/decidim/admin/update_newsletter.rb +8 -8
- data/app/commands/decidim/admin/update_organization.rb +9 -53
- data/app/commands/decidim/admin/update_organization_appearance.rb +10 -81
- data/app/commands/decidim/admin/update_scope.rb +7 -40
- data/app/commands/decidim/admin/update_scope_type.rb +2 -42
- data/app/commands/decidim/admin/update_static_page.rb +5 -46
- data/app/commands/decidim/admin/update_static_page_topic.rb +2 -43
- data/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +2 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +79 -4
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +1 -1
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -7
- data/app/controllers/concerns/decidim/admin/paginable.rb +20 -0
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +2 -1
- data/app/controllers/decidim/admin/area_types_controller.rb +8 -9
- data/app/controllers/decidim/admin/areas_controller.rb +1 -1
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +1 -1
- data/app/controllers/decidim/admin/block_user_controller.rb +1 -1
- data/app/controllers/decidim/admin/categories_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 +1 -1
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/conflicts_controller.rb +6 -14
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/impersonations_controller.rb +0 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +4 -4
- data/app/controllers/decidim/admin/moderations_controller.rb +7 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +6 -7
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +2 -2
- data/app/controllers/decidim/admin/{organization_external_domain_whitelist_controller.rb → organization_external_domain_allowlist_controller.rb} +7 -7
- data/app/controllers/decidim/admin/scope_types_controller.rb +7 -8
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +1 -1
- 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/forms/decidim/admin/attachment_form.rb +7 -1
- data/app/forms/decidim/admin/help_section_form.rb +1 -1
- data/app/forms/decidim/admin/impersonate_user_form.rb +0 -5
- data/app/forms/decidim/admin/organization_appearance_form.rb +2 -5
- data/app/forms/decidim/admin/{organization_external_domain_whitelist_form.rb → organization_external_domain_allowlist_form.rb} +3 -3
- data/app/forms/decidim/admin/organization_form.rb +4 -4
- data/app/forms/decidim/admin/static_page_form.rb +1 -2
- data/app/forms/decidim/admin/transfer_user_form.rb +0 -15
- data/app/helpers/decidim/admin/application_helper.rb +0 -13
- data/app/helpers/decidim/admin/filterable_helper.rb +19 -3
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -3
- data/app/helpers/decidim/admin/paginable/per_page_helper.rb +22 -0
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +2 -2
- data/app/packs/entrypoints/decidim_admin.js +4 -1
- data/app/packs/src/decidim/admin/application.js +19 -15
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/newsletters.js +9 -18
- data/app/packs/src/decidim/admin/participatory_space_search.js +1 -1
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +2 -2
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +27 -0
- data/app/packs/src/decidim/admin/text_copy.js +19 -0
- data/app/packs/stylesheets/decidim/admin/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +62 -0
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +8 -0
- data/app/packs/stylesheets/decidim/admin/_moderations.scss +0 -8
- data/app/packs/stylesheets/decidim/admin/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -14
- data/app/queries/decidim/admin/newsletter_recipients.rb +5 -9
- data/app/queries/decidim/admin/user_filter.rb +4 -4
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/_form.html.erb +21 -2
- data/app/views/decidim/admin/attachments/index.html.erb +2 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +26 -8
- data/app/views/decidim/admin/block_user/new.html.erb +1 -1
- data/app/views/decidim/admin/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/components/index.html.erb +1 -5
- data/app/views/decidim/admin/conflicts/edit.html.erb +11 -21
- data/app/views/decidim/admin/conflicts/index.html.erb +6 -29
- data/app/views/decidim/admin/dashboard/_pending_moderations.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +6 -6
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +5 -7
- data/app/views/decidim/admin/imports/new.html.erb +6 -7
- data/app/views/decidim/admin/logs/_filters.html.erb +3 -3
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +4 -4
- data/app/views/decidim/admin/moderations/index.html.erb +5 -5
- data/app/views/decidim/admin/moderations/reports/index.html.erb +6 -6
- data/app/views/decidim/admin/moderations/reports/show.html.erb +4 -4
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +3 -2
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +7 -7
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +6 -7
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/organization/_form.html.erb +3 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +0 -3
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -5
- data/app/views/decidim/admin/organization_appearance/form/_minimap.html.erb +3 -3
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_external_domain.html.erb +4 -4
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_form.html.erb +2 -2
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/edit.html.erb +2 -2
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +1 -1
- data/app/views/decidim/admin/shared/_adjacent_navigation.html.erb +30 -0
- data/app/views/decidim/admin/shared/_admin_confirm_modal.html.erb +7 -7
- data/app/views/decidim/admin/shared/_filters.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +1 -1
- data/app/views/decidim/admin/static_page_topics/index.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_form.html.erb +0 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_admin_timeout_modal.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_callouts_full.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +6 -68
- data/config/locales/bg.yml +17 -14
- data/config/locales/ca.yml +23 -27
- data/config/locales/cs.yml +16 -25
- data/config/locales/de.yml +24 -28
- data/config/locales/el.yml +2 -15
- data/config/locales/en.yml +15 -19
- data/config/locales/eo.yml +0 -1
- data/config/locales/es-MX.yml +19 -23
- data/config/locales/es-PY.yml +19 -23
- data/config/locales/es.yml +19 -23
- data/config/locales/eu.yml +162 -178
- data/config/locales/fi-plain.yml +22 -26
- data/config/locales/fi.yml +43 -47
- data/config/locales/fr-CA.yml +18 -22
- data/config/locales/fr.yml +16 -20
- data/config/locales/ga-IE.yml +6 -4
- data/config/locales/gl.yml +3 -10
- data/config/locales/he-IL.yml +0 -6
- data/config/locales/hu.yml +14 -15
- data/config/locales/id-ID.yml +5 -12
- data/config/locales/is-IS.yml +6 -16
- data/config/locales/it.yml +6 -180
- data/config/locales/ja.yml +22 -26
- data/config/locales/kaa.yml +3 -8
- data/config/locales/ko.yml +3 -16
- data/config/locales/lb.yml +7 -17
- data/config/locales/lt.yml +0 -14
- data/config/locales/lv.yml +4 -9
- data/config/locales/nl.yml +4 -14
- data/config/locales/no.yml +3 -13
- data/config/locales/pl.yml +18 -13
- data/config/locales/pt-BR.yml +10 -14
- data/config/locales/pt.yml +4 -18
- data/config/locales/ro-RO.yml +8 -27
- data/config/locales/ru.yml +8 -11
- data/config/locales/sk.yml +7 -10
- data/config/locales/sl.yml +2 -7
- data/config/locales/sq-AL.yml +6 -16
- data/config/locales/sr-CS.yml +5 -9
- data/config/locales/sv.yml +211 -366
- data/config/locales/th-TH.yml +0 -17
- data/config/locales/tr-TR.yml +8 -11
- data/config/locales/uk.yml +7 -8
- data/config/locales/zh-CN.yml +10 -6
- data/config/locales/zh-TW.yml +0 -13
- data/config/routes.rb +2 -2
- data/decidim-admin.gemspec +2 -2
- data/lib/decidim/admin/engine.rb +0 -1
- data/lib/decidim/admin/import/creator.rb +1 -1
- data/lib/decidim/admin/import/importer_factory.rb +2 -2
- data/lib/decidim/admin/menu.rb +4 -4
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +4 -2
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +3 -2
- data/lib/decidim/admin/test/filterable_examples.rb +5 -3
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +5 -5
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +0 -1
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +12 -12
- data/lib/decidim/admin/test/manage_attachments_examples.rb +52 -28
- data/lib/decidim/admin/test/manage_categories_examples.rb +13 -13
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +4 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +22 -22
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/version.rb +1 -1
- data/lib/decidim/admin.rb +15 -0
- metadata +28 -28
- data/app/commands/decidim/admin/destroy_share_token.rb +0 -46
- data/app/commands/decidim/admin/destroy_static_page.rb +0 -40
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +0 -40
- data/app/controllers/concerns/decidim/admin/verification_conflicts/filterable.rb +0 -31
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -529
- data/config/locales/ca-IT.yml +0 -1153
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/cs.yml
CHANGED
@@ -106,8 +106,6 @@ cs:
|
|
106
106
|
participatory_space_private_user:
|
107
107
|
email: E-mail
|
108
108
|
name: Název
|
109
|
-
participatory_space_private_user_csv_import:
|
110
|
-
file: Soubor
|
111
109
|
scope:
|
112
110
|
code: Kód
|
113
111
|
name: Název
|
@@ -353,8 +351,6 @@ cs:
|
|
353
351
|
conflicts:
|
354
352
|
attempts: Pokusy
|
355
353
|
'false': 'Ne'
|
356
|
-
index:
|
357
|
-
text: Hledat podle aktuálního uživatelského e-mailu, jména nebo přezdívky.
|
358
354
|
managed_user_name: Spravovaný uživatel
|
359
355
|
solved: Vyřešeno
|
360
356
|
title: Konflikty ověření
|
@@ -383,22 +379,17 @@ cs:
|
|
383
379
|
update: Aktualizovat
|
384
380
|
dashboard:
|
385
381
|
pending_moderations:
|
386
|
-
anouncement:
|
387
|
-
one: Je zde %{count} čekající na moderování
|
388
|
-
few: Jsou zde %{count} čekající na moderování
|
389
|
-
many: Je zde %{count} čekajících na moderování
|
390
|
-
other: Je tu %{count} čekajících na moderování
|
391
382
|
goto_moderation: Přejít na globální moderaci
|
392
383
|
title: Čekající moderování
|
393
384
|
show:
|
394
385
|
dropdown: Rozbalovací nabídka
|
395
386
|
view_more_logs: Zobrazit další protokoly
|
396
|
-
|
387
|
+
domain_allowlist:
|
397
388
|
form:
|
398
389
|
domain_too_short: Doména je příliš krátká
|
399
390
|
update:
|
400
|
-
error:
|
401
|
-
success: Seznam povolených domén byl úspěšně aktualizován.
|
391
|
+
error: Aktualizace seznamu povolených externích domén se nezdařila
|
392
|
+
success: Seznam povolených externích domén byl úspěšně aktualizován.
|
402
393
|
exports:
|
403
394
|
export_as: "%{name} jako %{export_format}"
|
404
395
|
formats:
|
@@ -457,6 +448,7 @@ cs:
|
|
457
448
|
values:
|
458
449
|
'false': Zveřejněno
|
459
450
|
'true': Nezveřejněno
|
451
|
+
remove_all: Odebrat vše
|
460
452
|
scope_id_eq:
|
461
453
|
label: Oblast působnosti
|
462
454
|
search_label: Hledat
|
@@ -465,7 +457,6 @@ cs:
|
|
465
457
|
report_count_eq: Počet nahlášení
|
466
458
|
reported_id_string_or_reported_content_cont: Hledat %{collection} podle nahlášeného Id nebo obsahu.
|
467
459
|
title_cont: Hledat %{collection} podle názvu.
|
468
|
-
user_name_or_user_email_cont: Hledat %{collection} podle jména nebo e-mailu.
|
469
460
|
user_name_or_user_nickname_or_user_email_cont: Hledat %{collection} podle e-mailu, jména nebo přezdívky.
|
470
461
|
state_eq:
|
471
462
|
label: Stav
|
@@ -589,7 +580,7 @@ cs:
|
|
589
580
|
components: Komponenty
|
590
581
|
configuration: Konfigurace
|
591
582
|
content: Nahlášený obsah
|
592
|
-
|
583
|
+
external_domain_allowlist: Povolené externí domény
|
593
584
|
help_sections: Sekce nápovědy
|
594
585
|
homepage: Domovská stránka
|
595
586
|
impersonations: V zastoupení
|
@@ -732,11 +723,6 @@ cs:
|
|
732
723
|
report_language: Jazyk zprávy
|
733
724
|
report_reason: Důvod
|
734
725
|
title: Detaily hlášení
|
735
|
-
new_import:
|
736
|
-
accepted_mime_types:
|
737
|
-
csv: CSV
|
738
|
-
json: JSON
|
739
|
-
xlsx: XLSX
|
740
726
|
newsletter_templates:
|
741
727
|
index:
|
742
728
|
preview_template: Náhled
|
@@ -879,17 +865,17 @@ cs:
|
|
879
865
|
layout_appearance_title: Upravit vzhled zobrazení
|
880
866
|
preview: Náhled
|
881
867
|
omnipresent_banner_appearance_title: Upravit všudypřítomný banner
|
882
|
-
|
868
|
+
organization_external_domain_allowlist:
|
883
869
|
edit:
|
884
|
-
update:
|
870
|
+
update: Aktualizovat
|
885
871
|
external_domain:
|
886
872
|
down: Dolů
|
887
873
|
external_domain: Externí doména
|
888
874
|
remove: Odstranit
|
889
875
|
up: Nahoru
|
890
876
|
form:
|
891
|
-
add: Přidat
|
892
|
-
title: Seznam externích
|
877
|
+
add: Přidat na Seznam povolených
|
878
|
+
title: Seznam povolených externích domén
|
893
879
|
participatory_space_private_users:
|
894
880
|
create:
|
895
881
|
error: Při přidávání soukromého uživatele pro tento participační prostor došlo k chybě.
|
@@ -987,6 +973,11 @@ cs:
|
|
987
973
|
help: Tyto tokeny se používají k veřejnému sdílení tohoto nezveřejněného zdroje každému uživateli. Budou skryty, když bude dokument publikován. Klikněte na ikonu sdílení tokenu a navštivte sdílenou URL.
|
988
974
|
title: Sdílet tokeny
|
989
975
|
shared:
|
976
|
+
adjacent_navigation:
|
977
|
+
next: Další
|
978
|
+
next_title: Další položka
|
979
|
+
previous: Předchozí
|
980
|
+
previous_title: Předchozí položka
|
990
981
|
gallery:
|
991
982
|
add_images: Přidat obrázky
|
992
983
|
edit_images: Upravit obrázky
|
@@ -1039,7 +1030,7 @@ cs:
|
|
1039
1030
|
areas: Oblasti
|
1040
1031
|
authorization_workflows: Metody ověření
|
1041
1032
|
dashboard: Ovládací panel
|
1042
|
-
edit_external_domains: Seznam externích
|
1033
|
+
edit_external_domains: Seznam povolených externích domén
|
1043
1034
|
edit_landing_page: Obsah stránky
|
1044
1035
|
edit_organization_appearance: Upravit vzhled domovské stránky
|
1045
1036
|
impersonatable_users: Spravovatelní účastníci
|
@@ -1080,7 +1071,7 @@ cs:
|
|
1080
1071
|
acme@example.org
|
1081
1072
|
bubba.gump@example.org
|
1082
1073
|
title: Nahrát soubor CSV
|
1083
|
-
upload:
|
1074
|
+
upload: nahrát
|
1084
1075
|
users:
|
1085
1076
|
create:
|
1086
1077
|
error: Při pozvání tohoto administrátora došlo k chybě.
|
data/config/locales/de.yml
CHANGED
@@ -78,8 +78,8 @@ de:
|
|
78
78
|
machine_translation_display_priority_original: Originaltext zuerst
|
79
79
|
machine_translation_display_priority_translation: Übersetzter Text zuerst
|
80
80
|
name: Name
|
81
|
-
official_img_footer: Offizielles
|
82
|
-
official_url: Offizielle URL
|
81
|
+
official_img_footer: Offizielles Logo Fußzeile
|
82
|
+
official_url: Offizielle Organisations-URL
|
83
83
|
omnipresent_banner_short_description: Kurze Beschreibung
|
84
84
|
omnipresent_banner_title: Titel
|
85
85
|
omnipresent_banner_url: URL
|
@@ -106,8 +106,6 @@ de:
|
|
106
106
|
participatory_space_private_user:
|
107
107
|
email: E-Mail
|
108
108
|
name: Name
|
109
|
-
participatory_space_private_user_csv_import:
|
110
|
-
file: Datei
|
111
109
|
scope:
|
112
110
|
code: Code
|
113
111
|
name: Name
|
@@ -353,8 +351,6 @@ de:
|
|
353
351
|
conflicts:
|
354
352
|
attempts: Versuche
|
355
353
|
'false': 'Nein'
|
356
|
-
index:
|
357
|
-
text: Suche nach bestehender E-Mail, Name oder Spitzname des Teilnehmenden.
|
358
354
|
managed_user_name: Verwalteter Benutzer
|
359
355
|
solved: Gelöst
|
360
356
|
title: Überprüfungskonflikte
|
@@ -383,7 +379,7 @@ de:
|
|
383
379
|
update: Aktualisieren
|
384
380
|
dashboard:
|
385
381
|
pending_moderations:
|
386
|
-
|
382
|
+
announcement:
|
387
383
|
one: Es gibt %{count} zu moderierender Beitrag
|
388
384
|
other: Es gibt %{count} zu moderierende Beiträge
|
389
385
|
goto_moderation: Gehe zur globalen Moderation
|
@@ -391,12 +387,12 @@ de:
|
|
391
387
|
show:
|
392
388
|
dropdown: Dropdown
|
393
389
|
view_more_logs: Weitere Protokolle anzeigen
|
394
|
-
|
390
|
+
domain_allowlist:
|
395
391
|
form:
|
396
392
|
domain_too_short: Domain zu kurz
|
397
393
|
update:
|
398
|
-
error:
|
399
|
-
success:
|
394
|
+
error: Liste der zulässigen externen Domains konnte nicht aktualisiert werden
|
395
|
+
success: Die Liste der zulässigen externen Domains wurde erfolgreich aktualisiert.
|
400
396
|
exports:
|
401
397
|
export_as: "%{name} als %{export_format}"
|
402
398
|
formats:
|
@@ -455,15 +451,15 @@ de:
|
|
455
451
|
values:
|
456
452
|
'false': Veröffentlicht
|
457
453
|
'true': Unveröffentlicht
|
454
|
+
remove_all: Alle entfernen
|
458
455
|
scope_id_eq:
|
459
|
-
label:
|
456
|
+
label: Themenbereich
|
460
457
|
search_label: Suche
|
461
458
|
search_placeholder:
|
462
459
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Kontoname.
|
463
460
|
report_count_eq: Anzahl Meldungen
|
464
461
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
465
462
|
title_cont: In %{collection} nach Titel suchen.
|
466
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
467
463
|
user_name_or_user_nickname_or_user_email_cont: '%{collection} nach E-Mail, Name oder Kontoname durchsuchen.'
|
468
464
|
state_eq:
|
469
465
|
label: Status
|
@@ -579,7 +575,7 @@ de:
|
|
579
575
|
components: Komponenten
|
580
576
|
configuration: Aufbau
|
581
577
|
content: Gemeldeter Inhalt
|
582
|
-
|
578
|
+
external_domain_allowlist: Erlaubte externe Domains
|
583
579
|
help_sections: Hilfeabschnitte
|
584
580
|
homepage: Startseite
|
585
581
|
impersonations: Identitätswechsel
|
@@ -722,11 +718,6 @@ de:
|
|
722
718
|
report_language: Berichtssprache
|
723
719
|
report_reason: Grund
|
724
720
|
title: Berichtdetails
|
725
|
-
new_import:
|
726
|
-
accepted_mime_types:
|
727
|
-
csv: CSV
|
728
|
-
json: JSON
|
729
|
-
xlsx: XLSX
|
730
721
|
newsletter_templates:
|
731
722
|
index:
|
732
723
|
preview_template: Vorschau
|
@@ -770,7 +761,7 @@ de:
|
|
770
761
|
confirm_deliver: Möchten Sie diesen Newsletter wirklich versenden? Diese Aktion kann nicht rückgängig gemacht werden.
|
771
762
|
deliver: Newsletter versenden
|
772
763
|
followers_help: Sendet den Newsletter an alle bestätigten Benutzer, die den ausgewählten Teilnehmerräumen in der Liste folgen.
|
773
|
-
none:
|
764
|
+
none: Niemand
|
774
765
|
participants_help: Sendet den Newsletter an alle bestätigten Benutzer, die an den ausgewählten Teilnehmerräumen der Liste teilgenommen haben.
|
775
766
|
recipients_count: Dieser Newsletter wird an <strong id='recipients_count'>%{count}</strong> Teilnehmer gesendet.
|
776
767
|
scopes_help: Sendet den Newsletter an Teilnehmer, die einen der gewählten Themenbereiche in den "Meine Interessen" Einstellungen ihres Kontos aktiviert haben.
|
@@ -866,20 +857,20 @@ de:
|
|
866
857
|
homepage_appearance_title: Homepage-Erscheinungsbild bearbeiten
|
867
858
|
homepage_highlighted_content_banner_title: Highlighted Inhaltsbanner
|
868
859
|
images:
|
869
|
-
layout_appearance_title: Layout-
|
860
|
+
layout_appearance_title: Layout-Layout bearbeiten
|
870
861
|
preview: Vorschau
|
871
862
|
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
872
|
-
|
863
|
+
organization_external_domain_allowlist:
|
873
864
|
edit:
|
874
865
|
update: Aktualisieren
|
875
866
|
external_domain:
|
876
867
|
down: Runter
|
877
868
|
external_domain: Externe Domain
|
878
869
|
remove: Entfernen
|
879
|
-
up:
|
870
|
+
up: Hoch
|
880
871
|
form:
|
881
|
-
add: Zur
|
882
|
-
title:
|
872
|
+
add: Zur erlaubten Liste hinzufügen
|
873
|
+
title: Liste erlaubter externer Domains
|
883
874
|
participatory_space_private_users:
|
884
875
|
create:
|
885
876
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
@@ -899,7 +890,7 @@ de:
|
|
899
890
|
success: CSV-Datei wurde erfolgreich hochgeladen, wir senden eine Einladungs-E-Mail an die Teilnehmenden. Dies kann eine Weile dauern.
|
900
891
|
new:
|
901
892
|
csv_upload:
|
902
|
-
title:
|
893
|
+
title: CSV-Datei hochladen
|
903
894
|
destroy:
|
904
895
|
button: Alle private Teilnehmende auswählen
|
905
896
|
confirm: Sind Sie sicher, dass Sie alle private Teilnehmende entfernen möchten? Diese Aktion kann nicht rückgängig gemacht werden. Sie werden sie nicht wiederherstellen können.
|
@@ -930,7 +921,7 @@ de:
|
|
930
921
|
resources:
|
931
922
|
index:
|
932
923
|
headers:
|
933
|
-
scope:
|
924
|
+
scope: Bereich
|
934
925
|
scope_types:
|
935
926
|
create:
|
936
927
|
error: Beim Erstellen eines neuen Geltungstyps ist ein Fehler aufgetreten.
|
@@ -975,6 +966,11 @@ de:
|
|
975
966
|
help: Diese Token werden verwendet, um diese unveröffentlichte Ressource öffentlich an jeden Benutzer weiterzugeben. Sie werden ausgeblendet, wenn das Werk veröffentlicht wird. Klicken Sie auf das Teilen-Symbol des Tokens um die teilbare URL zu besuchen.
|
976
967
|
title: Token teilen
|
977
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Weiter
|
971
|
+
next_title: Nächstes Element
|
972
|
+
previous: Zurück
|
973
|
+
previous_title: Vorheriges Element
|
978
974
|
gallery:
|
979
975
|
add_images: Bilder hinzufügen
|
980
976
|
edit_images: Bilder bearbeiten
|
@@ -1027,7 +1023,7 @@ de:
|
|
1027
1023
|
areas: Bereiche
|
1028
1024
|
authorization_workflows: Verifizierungsmethoden
|
1029
1025
|
dashboard: Instrumententafel
|
1030
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Liste erlaubter externer Domains
|
1031
1027
|
edit_landing_page: Seiteninhalte
|
1032
1028
|
edit_organization_appearance: Homepage-Erscheinungsbild bearbeiten
|
1033
1029
|
impersonatable_users: Überschaubare Benutzer
|
@@ -1056,7 +1052,7 @@ de:
|
|
1056
1052
|
user_groups:
|
1057
1053
|
index:
|
1058
1054
|
state:
|
1059
|
-
pending:
|
1055
|
+
pending: steht aus
|
1060
1056
|
rejected: Abgelehnt
|
1061
1057
|
verified: Überprüft
|
1062
1058
|
verify_via_csv: Überprüfen Sie über CSV
|
data/config/locales/el.yml
CHANGED
@@ -360,10 +360,6 @@ el:
|
|
360
360
|
title: Εκκρεμείς εγκρίσεις
|
361
361
|
show:
|
362
362
|
view_more_logs: Προβολή περισσότερων αρχείων καταγραφής
|
363
|
-
domain_whitelist:
|
364
|
-
update:
|
365
|
-
error: Απέτυχε η ενημέρωση της λίστας επιτρεπόμενων τομέων.
|
366
|
-
success: Η λίστα επιτρεπόμενων τομέων ενημερώθηκε με επιτυχία.
|
367
363
|
exports:
|
368
364
|
export_as: "Όνομα %{name} ως μορφή %{export_format}"
|
369
365
|
formats:
|
@@ -430,7 +426,6 @@ el:
|
|
430
426
|
report_count_eq: Αναφορά μετρητή eq
|
431
427
|
reported_id_string_or_reported_content_cont: Αναζήτηση %{collection} με αναγνωριστικό ή περιεχόμενο προς αναφορά.
|
432
428
|
title_cont: Αναζήτηση συλλογής %{collection} με βάση τον τίτλο.
|
433
|
-
user_name_or_user_email_cont: Αναζήτηση %{collection} με βάση το όνομα ή το email.
|
434
429
|
user_name_or_user_nickname_or_user_email_cont: Αναζήτηση %{collection} με email, όνομα ή ψευδώνυμο.
|
435
430
|
state_eq:
|
436
431
|
label: Κατάσταση
|
@@ -636,7 +631,7 @@ el:
|
|
636
631
|
created_at: Δημιουργήθηκε στις
|
637
632
|
document_number: Αριθμός εγγράφου
|
638
633
|
name: Όνομα
|
639
|
-
nickname:
|
634
|
+
nickname: Ψευδωνυμο
|
640
635
|
phone: Τηλέφωνο
|
641
636
|
state: Κατάσταση
|
642
637
|
users_count: Πλήθος συμμετεχόντων
|
@@ -818,12 +813,6 @@ el:
|
|
818
813
|
layout_appearance_title: Επεξεργασία εμφάνισης διάταξης
|
819
814
|
preview: Προεπισκόπηση
|
820
815
|
omnipresent_banner_appearance_title: Επεξεργασία διαφημιστικού πλαισίου omnipresent
|
821
|
-
organization_external_domain_whitelist:
|
822
|
-
edit:
|
823
|
-
update: Ενημέρωση
|
824
|
-
form:
|
825
|
-
add: Προσθήκη στη λευκή λίστα
|
826
|
-
title: Εξωτερική λευκή λίστα τομέων
|
827
816
|
participatory_space_private_users:
|
828
817
|
create:
|
829
818
|
error: Υπήρξε ένα πρόβλημα κατά την προσθήκη ενός ιδιωτικού συμμετέχοντα για αυτόν τον χώρο συμμετοχής.
|
@@ -841,8 +830,6 @@ el:
|
|
841
830
|
create:
|
842
831
|
success: Το αρχείο CSV μεταφορτώθηκε με επιτυχία. Στέλνουμε πρόσκληση στους συμμετέχοντες μέσω email. Αυτή η διαδικασία μπορεί να χρειαστεί λίγη ώρα.
|
843
832
|
new:
|
844
|
-
csv_upload:
|
845
|
-
title: Αποστολή του αρχείου σας CSV
|
846
833
|
example_file: 'Παράδειγμα αρχείου:'
|
847
834
|
upload: Αποστολή
|
848
835
|
reminders:
|
@@ -975,7 +962,7 @@ el:
|
|
975
962
|
user_groups:
|
976
963
|
index:
|
977
964
|
state:
|
978
|
-
pending:
|
965
|
+
pending: Σε εκκρεμότητα
|
979
966
|
rejected: Απορρίφθηκε
|
980
967
|
verified: Επαληθεύτηκε
|
981
968
|
verify_via_csv: Επαλήθευση μέσω CSV
|
data/config/locales/en.yml
CHANGED
@@ -106,8 +106,6 @@ en:
|
|
106
106
|
participatory_space_private_user:
|
107
107
|
email: Email
|
108
108
|
name: Name
|
109
|
-
participatory_space_private_user_csv_import:
|
110
|
-
file: File
|
111
109
|
scope:
|
112
110
|
code: Code
|
113
111
|
name: Name
|
@@ -353,8 +351,6 @@ en:
|
|
353
351
|
conflicts:
|
354
352
|
attempts: Attempts
|
355
353
|
'false': 'No'
|
356
|
-
index:
|
357
|
-
text: Search by current user email, name or nickname.
|
358
354
|
managed_user_name: Managed User
|
359
355
|
solved: Solved
|
360
356
|
title: Verification conflicts
|
@@ -383,7 +379,7 @@ en:
|
|
383
379
|
update: Update
|
384
380
|
dashboard:
|
385
381
|
pending_moderations:
|
386
|
-
|
382
|
+
announcement:
|
387
383
|
one: There are %{count} pending moderation
|
388
384
|
other: There are %{count} pending moderations
|
389
385
|
goto_moderation: Go to global moderations
|
@@ -391,12 +387,12 @@ en:
|
|
391
387
|
show:
|
392
388
|
dropdown: Dropdown
|
393
389
|
view_more_logs: View more logs
|
394
|
-
|
390
|
+
domain_allowlist:
|
395
391
|
form:
|
396
392
|
domain_too_short: Domain too short
|
397
393
|
update:
|
398
|
-
error: Failed to update
|
399
|
-
success:
|
394
|
+
error: Failed to update list of allowed external domains
|
395
|
+
success: The list of allowed external domain successfully updated.
|
400
396
|
exports:
|
401
397
|
export_as: "%{name} as %{export_format}"
|
402
398
|
formats:
|
@@ -455,6 +451,7 @@ en:
|
|
455
451
|
values:
|
456
452
|
'false': Published
|
457
453
|
'true': Unpublished
|
454
|
+
remove_all: Remove all
|
458
455
|
scope_id_eq:
|
459
456
|
label: Scope
|
460
457
|
search_label: Search
|
@@ -463,7 +460,6 @@ en:
|
|
463
460
|
report_count_eq: Report count eq
|
464
461
|
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content.
|
465
462
|
title_cont: Search %{collection} by title.
|
466
|
-
user_name_or_user_email_cont: Search %{collection} by name or email.
|
467
463
|
user_name_or_user_nickname_or_user_email_cont: Search %{collection} by email, name or nickname.
|
468
464
|
state_eq:
|
469
465
|
label: State
|
@@ -579,7 +575,7 @@ en:
|
|
579
575
|
components: Components
|
580
576
|
configuration: Configuration
|
581
577
|
content: Reported content
|
582
|
-
|
578
|
+
external_domain_allowlist: Allowed external domains
|
583
579
|
help_sections: Help sections
|
584
580
|
homepage: Homepage
|
585
581
|
impersonations: Impersonations
|
@@ -722,11 +718,6 @@ en:
|
|
722
718
|
report_language: Report language
|
723
719
|
report_reason: Reason
|
724
720
|
title: Report details
|
725
|
-
new_import:
|
726
|
-
accepted_mime_types:
|
727
|
-
csv: CSV
|
728
|
-
json: JSON
|
729
|
-
xlsx: XLSX
|
730
721
|
newsletter_templates:
|
731
722
|
index:
|
732
723
|
preview_template: Preview
|
@@ -869,7 +860,7 @@ en:
|
|
869
860
|
layout_appearance_title: Edit layout appearance
|
870
861
|
preview: Preview
|
871
862
|
omnipresent_banner_appearance_title: Edit omnipresent banner
|
872
|
-
|
863
|
+
organization_external_domain_allowlist:
|
873
864
|
edit:
|
874
865
|
update: Update
|
875
866
|
external_domain:
|
@@ -878,8 +869,8 @@ en:
|
|
878
869
|
remove: Remove
|
879
870
|
up: Up
|
880
871
|
form:
|
881
|
-
add: Add to
|
882
|
-
title:
|
872
|
+
add: Add to allowed list
|
873
|
+
title: Allowed list of external domains
|
883
874
|
participatory_space_private_users:
|
884
875
|
create:
|
885
876
|
error: There was a problem adding a private participant for this participatory space.
|
@@ -975,6 +966,11 @@ en:
|
|
975
966
|
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.
|
976
967
|
title: Share tokens
|
977
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Next
|
971
|
+
next_title: Next item
|
972
|
+
previous: Previous
|
973
|
+
previous_title: Previous item
|
978
974
|
gallery:
|
979
975
|
add_images: Add images
|
980
976
|
edit_images: Edit images
|
@@ -1027,7 +1023,7 @@ en:
|
|
1027
1023
|
areas: Areas
|
1028
1024
|
authorization_workflows: Verification methods
|
1029
1025
|
dashboard: Dashboard
|
1030
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Allowed list of external domains
|
1031
1027
|
edit_landing_page: Page contents
|
1032
1028
|
edit_organization_appearance: Edit homepage appearance
|
1033
1029
|
impersonatable_users: Manageable participants
|
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
@@ -106,8 +106,6 @@ es-MX:
|
|
106
106
|
participatory_space_private_user:
|
107
107
|
email: Correo electrónico
|
108
108
|
name: Nombre
|
109
|
-
participatory_space_private_user_csv_import:
|
110
|
-
file: Archivo
|
111
109
|
scope:
|
112
110
|
code: Código
|
113
111
|
name: Nombre
|
@@ -353,8 +351,6 @@ es-MX:
|
|
353
351
|
conflicts:
|
354
352
|
attempts: Intentos
|
355
353
|
'false': 'No'
|
356
|
-
index:
|
357
|
-
text: Buscar por correo electrónico, nombre o alias.
|
358
354
|
managed_user_name: Usuario gestionado
|
359
355
|
solved: Resuelto
|
360
356
|
title: Conflictos de verificación
|
@@ -383,7 +379,7 @@ es-MX:
|
|
383
379
|
update: Actualizar
|
384
380
|
dashboard:
|
385
381
|
pending_moderations:
|
386
|
-
|
382
|
+
announcement:
|
387
383
|
one: Hay %{count} moderación pendiente
|
388
384
|
other: Hay %{count} moderaciones pendientes
|
389
385
|
goto_moderation: Ir a moderaciones globales
|
@@ -391,12 +387,12 @@ es-MX:
|
|
391
387
|
show:
|
392
388
|
dropdown: Desplegable
|
393
389
|
view_more_logs: Ver más registros
|
394
|
-
|
390
|
+
domain_allowlist:
|
395
391
|
form:
|
396
392
|
domain_too_short: El dominio es demasiado corto
|
397
393
|
update:
|
398
|
-
error:
|
399
|
-
success:
|
394
|
+
error: Se ha producido un error al actualizar la lista de dominios externos permitidos
|
395
|
+
success: La lista de dominios externos permitidos se ha actualizado correctamente.
|
400
396
|
exports:
|
401
397
|
export_as: "%{name} como %{export_format}"
|
402
398
|
formats:
|
@@ -455,6 +451,7 @@ es-MX:
|
|
455
451
|
values:
|
456
452
|
'false': Publicada
|
457
453
|
'true': Sin publicar
|
454
|
+
remove_all: Eliminar todos
|
458
455
|
scope_id_eq:
|
459
456
|
label: Ámbito
|
460
457
|
search_label: Buscar
|
@@ -463,7 +460,6 @@ es-MX:
|
|
463
460
|
report_count_eq: Número de denuncias
|
464
461
|
reported_id_string_or_reported_content_cont: Buscar %{collection} por contenido o id reportable.
|
465
462
|
title_cont: Buscar %{collection} por título.
|
466
|
-
user_name_or_user_email_cont: Busca %{collection} por nombre o por correo electrónico.
|
467
463
|
user_name_or_user_nickname_or_user_email_cont: Buscar %{collection} por correo electrónico, nombre o alias.
|
468
464
|
state_eq:
|
469
465
|
label: Estado
|
@@ -579,7 +575,7 @@ es-MX:
|
|
579
575
|
components: Componentes
|
580
576
|
configuration: Configuración
|
581
577
|
content: Contenido reportado
|
582
|
-
|
578
|
+
external_domain_allowlist: Dominios externos permitidos
|
583
579
|
help_sections: Secciones de ayuda
|
584
580
|
homepage: Página principal
|
585
581
|
impersonations: Impersonaciones
|
@@ -647,7 +643,7 @@ es-MX:
|
|
647
643
|
plural: Plural
|
648
644
|
share_token:
|
649
645
|
fields:
|
650
|
-
created_at:
|
646
|
+
created_at: Creado el
|
651
647
|
expires_at: Caduca el
|
652
648
|
last_used_at: Último uso
|
653
649
|
times_used: Veces utilizado
|
@@ -670,11 +666,11 @@ es-MX:
|
|
670
666
|
name: Usuario
|
671
667
|
user_group:
|
672
668
|
fields:
|
673
|
-
actions:
|
669
|
+
actions: Acciones
|
674
670
|
created_at: Fecha de creación
|
675
671
|
document_number: Número del documento
|
676
672
|
name: Nombre
|
677
|
-
nickname:
|
673
|
+
nickname: Alias
|
678
674
|
phone: Teléfono
|
679
675
|
state: Estado
|
680
676
|
users_count: Número de usuarios
|
@@ -722,11 +718,6 @@ es-MX:
|
|
722
718
|
report_language: Idioma del informe
|
723
719
|
report_reason: Motivo
|
724
720
|
title: Detalles del informe
|
725
|
-
new_import:
|
726
|
-
accepted_mime_types:
|
727
|
-
csv: CSV
|
728
|
-
json: JSON
|
729
|
-
xlsx: XLSX
|
730
721
|
newsletter_templates:
|
731
722
|
index:
|
732
723
|
preview_template: Previsualizar
|
@@ -770,7 +761,7 @@ es-MX:
|
|
770
761
|
confirm_deliver: '¿Estás seguro de que quieres enviar este boletín? Esta acción no se puede deshacer.'
|
771
762
|
deliver: Enviar boletín
|
772
763
|
followers_help: Envía el boletín de noticias a todas las participantes confirmadas que sigan cualquier espacio participativo seleccionado en la lista.
|
773
|
-
none:
|
764
|
+
none: Ninguno
|
774
765
|
participants_help: Envía el boletín de noticias a todas las participantes confirmadas que hayan participado en cualquier espacio participativo seleccionado de la lista.
|
775
766
|
recipients_count: Este boletín se enviará a <strong id='recipients_count'>%{count}</strong> usuarias.
|
776
767
|
scopes_help: Envía el boletín de noticias a las participantes que tengan cualquiera de los ámbitos activados en su configuración de "Mis intereses".
|
@@ -869,7 +860,7 @@ es-MX:
|
|
869
860
|
layout_appearance_title: Editar apariencia de diseño global
|
870
861
|
preview: Previsualizar
|
871
862
|
omnipresent_banner_appearance_title: Editar banner omnipresente
|
872
|
-
|
863
|
+
organization_external_domain_allowlist:
|
873
864
|
edit:
|
874
865
|
update: Actualizar
|
875
866
|
external_domain:
|
@@ -878,8 +869,8 @@ es-MX:
|
|
878
869
|
remove: Eliminar
|
879
870
|
up: Subir
|
880
871
|
form:
|
881
|
-
add: Añadir a la lista
|
882
|
-
title: Lista
|
872
|
+
add: Añadir a la lista de direcciones permitidas
|
873
|
+
title: Lista de dominios externos permitidos
|
883
874
|
participatory_space_private_users:
|
884
875
|
create:
|
885
876
|
error: Hubo un error al agregar un usuario privado para este espacio participativo.
|
@@ -975,6 +966,11 @@ es-MX:
|
|
975
966
|
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.
|
976
967
|
title: Compartir tokens
|
977
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Siguiente
|
971
|
+
next_title: Siguiente elemento
|
972
|
+
previous: Anterior
|
973
|
+
previous_title: Anterior elemento
|
978
974
|
gallery:
|
979
975
|
add_images: Añadir imágenes
|
980
976
|
edit_images: Editar imagenes
|
@@ -1027,7 +1023,7 @@ es-MX:
|
|
1027
1023
|
areas: Áreas
|
1028
1024
|
authorization_workflows: Métodos de verificación
|
1029
1025
|
dashboard: Panel de control
|
1030
|
-
edit_external_domains:
|
1026
|
+
edit_external_domains: Lista de dominios externos permitidos
|
1031
1027
|
edit_landing_page: Contenidos de la página
|
1032
1028
|
edit_organization_appearance: Editar apariencia de página de inicio
|
1033
1029
|
impersonatable_users: Usuarios manejables
|