decidim-admin 0.28.2 → 0.29.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- 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/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 +3 -3
- 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 -42
- 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 +78 -3
- 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/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- 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/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/help_sections_controller.rb +1 -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 +5 -5
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +1 -1
- 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/organization_appearance_form.rb +0 -3
- 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 +2 -2
- data/app/forms/decidim/admin/static_page_form.rb +0 -1
- 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/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/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/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -2
- 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/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- 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 +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +2 -2
- 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 +2 -2
- 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 +2 -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 +3 -3
- 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_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/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 +0 -7
- data/config/locales/bg.yml +15 -10
- data/config/locales/ca.yml +16 -11
- data/config/locales/cs.yml +15 -10
- data/config/locales/de.yml +15 -10
- data/config/locales/el.yml +0 -12
- data/config/locales/en.yml +16 -11
- data/config/locales/es-MX.yml +16 -11
- data/config/locales/es-PY.yml +16 -11
- data/config/locales/es.yml +16 -11
- data/config/locales/eu.yml +16 -11
- data/config/locales/fi-plain.yml +14 -9
- data/config/locales/fi.yml +14 -9
- data/config/locales/fr-CA.yml +14 -9
- data/config/locales/fr.yml +13 -8
- data/config/locales/ga-IE.yml +0 -3
- data/config/locales/gl.yml +0 -5
- data/config/locales/hu.yml +9 -10
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +0 -3
- data/config/locales/it.yml +0 -8
- data/config/locales/ja.yml +16 -11
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -6
- data/config/locales/lb.yml +0 -8
- data/config/locales/lt.yml +0 -13
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -8
- data/config/locales/no.yml +0 -8
- data/config/locales/pl.yml +14 -9
- data/config/locales/pt-BR.yml +8 -10
- data/config/locales/pt.yml +0 -8
- data/config/locales/ro-RO.yml +0 -12
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -3
- data/config/locales/sq-AL.yml +0 -3
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +0 -8
- data/config/locales/th-TH.yml +0 -3
- data/config/locales/tr-TR.yml +0 -5
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -3
- data/config/locales/zh-TW.yml +0 -12
- data/config/routes.rb +1 -1
- data/decidim-admin.gemspec +1 -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/manage_attachment_collections_examples.rb +12 -12
- data/lib/decidim/admin/test/manage_attachments_examples.rb +51 -15
- 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 +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/version.rb +1 -1
- metadata +24 -22
- 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/views/layouts/decidim/admin/login.html.erb +0 -19
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/fr-CA.yml
CHANGED
@@ -379,7 +379,7 @@ fr-CA:
|
|
379
379
|
update: Mettre à jour
|
380
380
|
dashboard:
|
381
381
|
pending_moderations:
|
382
|
-
|
382
|
+
announcement:
|
383
383
|
one: Il y a %{count} modération en attente
|
384
384
|
other: Il y a %{count} modérations en attente
|
385
385
|
goto_moderation: Aller au panneau de modération global
|
@@ -387,12 +387,12 @@ fr-CA:
|
|
387
387
|
show:
|
388
388
|
dropdown: Liste déroulante
|
389
389
|
view_more_logs: Afficher plus
|
390
|
-
|
390
|
+
domain_allowlist:
|
391
391
|
form:
|
392
392
|
domain_too_short: Le nom de domaine est trop court
|
393
393
|
update:
|
394
|
-
error:
|
395
|
-
success:
|
394
|
+
error: Impossible de mettre à jour la liste des domaines externes autorisés
|
395
|
+
success: La liste des domaines externes autorisés a été mise à jour avec succès.
|
396
396
|
exports:
|
397
397
|
export_as: "%{name} en format %{export_format}"
|
398
398
|
formats:
|
@@ -451,6 +451,7 @@ fr-CA:
|
|
451
451
|
values:
|
452
452
|
'false': Publié
|
453
453
|
'true': Dépublié
|
454
|
+
remove_all: Tout supprimer
|
454
455
|
scope_id_eq:
|
455
456
|
label: Périmètre d'application
|
456
457
|
search_label: Rechercher
|
@@ -459,7 +460,6 @@ fr-CA:
|
|
459
460
|
report_count_eq: Nombre de signalement
|
460
461
|
reported_id_string_or_reported_content_cont: Rechercher %{collection} par Id ou par contenu.
|
461
462
|
title_cont: Search %{collection} par titre.
|
462
|
-
user_name_or_user_email_cont: Rechercher %{collection} par nom ou par email.
|
463
463
|
user_name_or_user_nickname_or_user_email_cont: Rechercher les %{collection} par e-mail, nom ou pseudo.
|
464
464
|
state_eq:
|
465
465
|
label: État
|
@@ -575,7 +575,7 @@ fr-CA:
|
|
575
575
|
components: Fonctionnalités
|
576
576
|
configuration: Configuration
|
577
577
|
content: Contenu signalé
|
578
|
-
|
578
|
+
external_domain_allowlist: Domaines externes autorisés
|
579
579
|
help_sections: Sections d'aide
|
580
580
|
homepage: Page d'accueil
|
581
581
|
impersonations: Utilisateurs représentés
|
@@ -860,7 +860,7 @@ fr-CA:
|
|
860
860
|
layout_appearance_title: Modifier l’aspect de la mise en page
|
861
861
|
preview: Aperçu
|
862
862
|
omnipresent_banner_appearance_title: Modifier la bannière permanente
|
863
|
-
|
863
|
+
organization_external_domain_allowlist:
|
864
864
|
edit:
|
865
865
|
update: Mettre à jour
|
866
866
|
external_domain:
|
@@ -869,8 +869,8 @@ fr-CA:
|
|
869
869
|
remove: Retirer
|
870
870
|
up: Monter
|
871
871
|
form:
|
872
|
-
add: Ajouter à la liste
|
873
|
-
title: Liste
|
872
|
+
add: Ajouter à la liste autorisée
|
873
|
+
title: Liste des domaines externes autorisés
|
874
874
|
participatory_space_private_users:
|
875
875
|
create:
|
876
876
|
error: Une erreur s'est produite lors de l'ajout d'un utilisateur pour cet espace participatif.
|
@@ -966,6 +966,11 @@ fr-CA:
|
|
966
966
|
help: Ces jetons sont utilisés pour partager cette ressource non publiée à n'importe quel utilisateur. Ils seront cachés dès que la ressource sera publiée. Cliquez sur l'icône du jeton pour visiter l'URL partageable.
|
967
967
|
title: Partager les jetons
|
968
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Suivant
|
971
|
+
next_title: Élément suivant
|
972
|
+
previous: Précédent
|
973
|
+
previous_title: Élément précédent
|
969
974
|
gallery:
|
970
975
|
add_images: Ajouter des images
|
971
976
|
edit_images: Modifier les images
|
data/config/locales/fr.yml
CHANGED
@@ -379,7 +379,7 @@ fr:
|
|
379
379
|
update: Mettre à jour
|
380
380
|
dashboard:
|
381
381
|
pending_moderations:
|
382
|
-
|
382
|
+
announcement:
|
383
383
|
one: Il y a %{count} modération en attente
|
384
384
|
other: Il y a %{count} modérations en attente
|
385
385
|
goto_moderation: Aller au panneau de modération global
|
@@ -387,12 +387,12 @@ fr:
|
|
387
387
|
show:
|
388
388
|
dropdown: Liste déroulante
|
389
389
|
view_more_logs: Afficher plus
|
390
|
-
|
390
|
+
domain_allowlist:
|
391
391
|
form:
|
392
392
|
domain_too_short: Le nom de domaine est trop court
|
393
393
|
update:
|
394
|
-
error:
|
395
|
-
success:
|
394
|
+
error: Impossible de mettre à jour la liste des domaines externes autorisés
|
395
|
+
success: La liste des domaines externes autorisés a été mise à jour avec succès.
|
396
396
|
exports:
|
397
397
|
export_as: "%{name} en format %{export_format}"
|
398
398
|
formats:
|
@@ -451,6 +451,7 @@ fr:
|
|
451
451
|
values:
|
452
452
|
'false': Publié
|
453
453
|
'true': Dépublié
|
454
|
+
remove_all: Tout supprimer
|
454
455
|
scope_id_eq:
|
455
456
|
label: Secteur
|
456
457
|
search_label: Rechercher
|
@@ -459,7 +460,6 @@ fr:
|
|
459
460
|
report_count_eq: Nombre de signalement
|
460
461
|
reported_id_string_or_reported_content_cont: Rechercher %{collection} par Id ou par contenu.
|
461
462
|
title_cont: Rechercher %{collection} par titre.
|
462
|
-
user_name_or_user_email_cont: Rechercher %{collection} par nom ou par email.
|
463
463
|
user_name_or_user_nickname_or_user_email_cont: Rechercher les %{collection} par e-mail, nom ou pseudo.
|
464
464
|
state_eq:
|
465
465
|
label: État
|
@@ -575,7 +575,7 @@ fr:
|
|
575
575
|
components: Fonctionnalités
|
576
576
|
configuration: Configuration
|
577
577
|
content: Contenu signalé
|
578
|
-
|
578
|
+
external_domain_allowlist: Domaines externes autorisés
|
579
579
|
help_sections: Sections d'aide
|
580
580
|
homepage: Page d'accueil
|
581
581
|
impersonations: Utilisateurs représentés
|
@@ -860,7 +860,7 @@ fr:
|
|
860
860
|
layout_appearance_title: Modifier l’aspect de la mise en page
|
861
861
|
preview: Aperçu
|
862
862
|
omnipresent_banner_appearance_title: Modifier la bannière permanente
|
863
|
-
|
863
|
+
organization_external_domain_allowlist:
|
864
864
|
edit:
|
865
865
|
update: Mettre à jour
|
866
866
|
external_domain:
|
@@ -869,7 +869,7 @@ fr:
|
|
869
869
|
remove: Retirer
|
870
870
|
up: Monter
|
871
871
|
form:
|
872
|
-
add: Ajouter à la liste
|
872
|
+
add: Ajouter à la liste autorisée
|
873
873
|
title: Liste des domaines externes autorisés
|
874
874
|
participatory_space_private_users:
|
875
875
|
create:
|
@@ -966,6 +966,11 @@ fr:
|
|
966
966
|
help: Ces jetons sont utilisés pour partager cette ressource non publiée à n'importe quel utilisateur. Ils seront cachés dès que la ressource sera publiée. Cliquez sur l'icône du jeton pour visiter l'URL partageable.
|
967
967
|
title: Partager les jetons
|
968
968
|
shared:
|
969
|
+
adjacent_navigation:
|
970
|
+
next: Suivant
|
971
|
+
next_title: Élément suivant
|
972
|
+
previous: Précédent
|
973
|
+
previous_title: Élément précédent
|
969
974
|
gallery:
|
970
975
|
add_images: Ajouter des images
|
971
976
|
edit_images: Modifier les images
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
@@ -291,7 +291,6 @@ gl:
|
|
291
291
|
solved: Resolto
|
292
292
|
transfer:
|
293
293
|
email: Correo electrónico
|
294
|
-
error: Produciuse un problema ao transferir el participante actual a un participante xestionado.
|
295
294
|
name: Nome
|
296
295
|
reason: Motivo
|
297
296
|
success: A transferencia actual completouse con éxito.
|
@@ -366,7 +365,6 @@ gl:
|
|
366
365
|
report_count_eq: Número de denuncias
|
367
366
|
reported_id_string_or_reported_content_cont: Procurar %{collection} por contido ou Id reportábel.
|
368
367
|
title_cont: Procurar %{collection} por título.
|
369
|
-
user_name_or_user_email_cont: Procurar %{collection} por nome ou correo electrónico.
|
370
368
|
user_name_or_user_nickname_or_user_email_cont: Pescudar %{collection} por correo, nome ou alcume.
|
371
369
|
state_eq:
|
372
370
|
label: Estado
|
@@ -713,9 +711,6 @@ gl:
|
|
713
711
|
layout_appearance_title: Editar aspecto de deseño
|
714
712
|
preview: Vista Previa
|
715
713
|
omnipresent_banner_appearance_title: Editar o banner omnipresente
|
716
|
-
organization_external_domain_whitelist:
|
717
|
-
edit:
|
718
|
-
update: Actualización
|
719
714
|
participatory_space_private_users:
|
720
715
|
create:
|
721
716
|
error: Produciuse un erro engadindo un usuario privado a este espazo participativo.
|
data/config/locales/hu.yml
CHANGED
@@ -355,7 +355,7 @@ hu:
|
|
355
355
|
title: Ellenőrzési konfliktusok
|
356
356
|
transfer:
|
357
357
|
email: Email
|
358
|
-
error: Hiba történt a jelenlegi résztvevő kezelt résztvevővé
|
358
|
+
error: Hiba történt a jelenlegi résztvevő kezelt résztvevővé átminősítése során.
|
359
359
|
name: Név
|
360
360
|
reason: Ok
|
361
361
|
success: Az átvitel sikeresen befejezve.
|
@@ -383,12 +383,12 @@ hu:
|
|
383
383
|
show:
|
384
384
|
dropdown: Legördülő lista
|
385
385
|
view_more_logs: További naplók megtekintése
|
386
|
-
|
386
|
+
domain_allowlist:
|
387
387
|
form:
|
388
388
|
domain_too_short: Túl rövid domain név
|
389
389
|
update:
|
390
|
-
error: Nem sikerült frissíteni
|
391
|
-
success:
|
390
|
+
error: Nem sikerült frissíteni az engedélyezett külső tartományok listáját
|
391
|
+
success: Az engedélyezett külső tartományok listája sikeresen frissült.
|
392
392
|
exports:
|
393
393
|
export_as: "%{name} mint %{export_format}"
|
394
394
|
formats:
|
@@ -455,7 +455,6 @@ hu:
|
|
455
455
|
report_count_eq: Jelentések száma
|
456
456
|
reported_id_string_or_reported_content_cont: Keresés %{gyűjtemény} a jelentendő azonosító vagy tartalom alapján.
|
457
457
|
title_cont: Keresés %{collection} cím alapján.
|
458
|
-
user_name_or_user_email_cont: Keresés itt %{collection} név vagy emailcím alapján.
|
459
458
|
user_name_or_user_nickname_or_user_email_cont: Keresés %{collection} email, név vagy becenév alapján.
|
460
459
|
state_eq:
|
461
460
|
label: Állapot
|
@@ -570,7 +569,7 @@ hu:
|
|
570
569
|
areas: Területek
|
571
570
|
configuration: Beállítások
|
572
571
|
content: Jelentett tartalom
|
573
|
-
|
572
|
+
external_domain_allowlist: Engedélyezett külső domainek
|
574
573
|
help_sections: Súgó szakaszok
|
575
574
|
homepage: Homepage
|
576
575
|
impersonations: Felhatalmazások
|
@@ -852,7 +851,7 @@ hu:
|
|
852
851
|
layout_appearance_title: Elrendezés szerkesztése
|
853
852
|
preview: Előnézet
|
854
853
|
omnipresent_banner_appearance_title: Mindenhol megjelenő banner szerkesztése
|
855
|
-
|
854
|
+
organization_external_domain_allowlist:
|
856
855
|
edit:
|
857
856
|
update: Frissítés
|
858
857
|
external_domain:
|
@@ -861,8 +860,8 @@ hu:
|
|
861
860
|
remove: Eltávolítás
|
862
861
|
up: Fel
|
863
862
|
form:
|
864
|
-
add: Hozzáadás
|
865
|
-
title:
|
863
|
+
add: Hozzáadás az engedélyezett listához
|
864
|
+
title: Engedélyezett külső domainek listája
|
866
865
|
participatory_space_private_users:
|
867
866
|
create:
|
868
867
|
error: Hiba történt egy privát felhasználó hozzáadása során a részvételi helyhez.
|
@@ -1007,7 +1006,7 @@ hu:
|
|
1007
1006
|
areas: Területek
|
1008
1007
|
authorization_workflows: Ellenőrzési módszerek
|
1009
1008
|
dashboard: Vezérlőpult
|
1010
|
-
edit_external_domains:
|
1009
|
+
edit_external_domains: Engedélyezett külső domainek listája
|
1011
1010
|
edit_landing_page: Az oldal tartalma
|
1012
1011
|
edit_organization_appearance: Honlap megjelenésének szerkesztése
|
1013
1012
|
impersonatable_users: Kezelhető résztvevők
|
data/config/locales/id-ID.yml
CHANGED
@@ -452,9 +452,6 @@ id:
|
|
452
452
|
images:
|
453
453
|
layout_appearance_title: Edit tampilan tata letak
|
454
454
|
omnipresent_banner_appearance_title: Edit spanduk yang ada di mana-mana
|
455
|
-
organization_external_domain_whitelist:
|
456
|
-
edit:
|
457
|
-
update: Memperbarui
|
458
455
|
participatory_space_private_users:
|
459
456
|
create:
|
460
457
|
error: Terjadi kesalahan saat menambahkan pengguna pribadi untuk ruang partisipatif ini.
|
data/config/locales/is-IS.yml
CHANGED
@@ -408,9 +408,6 @@ is:
|
|
408
408
|
homepage_highlighted_content_banner_title: Hápunktur efni borði
|
409
409
|
images:
|
410
410
|
layout_appearance_title: Breyta útliti útlits
|
411
|
-
organization_external_domain_whitelist:
|
412
|
-
edit:
|
413
|
-
update: Uppfæra
|
414
411
|
participatory_space_private_users:
|
415
412
|
new:
|
416
413
|
create: Búa til
|
data/config/locales/it.yml
CHANGED
@@ -292,7 +292,6 @@ it:
|
|
292
292
|
title: Verifica dei conflitti
|
293
293
|
transfer:
|
294
294
|
email: Email
|
295
|
-
error: Si è verificato un problema nel trasferimento dell'utente corrente a partecipante gestito.
|
296
295
|
name: Nome
|
297
296
|
reason: Motivazione
|
298
297
|
success: Il trasferimento è stato completato con successo.
|
@@ -359,7 +358,6 @@ it:
|
|
359
358
|
name_or_nickname_or_email_cont: Cerca %{collection} per email, nome o pseudonimo.
|
360
359
|
reported_id_string_or_reported_content_cont: Cerca %{collection} per id o contenuto segnalabile.
|
361
360
|
title_cont: Cerca %{collection} per titolo.
|
362
|
-
user_name_or_user_email_cont: Cerca %{collection} per nome o email.
|
363
361
|
state_eq:
|
364
362
|
label: Stato
|
365
363
|
values:
|
@@ -684,12 +682,6 @@ it:
|
|
684
682
|
layout_appearance_title: Modifica aspetto del layout
|
685
683
|
preview: Anteprima
|
686
684
|
omnipresent_banner_appearance_title: Modifica banner onnipresente
|
687
|
-
organization_external_domain_whitelist:
|
688
|
-
edit:
|
689
|
-
update: Aggiorna
|
690
|
-
form:
|
691
|
-
add: Aggiungi alla whitelist
|
692
|
-
title: Whitelist di domini esterni
|
693
685
|
participatory_space_private_users:
|
694
686
|
create:
|
695
687
|
error: Si è verificato un errore durante l'aggiunta di un utente privato per questo spazio partecipativo.
|
data/config/locales/ja.yml
CHANGED
@@ -356,7 +356,7 @@ ja:
|
|
356
356
|
title: 確認の競合
|
357
357
|
transfer:
|
358
358
|
email: Eメールアドレス
|
359
|
-
error:
|
359
|
+
error: 現在の参加者を管理対象の参加者に移行する際に問題が発生しました。
|
360
360
|
name: 名前
|
361
361
|
reason: 理由
|
362
362
|
success: 現在の移転が正常に完了しました。
|
@@ -379,19 +379,19 @@ ja:
|
|
379
379
|
update: 更新
|
380
380
|
dashboard:
|
381
381
|
pending_moderations:
|
382
|
-
|
382
|
+
announcement:
|
383
383
|
other: 保留中のモデレーションが%{count} 件あります
|
384
384
|
goto_moderation: グローバルモデレーションへ移動
|
385
385
|
title: 保留中のモデレーション
|
386
386
|
show:
|
387
387
|
dropdown: ドロップダウン
|
388
388
|
view_more_logs: もっとログを見る
|
389
|
-
|
389
|
+
domain_allowlist:
|
390
390
|
form:
|
391
391
|
domain_too_short: ドメインが短すぎます
|
392
392
|
update:
|
393
|
-
error:
|
394
|
-
success:
|
393
|
+
error: 許可された外部ドメインのリストを更新できませんでした
|
394
|
+
success: 許可された外部ドメインのリストを更新しました。
|
395
395
|
exports:
|
396
396
|
export_as: "%{name} を %{export_format} 形式で取得"
|
397
397
|
formats:
|
@@ -450,6 +450,7 @@ ja:
|
|
450
450
|
values:
|
451
451
|
'false': 公開済み
|
452
452
|
'true': 未公開
|
453
|
+
remove_all: すべて削除
|
453
454
|
scope_id_eq:
|
454
455
|
label: スコープ
|
455
456
|
search_label: 検索
|
@@ -458,7 +459,6 @@ ja:
|
|
458
459
|
report_count_eq: 報告数
|
459
460
|
reported_id_string_or_reported_content_cont: 報告可能なIDまたはコンテンツで %{collection} を検索します。
|
460
461
|
title_cont: '%{collection} をタイトルで検索します。'
|
461
|
-
user_name_or_user_email_cont: '%{collection} を名前またはメールアドレスで検索します。'
|
462
462
|
user_name_or_user_nickname_or_user_email_cont: '%{collection} をメール、表示名、アカウントIDで検索します。'
|
463
463
|
state_eq:
|
464
464
|
label: 都道府県:
|
@@ -570,7 +570,7 @@ ja:
|
|
570
570
|
components: コンポーネント
|
571
571
|
configuration: 設定
|
572
572
|
content: 報告されたコンテンツ
|
573
|
-
|
573
|
+
external_domain_allowlist: 許可された外部ドメイン
|
574
574
|
help_sections: ヘルプセクション
|
575
575
|
homepage: ホームページ
|
576
576
|
impersonations: なりすまし
|
@@ -855,7 +855,7 @@ ja:
|
|
855
855
|
layout_appearance_title: レイアウトを編集
|
856
856
|
preview: プレビュー
|
857
857
|
omnipresent_banner_appearance_title: Omnipresentバナーを編集
|
858
|
-
|
858
|
+
organization_external_domain_allowlist:
|
859
859
|
edit:
|
860
860
|
update: 更新
|
861
861
|
external_domain:
|
@@ -864,8 +864,8 @@ ja:
|
|
864
864
|
remove: 削除
|
865
865
|
up: 上へ
|
866
866
|
form:
|
867
|
-
add:
|
868
|
-
title:
|
867
|
+
add: 許可されたリストに追加
|
868
|
+
title: 許可された外部ドメインのリスト
|
869
869
|
participatory_space_private_users:
|
870
870
|
create:
|
871
871
|
error: この参加型スペースにプライベート参加者を追加する際に問題が発生しました。
|
@@ -960,6 +960,11 @@ ja:
|
|
960
960
|
help: これらのトークンは、公開されていないリソースをすべてのユーザーに公開するために使用されます。 リソースが公開されると、それらは非表示になります。共有可能なURLにアクセスするにはトークンの共有アイコンをクリックしてください。
|
961
961
|
title: トークンを共有
|
962
962
|
shared:
|
963
|
+
adjacent_navigation:
|
964
|
+
next: 次へ
|
965
|
+
next_title: 次のアイテム
|
966
|
+
previous: 前へ
|
967
|
+
previous_title: 前のアイテム
|
963
968
|
gallery:
|
964
969
|
add_images: 画像を追加
|
965
970
|
edit_images: 画像を編集
|
@@ -1012,7 +1017,7 @@ ja:
|
|
1012
1017
|
areas: エリア
|
1013
1018
|
authorization_workflows: 確認方法
|
1014
1019
|
dashboard: ダッシュボード
|
1015
|
-
edit_external_domains:
|
1020
|
+
edit_external_domains: 許可された外部ドメインのリスト
|
1016
1021
|
edit_landing_page: ページ内容
|
1017
1022
|
edit_organization_appearance: ホームページの外観を編集
|
1018
1023
|
impersonatable_users: 管理可能な参加者
|
data/config/locales/kaa.yml
CHANGED
data/config/locales/ko.yml
CHANGED
@@ -303,7 +303,6 @@ ko:
|
|
303
303
|
title: 인증 충돌 발생
|
304
304
|
transfer:
|
305
305
|
email: 이메일
|
306
|
-
error: 현재 참여자를 관리된 참여자로 옮기는 중 문제가 발생했습니다.
|
307
306
|
name: 이름
|
308
307
|
reason: 이유
|
309
308
|
success: 현재 전송이 성공적으로 완료되었습니다.
|
@@ -609,11 +608,6 @@ ko:
|
|
609
608
|
images:
|
610
609
|
layout_appearance_title: 레이아웃 모양 편집
|
611
610
|
preview: 미리보기
|
612
|
-
organization_external_domain_whitelist:
|
613
|
-
edit:
|
614
|
-
update: 업데이트
|
615
|
-
form:
|
616
|
-
add: 화이트 리스트에 추가
|
617
611
|
participatory_space_private_users:
|
618
612
|
new:
|
619
613
|
create: 생성
|
data/config/locales/lb.yml
CHANGED
@@ -292,7 +292,6 @@ lb:
|
|
292
292
|
title: "Überprüfungskonflikte\n\n"
|
293
293
|
transfer:
|
294
294
|
email: E-Mail
|
295
|
-
error: Es gab ein Problem bei der Übertragung des aktuellen Teilnehmers zu den verwalteten Teilnehmern.
|
296
295
|
name: Name
|
297
296
|
reason: Grund
|
298
297
|
success: Übertragung erfolgreich.
|
@@ -359,7 +358,6 @@ lb:
|
|
359
358
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
360
359
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
361
360
|
title_cont: In %{collection} nach Titel suchen.
|
362
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
363
361
|
state_eq:
|
364
362
|
label: Bundesland
|
365
363
|
values:
|
@@ -680,12 +678,6 @@ lb:
|
|
680
678
|
layout_appearance_title: Layout-Layout bearbeiten
|
681
679
|
preview: Vorschau
|
682
680
|
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
683
|
-
organization_external_domain_whitelist:
|
684
|
-
edit:
|
685
|
-
update: Aktualisieren
|
686
|
-
form:
|
687
|
-
add: Zur Whitelist hinzufügen
|
688
|
-
title: Whitelist für externe Domains
|
689
681
|
participatory_space_private_users:
|
690
682
|
create:
|
691
683
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
data/config/locales/lt.yml
CHANGED
@@ -350,7 +350,6 @@ lt:
|
|
350
350
|
title: Patikros konfliktai
|
351
351
|
transfer:
|
352
352
|
email: El. paštas
|
353
|
-
error: Iškilo problema perkeliant dabartinį dalyvį į tvarkomą dalyvį.
|
354
353
|
name: Vardas
|
355
354
|
reason: Priežastis
|
356
355
|
success: Perkėlimas sėkmingai baigtas.
|
@@ -363,10 +362,6 @@ lt:
|
|
363
362
|
title: Laukiantys Moderavimai
|
364
363
|
show:
|
365
364
|
view_more_logs: Peržiūrėti daugiau ataskaitų
|
366
|
-
domain_whitelist:
|
367
|
-
update:
|
368
|
-
error: Nepavyko atnaujinti domenų baltąjo sąrašo.
|
369
|
-
success: Domenų baltasis sąrašas atnaujintas sėkmingai.
|
370
365
|
exports:
|
371
366
|
export_as: "%{name} kaip %{export_format}"
|
372
367
|
formats:
|
@@ -433,7 +428,6 @@ lt:
|
|
433
428
|
report_count_eq: Raportuoti skaičių
|
434
429
|
reported_id_string_or_reported_content_cont: Ieškoti %{collection} pagal ID arba turinį.
|
435
430
|
title_cont: Ieškoti %{collection} pagal pavadinimą.
|
436
|
-
user_name_or_user_email_cont: Ieškoti %{collection} pagal vardą ar el. paštą.
|
437
431
|
user_name_or_user_nickname_or_user_email_cont: Ieškoti %{collection} pagal el. pašto adresą, vardą arba naudotojo vardą.
|
438
432
|
state_eq:
|
439
433
|
label: Būsena
|
@@ -833,12 +827,6 @@ lt:
|
|
833
827
|
layout_appearance_title: Redaguoti išdėstymą
|
834
828
|
preview: Peržiūra
|
835
829
|
omnipresent_banner_appearance_title: Keisti visur naudojamą reklamjuostę
|
836
|
-
organization_external_domain_whitelist:
|
837
|
-
edit:
|
838
|
-
update: Atnaujinti
|
839
|
-
form:
|
840
|
-
add: Pridėti prie baltojo sąrašo
|
841
|
-
title: Išorinių domenų baltasis sąrašas
|
842
830
|
participatory_space_private_users:
|
843
831
|
create:
|
844
832
|
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
@@ -983,7 +971,6 @@ lt:
|
|
983
971
|
areas: Aplinkos
|
984
972
|
authorization_workflows: Verifikacijos metodai
|
985
973
|
dashboard: Švieslentė
|
986
|
-
edit_external_domains: Išorinių domenų baltasis sąrašas
|
987
974
|
edit_landing_page: Puslapio turinys
|
988
975
|
edit_organization_appearance: Keisti pagrindinio puslapio išvaizdą
|
989
976
|
impersonatable_users: Dalyviai, kurių duomenis galima tvarkyti
|
data/config/locales/lv.yml
CHANGED
@@ -512,9 +512,6 @@ lv:
|
|
512
512
|
layout_appearance_title: Rediģēt izkārtojuma izskatu
|
513
513
|
preview: Priekšskatīt
|
514
514
|
omnipresent_banner_appearance_title: Rediģēt visuresošo reklāmkarogu
|
515
|
-
organization_external_domain_whitelist:
|
516
|
-
edit:
|
517
|
-
update: Atjaunināt
|
518
515
|
participatory_space_private_users:
|
519
516
|
create:
|
520
517
|
error: Pievienojot privāto dalībnieku šai līdzdalības telpai, radās problēma.
|
data/config/locales/nl.yml
CHANGED
@@ -296,7 +296,6 @@ nl:
|
|
296
296
|
title: Controle conflicten
|
297
297
|
transfer:
|
298
298
|
email: E-mail
|
299
|
-
error: Er is een probleem opgetreden bij het overbrengen van de huidige deelnemer naar een beheerde deelnemer.
|
300
299
|
name: Naam
|
301
300
|
reason: Reden
|
302
301
|
success: De overdracht is met succes voltooid.
|
@@ -371,7 +370,6 @@ nl:
|
|
371
370
|
report_count_eq: Aantal rapporteringen
|
372
371
|
reported_id_string_or_reported_content_cont: Zoek %{collection} op rapporteerbaar id of op inhoud.
|
373
372
|
title_cont: Zoek %{collection} op titel.
|
374
|
-
user_name_or_user_email_cont: '%{collection} doorzoeken op Id of titel.'
|
375
373
|
user_name_or_user_nickname_or_user_email_cont: Doorzoek %{collection} op e-mail, naam of bijnaam.
|
376
374
|
state_eq:
|
377
375
|
label: Provincie
|
@@ -729,12 +727,6 @@ nl:
|
|
729
727
|
layout_appearance_title: Weergave van de lay-out bewerken
|
730
728
|
preview: Voorvertoning
|
731
729
|
omnipresent_banner_appearance_title: Bewerk de permanente banner
|
732
|
-
organization_external_domain_whitelist:
|
733
|
-
edit:
|
734
|
-
update: Bijwerken
|
735
|
-
form:
|
736
|
-
add: Toevoegen aan whitelist
|
737
|
-
title: Externe domein whitelist
|
738
730
|
participatory_space_private_users:
|
739
731
|
create:
|
740
732
|
error: Er is een probleem opgetreden bij het toevoegen van een privédeelnemer aan deze deelruimte.
|
data/config/locales/no.yml
CHANGED
@@ -296,7 +296,6 @@
|
|
296
296
|
title: Verifiseringskonflikter
|
297
297
|
transfer:
|
298
298
|
email: E-post
|
299
|
-
error: Det oppstod et problem med overføring av gjeldende deltaker til håndtert deltaker.
|
300
299
|
name: Navn
|
301
300
|
reason: Årsak
|
302
301
|
success: Overføringen er gjennomført.
|
@@ -383,7 +382,6 @@
|
|
383
382
|
report_count_eq: Antall rapporter
|
384
383
|
reported_id_string_or_reported_content_cont: Søk %{collection} av rapporterbar id eller innhold.
|
385
384
|
title_cont: Søk %{collection} etter tittel.
|
386
|
-
user_name_or_user_email_cont: Søk %{collection} etter navn eller e-post.
|
387
385
|
user_name_or_user_nickname_or_user_email_cont: Søk %{collection} via e-post, navn eller kallenavn.
|
388
386
|
state_eq:
|
389
387
|
label: Tilstand
|
@@ -733,12 +731,6 @@
|
|
733
731
|
layout_appearance_title: Rediger layout utseende
|
734
732
|
preview: Forhåndsvis
|
735
733
|
omnipresent_banner_appearance_title: Endre enerådende banner
|
736
|
-
organization_external_domain_whitelist:
|
737
|
-
edit:
|
738
|
-
update: Oppdater
|
739
|
-
form:
|
740
|
-
add: Legg til i hviteliste
|
741
|
-
title: Hviteliste for eksterne domener
|
742
734
|
participatory_space_private_users:
|
743
735
|
create:
|
744
736
|
error: Det oppstod et problem med å legge til en privat deltaker for dette deltakerområdet.
|