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/ko.yml
CHANGED
@@ -489,7 +489,7 @@ ko:
|
|
489
489
|
name: 이름
|
490
490
|
share_token:
|
491
491
|
fields:
|
492
|
-
created_at:
|
492
|
+
created_at: 생성일
|
493
493
|
expires_at: 만료일
|
494
494
|
last_used_at: 마지막으로 사용한 시간
|
495
495
|
times_used: 사용 시간
|
@@ -509,13 +509,6 @@ ko:
|
|
509
509
|
admin: 관리자
|
510
510
|
user_manager: 참가자 관리자
|
511
511
|
name: 참가자
|
512
|
-
user_group:
|
513
|
-
fields:
|
514
|
-
actions: 작업
|
515
|
-
created_at: 생성 위치
|
516
|
-
name: 이름
|
517
|
-
nickname: 닉네임
|
518
|
-
state: 상태
|
519
512
|
moderations:
|
520
513
|
report:
|
521
514
|
reasons:
|
@@ -615,16 +608,13 @@ ko:
|
|
615
608
|
images:
|
616
609
|
layout_appearance_title: 레이아웃 모양 편집
|
617
610
|
preview: 미리보기
|
618
|
-
organization_external_domain_whitelist:
|
619
|
-
edit:
|
620
|
-
update: 업데이트
|
621
|
-
form:
|
622
|
-
add: 화이트 리스트에 추가
|
623
611
|
participatory_space_private_users:
|
624
612
|
new:
|
625
613
|
create: 생성
|
626
614
|
participatory_space_private_users_csv_imports:
|
627
615
|
new:
|
616
|
+
csv_upload:
|
617
|
+
title: CSV 파일 업로드
|
628
618
|
destroy:
|
629
619
|
button: 모든 비공개 참가자 삭제
|
630
620
|
confirm: 모든 비공개 참가자를 삭제하시겠습니까? 이 작업은 취소할 수 없습니다. 복구할 수 없습니다.
|
@@ -739,9 +729,6 @@ ko:
|
|
739
729
|
state:
|
740
730
|
rejected: 거부됨
|
741
731
|
verified: 확인됨
|
742
|
-
user_groups_csv_verifications:
|
743
|
-
new:
|
744
|
-
example_file: '예제 파일:'
|
745
732
|
users:
|
746
733
|
form:
|
747
734
|
email: 이메일
|
data/config/locales/lb.yml
CHANGED
@@ -352,13 +352,12 @@ lb:
|
|
352
352
|
'false': Veröffentlicht
|
353
353
|
'true': Unveröffentlicht
|
354
354
|
scope_id_eq:
|
355
|
-
label:
|
355
|
+
label: Themenbereich
|
356
356
|
search_label: Suche
|
357
357
|
search_placeholder:
|
358
358
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
359
359
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
360
360
|
title_cont: In %{collection} nach Titel suchen.
|
361
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
362
361
|
state_eq:
|
363
362
|
label: Bundesland
|
364
363
|
values:
|
@@ -495,7 +494,7 @@ lb:
|
|
495
494
|
plural: Plural
|
496
495
|
share_token:
|
497
496
|
fields:
|
498
|
-
created_at:
|
497
|
+
created_at: Erstellt am
|
499
498
|
expires_at: Läuft ab am
|
500
499
|
last_used_at: Zuletzt verwendet
|
501
500
|
times_used: Anzahl Anwendungen
|
@@ -521,7 +520,6 @@ lb:
|
|
521
520
|
created_at: Hergestellt in
|
522
521
|
document_number: Dokumentnummer
|
523
522
|
name: Name
|
524
|
-
nickname: Spitzname
|
525
523
|
phone: Telefon
|
526
524
|
state: Zustand
|
527
525
|
users_count: Benutzer zählen
|
@@ -608,7 +606,7 @@ lb:
|
|
608
606
|
confirm_deliver: Möchten Sie diesen Newsletter wirklich liefern? Diese Aktion kann nicht rückgängig gemacht werden.
|
609
607
|
deliver: Liefern Newsletter
|
610
608
|
followers_help: Sendet den Newsletter an alle bestätigten Benutzer, die den ausgewählten Teilnehmerräumen in der Liste folgen.
|
611
|
-
none:
|
609
|
+
none: Niemand
|
612
610
|
participants_help: Sendet den Newsletter an alle bestätigten Benutzer, die an den ausgewählten Teilnehmerräumen der Liste teilgenommen haben.
|
613
611
|
recipients_count: Dieser Newsletter wird an <strong id='recipients_count'>%{count}</strong> Teilnehmer gesendet.
|
614
612
|
scopes_help: Sendet den Newsletter an Teilnehmer, die einen der gewählten Themenbereiche in den "Meine Interessen" Einstellungen ihres Kontos aktiviert haben.
|
@@ -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.
|
@@ -701,8 +693,6 @@ lb:
|
|
701
693
|
title: Neuer privater Benutzer des Participatory Space.
|
702
694
|
participatory_space_private_users_csv_imports:
|
703
695
|
new:
|
704
|
-
csv_upload:
|
705
|
-
title: Laden Sie Ihre CSV-Datei hoch
|
706
696
|
upload: Hochladen
|
707
697
|
resource_permissions:
|
708
698
|
edit:
|
@@ -713,7 +703,7 @@ lb:
|
|
713
703
|
resources:
|
714
704
|
index:
|
715
705
|
headers:
|
716
|
-
scope:
|
706
|
+
scope: Bereich
|
717
707
|
scope_types:
|
718
708
|
create:
|
719
709
|
error: Beim Erstellen eines neuen Geltungstyps ist ein Fehler aufgetreten.
|
@@ -818,9 +808,9 @@ lb:
|
|
818
808
|
user_groups:
|
819
809
|
index:
|
820
810
|
state:
|
821
|
-
pending:
|
822
|
-
rejected:
|
823
|
-
verified:
|
811
|
+
pending: steht aus
|
812
|
+
rejected: Abgelehnt
|
813
|
+
verified: Überprüft
|
824
814
|
verify_via_csv: Überprüfen Sie über CSV
|
825
815
|
user_groups_csv_verifications:
|
826
816
|
new:
|
data/config/locales/lt.yml
CHANGED
@@ -362,10 +362,6 @@ lt:
|
|
362
362
|
title: Laukiantys Moderavimai
|
363
363
|
show:
|
364
364
|
view_more_logs: Peržiūrėti daugiau ataskaitų
|
365
|
-
domain_whitelist:
|
366
|
-
update:
|
367
|
-
error: Nepavyko atnaujinti domenų baltąjo sąrašo.
|
368
|
-
success: Domenų baltasis sąrašas atnaujintas sėkmingai.
|
369
365
|
exports:
|
370
366
|
export_as: "%{name} kaip %{export_format}"
|
371
367
|
formats:
|
@@ -432,7 +428,6 @@ lt:
|
|
432
428
|
report_count_eq: Raportuoti skaičių
|
433
429
|
reported_id_string_or_reported_content_cont: Ieškoti %{collection} pagal ID arba turinį.
|
434
430
|
title_cont: Ieškoti %{collection} pagal pavadinimą.
|
435
|
-
user_name_or_user_email_cont: Ieškoti %{collection} pagal vardą ar el. paštą.
|
436
431
|
user_name_or_user_nickname_or_user_email_cont: Ieškoti %{collection} pagal el. pašto adresą, vardą arba naudotojo vardą.
|
437
432
|
state_eq:
|
438
433
|
label: Būsena
|
@@ -832,12 +827,6 @@ lt:
|
|
832
827
|
layout_appearance_title: Redaguoti išdėstymą
|
833
828
|
preview: Peržiūra
|
834
829
|
omnipresent_banner_appearance_title: Keisti visur naudojamą reklamjuostę
|
835
|
-
organization_external_domain_whitelist:
|
836
|
-
edit:
|
837
|
-
update: Atnaujinti
|
838
|
-
form:
|
839
|
-
add: Pridėti prie baltojo sąrašo
|
840
|
-
title: Išorinių domenų baltasis sąrašas
|
841
830
|
participatory_space_private_users:
|
842
831
|
create:
|
843
832
|
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
@@ -856,8 +845,6 @@ lt:
|
|
856
845
|
invalid: Skaitant CSV failą kilo problema. Prašau įsitikinkite kad sekėte instrukcijas.
|
857
846
|
success: CSV rinkmena įkelta, dalyviams siunčiame kvietimą e. laišku. Tai gali užtrukti.
|
858
847
|
new:
|
859
|
-
csv_upload:
|
860
|
-
title: Įkelkite savo CSV rinkmeną
|
861
848
|
destroy:
|
862
849
|
button: Ištrinti visus privačius dalyvius
|
863
850
|
confirm: Ar tikrai norite ištrinti visus privačius dalyvius? Atlikus šį veiksmą nebebus įmanoma sugražinti šių dalyvių į platformą.
|
@@ -984,7 +971,6 @@ lt:
|
|
984
971
|
areas: Aplinkos
|
985
972
|
authorization_workflows: Verifikacijos metodai
|
986
973
|
dashboard: Švieslentė
|
987
|
-
edit_external_domains: Išorinių domenų baltasis sąrašas
|
988
974
|
edit_landing_page: Puslapio turinys
|
989
975
|
edit_organization_appearance: Keisti pagrindinio puslapio išvaizdą
|
990
976
|
impersonatable_users: Dalyviai, kurių duomenis galima tvarkyti
|
data/config/locales/lv.yml
CHANGED
@@ -259,6 +259,8 @@ lv:
|
|
259
259
|
values:
|
260
260
|
'false': Publicēts
|
261
261
|
'true': Nav publicēts
|
262
|
+
scope_id_eq:
|
263
|
+
label: Darbības tvērums
|
262
264
|
search_label: Meklēt
|
263
265
|
search_placeholder:
|
264
266
|
name_or_nickname_or_email_cont: Meklējiet %{collection} pēc e-pasta adreses, vārda vai segvārda.
|
@@ -377,9 +379,6 @@ lv:
|
|
377
379
|
fields:
|
378
380
|
name: Nosaukums
|
379
381
|
plural: Daudzskaitlī
|
380
|
-
share_token:
|
381
|
-
fields:
|
382
|
-
created_at: Izveidots plkst.
|
383
382
|
static_page:
|
384
383
|
fields:
|
385
384
|
created_at: Izveidots plkst.
|
@@ -400,7 +399,6 @@ lv:
|
|
400
399
|
created_at: Izveidots plkst.
|
401
400
|
document_number: Dokumenta numurs
|
402
401
|
name: Nosaukums
|
403
|
-
nickname: Segvārds
|
404
402
|
phone: Tālrunis
|
405
403
|
state: Stāvoklis
|
406
404
|
users_count: Dalībnieku skaits
|
@@ -514,9 +512,6 @@ lv:
|
|
514
512
|
layout_appearance_title: Rediģēt izkārtojuma izskatu
|
515
513
|
preview: Priekšskatīt
|
516
514
|
omnipresent_banner_appearance_title: Rediģēt visuresošo reklāmkarogu
|
517
|
-
organization_external_domain_whitelist:
|
518
|
-
edit:
|
519
|
-
update: Atjaunināt
|
520
515
|
participatory_space_private_users:
|
521
516
|
create:
|
522
517
|
error: Pievienojot privāto dalībnieku šai līdzdalības telpai, radās problēma.
|
@@ -531,8 +526,6 @@ lv:
|
|
531
526
|
title: Jauns līdzdalības telpas privāts dalībnieks
|
532
527
|
participatory_space_private_users_csv_imports:
|
533
528
|
new:
|
534
|
-
csv_upload:
|
535
|
-
title: Augšupielādējiet savu CSV failu
|
536
529
|
upload: Augšupielādēt
|
537
530
|
resource_permissions:
|
538
531
|
edit:
|
@@ -632,7 +625,9 @@ lv:
|
|
632
625
|
user_groups:
|
633
626
|
index:
|
634
627
|
state:
|
628
|
+
pending: Nepabeigts
|
635
629
|
rejected: Noraidīts
|
630
|
+
verified: Pārbaudīts
|
636
631
|
verify_via_csv: Pārbaudīt, izmantojot CSV
|
637
632
|
user_groups_csv_verifications:
|
638
633
|
new:
|
data/config/locales/nl.yml
CHANGED
@@ -363,14 +363,13 @@ nl:
|
|
363
363
|
'false': Ingediend
|
364
364
|
'true': Niet-gepubliceerde
|
365
365
|
scope_id_eq:
|
366
|
-
label:
|
366
|
+
label: Bereik
|
367
367
|
search_label: Zoeken
|
368
368
|
search_placeholder:
|
369
369
|
name_or_nickname_or_email_cont: Zoek %{collection} op e-mail, naam of bijnaam.
|
370
370
|
report_count_eq: Aantal rapporteringen
|
371
371
|
reported_id_string_or_reported_content_cont: Zoek %{collection} op rapporteerbaar id of op inhoud.
|
372
372
|
title_cont: Zoek %{collection} op titel.
|
373
|
-
user_name_or_user_email_cont: '%{collection} doorzoeken op Id of titel.'
|
374
373
|
user_name_or_user_nickname_or_user_email_cont: Doorzoek %{collection} op e-mail, naam of bijnaam.
|
375
374
|
state_eq:
|
376
375
|
label: Provincie
|
@@ -565,11 +564,10 @@ nl:
|
|
565
564
|
name: Deelnemer
|
566
565
|
user_group:
|
567
566
|
fields:
|
568
|
-
actions:
|
567
|
+
actions: acties
|
569
568
|
created_at: Aangemaakt op
|
570
569
|
document_number: Documentnummer
|
571
570
|
name: Naam
|
572
|
-
nickname: Gebruikersnaam
|
573
571
|
phone: Telefoon
|
574
572
|
state: Staat
|
575
573
|
users_count: Aantal deelnemers
|
@@ -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.
|
@@ -750,8 +742,6 @@ nl:
|
|
750
742
|
title: Nieuwe privé deelnemer burgerinspraak.
|
751
743
|
participatory_space_private_users_csv_imports:
|
752
744
|
new:
|
753
|
-
csv_upload:
|
754
|
-
title: Upload uw CSV-bestand
|
755
745
|
destroy:
|
756
746
|
button: Verwijder alle privé deelnemers
|
757
747
|
empty: Je hebt geen privé deelnemers.
|
@@ -883,14 +873,14 @@ nl:
|
|
883
873
|
index:
|
884
874
|
state:
|
885
875
|
pending: In afwachting
|
886
|
-
rejected:
|
876
|
+
rejected: Geweigerd
|
887
877
|
verified: Geverifieerd
|
888
878
|
verify_via_csv: Controleer via CSV
|
889
879
|
user_groups_csv_verifications:
|
890
880
|
new:
|
891
881
|
explanation: Upload uw CSV-bestand. De officiële e-mails van de groepen in uw organisatie moeten in de eerste kolom van het bestand staan, zonder kopteksten. Alleen groepen die hun e-mail hebben bevestigd en een e-mail hebben die in het CSV-bestand wordt weergegeven, worden gevalideerd.
|
892
882
|
title: Upload uw CSV-bestand
|
893
|
-
upload:
|
883
|
+
upload: Uploaden
|
894
884
|
users:
|
895
885
|
create:
|
896
886
|
error: Er is een probleem opgetreden bij het uitnodigen van deze beheerder.
|
data/config/locales/no.yml
CHANGED
@@ -382,7 +382,6 @@
|
|
382
382
|
report_count_eq: Antall rapporter
|
383
383
|
reported_id_string_or_reported_content_cont: Søk %{collection} av rapporterbar id eller innhold.
|
384
384
|
title_cont: Søk %{collection} etter tittel.
|
385
|
-
user_name_or_user_email_cont: Søk %{collection} etter navn eller e-post.
|
386
385
|
user_name_or_user_nickname_or_user_email_cont: Søk %{collection} via e-post, navn eller kallenavn.
|
387
386
|
state_eq:
|
388
387
|
label: Tilstand
|
@@ -547,7 +546,7 @@
|
|
547
546
|
plural: Flertall
|
548
547
|
share_token:
|
549
548
|
fields:
|
550
|
-
created_at: Opprettet
|
549
|
+
created_at: Opprettet i
|
551
550
|
expires_at: Utløper
|
552
551
|
last_used_at: Sist brukt
|
553
552
|
times_used: Ganger brukt
|
@@ -573,7 +572,6 @@
|
|
573
572
|
created_at: Opprettet på
|
574
573
|
document_number: Dokumentnummer
|
575
574
|
name: Navn
|
576
|
-
nickname: Kallenavn
|
577
575
|
phone: Telefon
|
578
576
|
state: Stat
|
579
577
|
users_count: Deltakere teller
|
@@ -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.
|
@@ -754,8 +746,6 @@
|
|
754
746
|
title: Ny deltaker område privat deltaker.
|
755
747
|
participatory_space_private_users_csv_imports:
|
756
748
|
new:
|
757
|
-
csv_upload:
|
758
|
-
title: Last opp din CSV fil
|
759
749
|
destroy:
|
760
750
|
button: Slett alle private deltakere
|
761
751
|
empty: Du har ingen private deltakere.
|
@@ -887,9 +877,9 @@
|
|
887
877
|
user_groups:
|
888
878
|
index:
|
889
879
|
state:
|
890
|
-
pending:
|
880
|
+
pending: Venter
|
891
881
|
rejected: Avvist
|
892
|
-
verified:
|
882
|
+
verified: Verifisert
|
893
883
|
verify_via_csv: Verifiser via CSV
|
894
884
|
user_groups_csv_verifications:
|
895
885
|
new:
|
data/config/locales/pl.yml
CHANGED
@@ -384,12 +384,12 @@ pl:
|
|
384
384
|
show:
|
385
385
|
dropdown: Lista rozwijana
|
386
386
|
view_more_logs: Zobacz więcej logów
|
387
|
-
|
387
|
+
domain_allowlist:
|
388
388
|
form:
|
389
389
|
domain_too_short: Domena jest za krótka
|
390
390
|
update:
|
391
|
-
error: Nie udało się zaktualizować
|
392
|
-
success:
|
391
|
+
error: Nie udało się zaktualizować listy dozwolonych domen zewnętrznych
|
392
|
+
success: Lista dozwolonych domen zewnętrznych została pomyślnie zaktualizowana.
|
393
393
|
exports:
|
394
394
|
export_as: "%{name} jako %{export_format}"
|
395
395
|
formats:
|
@@ -448,6 +448,7 @@ pl:
|
|
448
448
|
values:
|
449
449
|
'false': Opublikowany
|
450
450
|
'true': Nieopublikowany
|
451
|
+
remove_all: Usuń wszystkie
|
451
452
|
scope_id_eq:
|
452
453
|
label: Zakres
|
453
454
|
search_label: Szukaj
|
@@ -456,7 +457,6 @@ pl:
|
|
456
457
|
report_count_eq: Licznik raportów
|
457
458
|
reported_id_string_or_reported_content_cont: Przeszukaj %{collection} według identyfikatora lub treści zgłoszenia.
|
458
459
|
title_cont: Przeszukaj %{collection} według tytułu.
|
459
|
-
user_name_or_user_email_cont: Przeszukaj %{collection} według nazwy lub e-maila.
|
460
460
|
user_name_or_user_nickname_or_user_email_cont: Szukaj %{collection} według adresu e-mail, nazwy lub pseudonimu.
|
461
461
|
state_eq:
|
462
462
|
label: Stan
|
@@ -580,7 +580,7 @@ pl:
|
|
580
580
|
components: Komponenty
|
581
581
|
configuration: Konfiguracja
|
582
582
|
content: Zgłoszona zawartość
|
583
|
-
|
583
|
+
external_domain_allowlist: Dozwolone domeny zewnętrzne
|
584
584
|
help_sections: Sekcje pomocy
|
585
585
|
homepage: Strona główna
|
586
586
|
impersonations: Podszywanie się pod inne osoby
|
@@ -766,7 +766,7 @@ pl:
|
|
766
766
|
confirm_deliver: Czy na pewno chcesz dostarczyć ten newsletter? Nie można cofnąć tej czynności.
|
767
767
|
deliver: Dostarcz newsletter
|
768
768
|
followers_help: Wysyła newsletter do wszystkich potwierdzonych użytkowników, którzy obserwują dowolne przestrzenie partycypacyjne z tej listy.
|
769
|
-
none:
|
769
|
+
none: Żaden
|
770
770
|
participants_help: Wysyła newsletter do wszystkich potwierdzonych użytkowników, którzy uczestniczyli w którejkolwiek z przestrzeni partycypacyjnych z tej listy.
|
771
771
|
recipients_count: Ten newsletter zostanie wysłany do <strong id='recipients_count'>%{count}</strong> użytkowników.
|
772
772
|
scopes_help: Wysyła newsletter do użytkowników, którzy mają dowolny z wybranych zakresów ustawiony jako aktywny w zakładce konta „Moje zainteresowania”.
|
@@ -865,7 +865,7 @@ pl:
|
|
865
865
|
layout_appearance_title: Edytuj wygląd layoutu
|
866
866
|
preview: Podgląd
|
867
867
|
omnipresent_banner_appearance_title: Edytuj stały baner
|
868
|
-
|
868
|
+
organization_external_domain_allowlist:
|
869
869
|
edit:
|
870
870
|
update: Aktualizuj
|
871
871
|
external_domain:
|
@@ -874,8 +874,8 @@ pl:
|
|
874
874
|
remove: Usuń
|
875
875
|
up: Do góry
|
876
876
|
form:
|
877
|
-
add: Dodaj do
|
878
|
-
title:
|
877
|
+
add: Dodaj do listy dozwolonych
|
878
|
+
title: Dozwolone domeny zewnętrzne
|
879
879
|
participatory_space_private_users:
|
880
880
|
create:
|
881
881
|
error: Wystąpił błąd podczas dodawania użytkownika prywatnego do tej przestrzeni partycypacyjnej.
|
@@ -895,7 +895,7 @@ pl:
|
|
895
895
|
success: Załadowanie pliku CSV powiodło się, wysyłamy e-mail z zaproszeniem do uczestników. To może chwilę potrwać.
|
896
896
|
new:
|
897
897
|
csv_upload:
|
898
|
-
title:
|
898
|
+
title: Załaduj swój plik CSV
|
899
899
|
destroy:
|
900
900
|
button: Usuń wszystkich prywatnych uczestników
|
901
901
|
confirm: Czy na pewno chcesz usunąć wszystkich uczestników prywatnych? Tej akcji nie można cofnąć, nie będziesz w stanie odzyskać danych.
|
@@ -973,6 +973,11 @@ pl:
|
|
973
973
|
help: Te tokeny są używane do publicznego udostępniania nieopublikowanego zasobu każdemu użytkownikowi. Zostaną one ukryte, gdy zasób zostanie opublikowany. Kliknij na ikonę udostępniania tokenu aby odwiedzić udostępniany adres URL.
|
974
974
|
title: Udostępnij tokeny
|
975
975
|
shared:
|
976
|
+
adjacent_navigation:
|
977
|
+
next: Następny
|
978
|
+
next_title: Następny element
|
979
|
+
previous: Poprzedni
|
980
|
+
previous_title: Poprzedni element
|
976
981
|
gallery:
|
977
982
|
add_images: Dodaj obrazy
|
978
983
|
edit_images: Edytuj obrazy
|
@@ -1025,7 +1030,7 @@ pl:
|
|
1025
1030
|
areas: Kategorie
|
1026
1031
|
authorization_workflows: Metody weryfikacji
|
1027
1032
|
dashboard: Panel
|
1028
|
-
edit_external_domains:
|
1033
|
+
edit_external_domains: Dozwolone domeny zewnętrzne
|
1029
1034
|
edit_landing_page: Zawartość strony
|
1030
1035
|
edit_organization_appearance: Edytuj wygląd strony głównej
|
1031
1036
|
impersonatable_users: Zarządzaj użytkownikami
|
@@ -1055,8 +1060,8 @@ pl:
|
|
1055
1060
|
index:
|
1056
1061
|
state:
|
1057
1062
|
pending: Oczekujące
|
1058
|
-
rejected:
|
1059
|
-
verified:
|
1063
|
+
rejected: Odrzucone
|
1064
|
+
verified: Zweryfikowane
|
1060
1065
|
verify_via_csv: Zweryfikuj za pomocą CSV
|
1061
1066
|
user_groups_csv_verifications:
|
1062
1067
|
new:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -289,7 +289,6 @@ pt-BR:
|
|
289
289
|
block_user:
|
290
290
|
new:
|
291
291
|
action: Bloquear conta e enviar justificativa
|
292
|
-
already_reported_html: Continuar com essa ação também resultará na ocultação o conteúdo de todos os participantes.
|
293
292
|
description: Bloquear um usuário irá tornar sua conta inutilizável. Você pode fornecer em sua justificação quaisquer diretrizes sobre como você poderia considerar desbloquear o usuário.
|
294
293
|
justification: Justificativa
|
295
294
|
title: Bloquear usuário %{name}
|
@@ -351,8 +350,6 @@ pt-BR:
|
|
351
350
|
conflicts:
|
352
351
|
attempts: Tentativas
|
353
352
|
'false': 'Não'
|
354
|
-
index:
|
355
|
-
text: Pesquisar por e-mail, nome ou apelido do usuário.
|
356
353
|
managed_user_name: Usuário gerenciado
|
357
354
|
solved: Resolvido
|
358
355
|
title: Conflitos de verificação
|
@@ -385,12 +382,12 @@ pt-BR:
|
|
385
382
|
show:
|
386
383
|
dropdown: Dropdown
|
387
384
|
view_more_logs: Ver mais registros
|
388
|
-
|
385
|
+
domain_allowlist:
|
389
386
|
form:
|
390
387
|
domain_too_short: Domínio muito curto
|
391
388
|
update:
|
392
|
-
error: Falha ao atualizar
|
393
|
-
success:
|
389
|
+
error: Falha ao atualizar lista de domínios externos permitidos
|
390
|
+
success: Lista do domínio externo permitido atualizada com sucesso.
|
394
391
|
exports:
|
395
392
|
export_as: "%{name} como %{export_format}"
|
396
393
|
formats:
|
@@ -457,7 +454,6 @@ pt-BR:
|
|
457
454
|
report_count_eq: Número de denúncias
|
458
455
|
reported_id_string_or_reported_content_cont: Pesquisar %{collection} por id ou conteúdo reportável.
|
459
456
|
title_cont: Pesquisar %{collection} por título.
|
460
|
-
user_name_or_user_email_cont: Pesquise %{collection} por nome ou e-mail.
|
461
457
|
user_name_or_user_nickname_or_user_email_cont: Pesquise %{collection} por e-mail, nome ou apelido.
|
462
458
|
state_eq:
|
463
459
|
label: Estado
|
@@ -569,7 +565,7 @@ pt-BR:
|
|
569
565
|
areas: Áreas
|
570
566
|
configuration: Configuração
|
571
567
|
content: Conteúdo relatado
|
572
|
-
|
568
|
+
external_domain_allowlist: Domínios externos permitidos
|
573
569
|
help_sections: Seções de ajuda
|
574
570
|
homepage: Pagina inicial
|
575
571
|
impersonations: Imitações
|
@@ -664,7 +660,7 @@ pt-BR:
|
|
664
660
|
created_at: Criado em
|
665
661
|
document_number: Número do documento
|
666
662
|
name: Nome
|
667
|
-
nickname:
|
663
|
+
nickname: Nome de usuário
|
668
664
|
phone: Telefone
|
669
665
|
state: Situação
|
670
666
|
users_count: Total de usuários
|
@@ -854,7 +850,7 @@ pt-BR:
|
|
854
850
|
layout_appearance_title: Editar aparência do layout
|
855
851
|
preview: Pré-visualização
|
856
852
|
omnipresent_banner_appearance_title: Editar banner onipresente
|
857
|
-
|
853
|
+
organization_external_domain_allowlist:
|
858
854
|
edit:
|
859
855
|
update: Atualizar
|
860
856
|
external_domain:
|
@@ -863,8 +859,8 @@ pt-BR:
|
|
863
859
|
remove: Remover
|
864
860
|
up: Acima
|
865
861
|
form:
|
866
|
-
add: Adicionar
|
867
|
-
title: Lista
|
862
|
+
add: Adicionar na lista de permitidos
|
863
|
+
title: Lista de domínios externos permitidos
|
868
864
|
participatory_space_private_users:
|
869
865
|
create:
|
870
866
|
error: Ocorreu um erro ao adicionar um usuário privado para este espaço participativo.
|
@@ -1012,7 +1008,7 @@ pt-BR:
|
|
1012
1008
|
areas: Áreas
|
1013
1009
|
authorization_workflows: Métodos de verificação
|
1014
1010
|
dashboard: painel de controle
|
1015
|
-
edit_external_domains: Lista
|
1011
|
+
edit_external_domains: Lista de domínios externos permitidos
|
1016
1012
|
edit_landing_page: Conteúdos da página
|
1017
1013
|
edit_organization_appearance: Editar aparência da página inicial
|
1018
1014
|
impersonatable_users: Usuários gerenciáveis
|
@@ -1053,7 +1049,7 @@ pt-BR:
|
|
1053
1049
|
acme@example.org
|
1054
1050
|
bubba.gump@example.org
|
1055
1051
|
title: Envie seu arquivo CSV
|
1056
|
-
upload:
|
1052
|
+
upload: Envio
|
1057
1053
|
users:
|
1058
1054
|
create:
|
1059
1055
|
error: Ocorreu um erro ao convidar esse usuário.
|
data/config/locales/pt.yml
CHANGED
@@ -31,7 +31,6 @@ pt:
|
|
31
31
|
user_group_id: Criar importações como
|
32
32
|
newsletter:
|
33
33
|
body: Corpo
|
34
|
-
send_to_all_users: Enviar para todas as pessoas utilizadoras
|
35
34
|
subject: Assunto
|
36
35
|
organization:
|
37
36
|
alert_color: Alerta
|
@@ -162,9 +161,6 @@ pt:
|
|
162
161
|
reject: Rejeitar
|
163
162
|
share: Partilhar
|
164
163
|
verify: Verificar
|
165
|
-
admin_terms_of_service:
|
166
|
-
accept:
|
167
|
-
error: Ocorreu um erro ao aceitar os termos de utilização de administrador.
|
168
164
|
area_types:
|
169
165
|
create:
|
170
166
|
error: Ocorreu um problema ao criar um novo tipo de área.
|
@@ -362,7 +358,6 @@ pt:
|
|
362
358
|
name_or_nickname_or_email_cont: Pesquisar %{collection} por e-mail, nome ou alcunha.
|
363
359
|
reported_id_string_or_reported_content_cont: Pesquisar %{coleção} por identificador de denúncia ou conteúdo.
|
364
360
|
title_cont: Pesquisar %{collection} por título.
|
365
|
-
user_name_or_user_email_cont: Pesquisar %{coleção} por nome ou e-mail.
|
366
361
|
state_eq:
|
367
362
|
label: Estado
|
368
363
|
values:
|
@@ -527,7 +522,6 @@ pt:
|
|
527
522
|
created_at: Criado em
|
528
523
|
document_number: Número do documento
|
529
524
|
name: Nome
|
530
|
-
nickname: Alcunha
|
531
525
|
phone: Telefone
|
532
526
|
state: Estado
|
533
527
|
users_count: Contagem de participantes
|
@@ -686,12 +680,6 @@ pt:
|
|
686
680
|
layout_appearance_title: Editar aparência do layout
|
687
681
|
preview: Pré-visualização
|
688
682
|
omnipresent_banner_appearance_title: Editar faixa omnipresente
|
689
|
-
organization_external_domain_whitelist:
|
690
|
-
edit:
|
691
|
-
update: Atualizar
|
692
|
-
form:
|
693
|
-
add: Adicionar à lista branca
|
694
|
-
title: Lista branca de domínio externo
|
695
683
|
participatory_space_private_users:
|
696
684
|
create:
|
697
685
|
error: Ocorreu um problema ao adicionar um participante privado neste espaço participativo.
|
@@ -707,8 +695,6 @@ pt:
|
|
707
695
|
title: Novo participante privado do Espaço Participativo.
|
708
696
|
participatory_space_private_users_csv_imports:
|
709
697
|
new:
|
710
|
-
csv_upload:
|
711
|
-
title: Envie o seu ficheiro CSV
|
712
698
|
upload: Carregar
|
713
699
|
resource_permissions:
|
714
700
|
edit:
|
@@ -824,15 +810,15 @@ pt:
|
|
824
810
|
user_groups:
|
825
811
|
index:
|
826
812
|
state:
|
827
|
-
pending:
|
828
|
-
rejected:
|
829
|
-
verified:
|
813
|
+
pending: Pendente
|
814
|
+
rejected: Rejeitado
|
815
|
+
verified: Verificado
|
830
816
|
verify_via_csv: Verificar via CSV
|
831
817
|
user_groups_csv_verifications:
|
832
818
|
new:
|
833
819
|
explanation: Envie o seu ficheiro CSV. Deve ter os e-mails oficiais dos grupos na sua organização na primeira coluna do ficheiro, sem cabeçalhos. Somente grupos que confirmaram os seus e-mails e que tenham um e-mail a aparecer no arquivo CSV serão validados.
|
834
820
|
title: Envie o seu ficheiro CSV
|
835
|
-
upload:
|
821
|
+
upload: Envio
|
836
822
|
users:
|
837
823
|
create:
|
838
824
|
error: Ocorreu um problema ao convidar este(a) administrador(a).
|