decidim-admin 0.31.5 → 0.32.0.rc2
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 +2 -12
- data/app/cells/decidim/admin/attachments_privacy_warning/show.erb +1 -1
- data/app/cells/decidim/admin/attachments_privacy_warning_cell.rb +2 -6
- data/app/commands/decidim/admin/content_blocks/reorder_content_blocks.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_member.rb +99 -0
- data/app/commands/decidim/admin/participatory_space/destroy_member.rb +30 -0
- data/app/commands/decidim/admin/participatory_space/import_member_csv.rb +46 -0
- data/app/commands/decidim/admin/participatory_space/publish_all_members.rb +52 -0
- data/app/commands/decidim/admin/participatory_space/unpublish_all_members.rb +52 -0
- data/app/commands/decidim/admin/participatory_space/update_member.rb +13 -0
- data/app/commands/decidim/admin/reorder_components.rb +1 -1
- data/app/commands/decidim/admin/reorder_taxonomies.rb +1 -1
- data/app/commands/decidim/admin/update_organization.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +1 -0
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page_content_blocks.rb +3 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +4 -4
- data/app/controllers/concerns/decidim/admin/participatory_space_admin_context.rb +1 -0
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/area_types_controller.rb +2 -2
- data/app/controllers/decidim/admin/areas_controller.rb +3 -2
- data/app/controllers/decidim/admin/block_user_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components/base_controller.rb +13 -9
- data/app/controllers/decidim/admin/components_controller.rb +3 -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/conflicts_controller.rb +1 -1
- data/app/controllers/decidim/admin/exports_controller.rb +1 -1
- data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/imports_controller.rb +2 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +9 -8
- 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_allowlist_controller.rb +1 -1
- data/app/controllers/decidim/admin/participatory_space/concerns/has_members.rb +166 -0
- data/app/controllers/decidim/admin/participatory_space/concerns/has_members_csv_import.rb +67 -0
- data/app/controllers/decidim/admin/participatory_space/concerns/members_filterable.rb +36 -0
- data/app/controllers/decidim/admin/participatory_space/user_role_controller.rb +2 -2
- data/app/controllers/decidim/admin/reminders_controller.rb +1 -1
- data/app/controllers/decidim/admin/resource_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/scope_types_controller.rb +2 -2
- data/app/controllers/decidim/admin/scopes_controller.rb +3 -2
- data/app/controllers/decidim/admin/share_tokens_controller.rb +2 -2
- data/app/controllers/decidim/admin/space_publications_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/controllers/decidim/admin/taxonomies_controller.rb +3 -3
- data/app/controllers/decidim/admin/taxonomy_filters_controller.rb +3 -3
- data/app/controllers/decidim/admin/taxonomy_items_controller.rb +3 -3
- data/app/controllers/decidim/admin/users_controller.rb +1 -1
- data/app/forms/decidim/admin/content_block_form.rb +28 -1
- data/app/forms/decidim/admin/organization_form.rb +0 -1
- data/app/forms/decidim/admin/participatory_space/member_csv_import_form.rb +33 -0
- data/app/forms/decidim/admin/participatory_space/member_form.rb +26 -0
- data/app/forms/decidim/admin/participatory_space_admin_user_form.rb +1 -1
- data/app/forms/decidim/admin/selective_newsletter_form.rb +7 -7
- data/app/forms/decidim/admin/taxonomy_filter_form.rb +1 -0
- data/app/helpers/decidim/admin/newsletters_helper.rb +8 -5
- data/app/helpers/decidim/admin/search_form_helper.rb +17 -0
- data/app/helpers/decidim/admin/settings_helper.rb +2 -0
- data/app/jobs/decidim/admin/newsletter_job.rb +2 -2
- data/app/jobs/decidim/admin/participatory_space/destroy_members_follows_job.rb +36 -0
- data/app/jobs/decidim/admin/participatory_space/import_member_csv_job.rb +29 -0
- data/app/packs/src/decidim/admin/controllers/access_mode/access_mode.test.js +68 -0
- data/app/packs/src/decidim/admin/controllers/access_mode/controller.js +52 -0
- data/app/packs/src/decidim/admin/newsletters.js +2 -2
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +0 -4
- data/app/queries/decidim/admin/newsletter_recipients.rb +8 -8
- data/app/views/decidim/admin/admin_terms/show.html.erb +3 -1
- data/app/views/decidim/admin/area_types/index.html.erb +3 -2
- data/app/views/decidim/admin/areas/index.html.erb +3 -2
- data/app/views/decidim/admin/attachment_collections/edit.html.erb +2 -2
- data/app/views/decidim/admin/attachment_collections/index.html.erb +2 -2
- data/app/views/decidim/admin/attachment_collections/new.html.erb +2 -2
- data/app/views/decidim/admin/attachments/index.html.erb +3 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +2 -2
- data/app/views/decidim/admin/block_user/new.html.erb +1 -0
- data/app/views/decidim/admin/components/index.html.erb +2 -2
- data/app/views/decidim/admin/components/manage_trash.html.erb +2 -2
- data/app/views/decidim/admin/conflicts/edit.html.erb +3 -1
- data/app/views/decidim/admin/conflicts/index.html.erb +3 -2
- data/app/views/decidim/admin/dashboard/show.html.erb +4 -4
- data/app/views/decidim/admin/help_sections/update.html.erb +2 -0
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -2
- data/app/views/decidim/admin/impersonations/_form.html.erb +2 -2
- data/app/views/decidim/admin/impersonations/new.html.erb +3 -2
- data/app/views/decidim/admin/imports/new.html.erb +1 -0
- data/app/views/decidim/admin/logs/_logs_list.html.erb +1 -1
- data/app/views/decidim/admin/logs/index.html.erb +1 -1
- data/app/views/decidim/admin/managed_users/impersonation_logs/index.html.erb +6 -5
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +3 -2
- data/app/views/decidim/admin/{participatory_space_private_users → members}/edit.html.erb +2 -2
- data/app/views/decidim/admin/{participatory_space_private_users → members}/index.html.erb +25 -25
- data/app/views/decidim/admin/{participatory_space_private_users → members}/new.html.erb +2 -2
- data/app/views/decidim/admin/{participatory_space_private_users_csv_imports → members_csv_imports}/new.html.erb +2 -2
- data/app/views/decidim/admin/moderations/_moderation-tr.html.erb +2 -6
- data/app/views/decidim/admin/moderations/_moderations-thead.html.erb +0 -1
- data/app/views/decidim/admin/moderations/reports/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +3 -2
- data/app/views/decidim/admin/newsletters/confirm_recipients.html.erb +4 -6
- data/app/views/decidim/admin/newsletters/index.html.erb +2 -2
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +2 -2
- data/app/views/decidim/admin/newsletters/show.html.erb +3 -2
- data/app/views/decidim/admin/officializations/index.html.erb +6 -4
- data/app/views/decidim/admin/officializations/show_email.html.erb +2 -0
- data/app/views/decidim/admin/organization/form/_extra_features.html.erb +0 -4
- data/app/views/decidim/admin/organization_external_domain_allowlist/_form.html.erb +2 -2
- data/app/views/decidim/admin/organization_external_domain_allowlist/edit.html.erb +2 -2
- data/app/views/decidim/admin/reminders/new.html.erb +8 -1
- data/app/views/decidim/admin/resource_permissions/edit.html.erb +2 -2
- data/app/views/decidim/admin/scope_types/index.html.erb +3 -2
- data/app/views/decidim/admin/scopes/index.html.erb +2 -2
- data/app/views/decidim/admin/share_tokens/index.html.erb +2 -0
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +0 -2
- data/app/views/decidim/admin/shared/landing_page/edit.html.erb +2 -0
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +1 -0
- data/app/views/decidim/admin/static_page_topics/index.html.erb +2 -2
- data/app/views/decidim/admin/static_pages/edit.html.erb +2 -1
- data/app/views/decidim/admin/static_pages/index.html.erb +2 -2
- data/app/views/decidim/admin/statistics/_statistics.html.erb +1 -1
- data/app/views/decidim/admin/statistics/index.html.erb +2 -0
- data/app/views/decidim/admin/taxonomies/_row.html.erb +1 -1
- data/app/views/decidim/admin/taxonomies/_row_children.html.erb +1 -1
- data/app/views/decidim/admin/taxonomies/_table.html.erb +1 -1
- data/app/views/decidim/admin/taxonomies/edit.html.erb +2 -2
- data/app/views/decidim/admin/taxonomies/index.html.erb +4 -4
- data/app/views/decidim/admin/taxonomy_filters/index.html.erb +2 -2
- data/app/views/decidim/admin/taxonomy_filters_selector/index.html.erb +2 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/new.html.erb +2 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/show.html.erb +2 -0
- data/app/views/decidim/admin/taxonomy_items/edit.html.erb +2 -0
- data/app/views/decidim/admin/taxonomy_items/new.html.erb +2 -0
- data/app/views/decidim/admin/users/index.html.erb +3 -2
- data/config/locales/ar.yml +4 -48
- data/config/locales/bg.yml +4 -54
- data/config/locales/bs-BA.yml +0 -23
- data/config/locales/ca-IT.yml +126 -98
- data/config/locales/ca.yml +126 -98
- data/config/locales/cs.yml +122 -95
- data/config/locales/de.yml +109 -93
- data/config/locales/el.yml +11 -44
- data/config/locales/en.yml +126 -98
- data/config/locales/eo.yml +0 -6
- data/config/locales/es-MX.yml +126 -98
- data/config/locales/es-PY.yml +126 -98
- data/config/locales/es.yml +126 -98
- data/config/locales/eu.yml +126 -98
- data/config/locales/fi-plain.yml +126 -98
- data/config/locales/fi.yml +126 -98
- data/config/locales/fr-CA.yml +91 -90
- data/config/locales/fr.yml +91 -90
- data/config/locales/ga-IE.yml +0 -12
- data/config/locales/gl.yml +4 -40
- data/config/locales/he-IL.yml +0 -4
- data/config/locales/hu.yml +4 -51
- data/config/locales/id-ID.yml +4 -33
- data/config/locales/is-IS.yml +0 -14
- data/config/locales/it.yml +4 -67
- data/config/locales/ja.yml +124 -98
- data/config/locales/kaa.yml +0 -15
- data/config/locales/ko.yml +0 -39
- data/config/locales/lb.yml +4 -40
- data/config/locales/lt.yml +4 -51
- data/config/locales/lv.yml +4 -37
- data/config/locales/nl.yml +4 -45
- data/config/locales/no.yml +4 -45
- data/config/locales/pl.yml +4 -53
- data/config/locales/pt-BR.yml +109 -96
- data/config/locales/pt.yml +4 -41
- data/config/locales/ro-RO.yml +9 -50
- data/config/locales/ru.yml +4 -34
- data/config/locales/sk.yml +126 -98
- data/config/locales/sl.yml +0 -6
- data/config/locales/sq-AL.yml +0 -20
- data/config/locales/sr-CS.yml +0 -23
- data/config/locales/sv.yml +74 -86
- data/config/locales/th-TH.yml +0 -7
- data/config/locales/tr-TR.yml +21 -57
- data/config/locales/uk.yml +0 -25
- data/config/locales/zh-CN.yml +4 -37
- data/config/locales/zh-TW.yml +4 -51
- data/decidim-admin.gemspec +7 -10
- data/lib/decidim/admin/engine.rb +5 -2
- data/lib/decidim/admin/menu.rb +1 -1
- data/lib/decidim/admin/test/admin_members_shared_examples.rb +119 -0
- data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +3 -3
- data/lib/decidim/admin/test/filterable_examples.rb +20 -11
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +17 -17
- data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +1 -1
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_attachments_examples.rb +6 -6
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_moderations_examples.rb +6 -6
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/test/manage_resource_soft_deletion_examples.rb +3 -3
- data/lib/decidim/admin/version.rb +1 -1
- data/lib/decidim/admin.rb +0 -2
- metadata +39 -35
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +0 -98
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +0 -28
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +0 -44
- data/app/commands/decidim/admin/publish_all_participatory_space_private_users.rb +0 -50
- data/app/commands/decidim/admin/unpublish_all_participatory_space_private_users.rb +0 -50
- data/app/commands/decidim/admin/update_participatory_space_private_user.rb +0 -11
- data/app/controllers/concerns/decidim/participatory_space_private_users/admin/filterable.rb +0 -34
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +0 -169
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +0 -65
- data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +0 -31
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +0 -24
- data/app/jobs/decidim/admin/destroy_private_users_follows_job.rb +0 -37
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +0 -27
- data/app/views/decidim/admin/devise/mailers/password_change.html.erb +0 -3
- data/app/views/decidim/admin/devise/mailers/reset_password_instructions.html.erb +0 -8
- /data/app/views/decidim/admin/{participatory_space_private_users → members}/_form.html.erb +0 -0
data/config/locales/ko.yml
CHANGED
|
@@ -67,11 +67,6 @@ ko:
|
|
|
67
67
|
twitter_handler: X handler
|
|
68
68
|
warning_color: 경고
|
|
69
69
|
youtube_handler: YouTube handler
|
|
70
|
-
participatory_space_private_user:
|
|
71
|
-
email: 이메일
|
|
72
|
-
name: 이름
|
|
73
|
-
participatory_space_private_user_csv_import:
|
|
74
|
-
file: 파일
|
|
75
70
|
scope:
|
|
76
71
|
code: 코드
|
|
77
72
|
name: 이름
|
|
@@ -109,10 +104,6 @@ ko:
|
|
|
109
104
|
attributes:
|
|
110
105
|
official_img_footer:
|
|
111
106
|
allowed_file_content_types: 잘못된 이미지 파일
|
|
112
|
-
participatory_space_private_user_csv_import:
|
|
113
|
-
attributes:
|
|
114
|
-
file:
|
|
115
|
-
malformed: 잘못된 형식의 가져오기 파일입니다. 설명서를 잘 읽고 UTF-8이 인코딩되었는지 확인하십시오.
|
|
116
107
|
user_group_csv_verification:
|
|
117
108
|
attributes:
|
|
118
109
|
file:
|
|
@@ -148,8 +139,6 @@ ko:
|
|
|
148
139
|
import: 가져오기
|
|
149
140
|
newsletter:
|
|
150
141
|
new: 새 뉴스레터
|
|
151
|
-
participatory_space_private_user:
|
|
152
|
-
new: 새 참여 공간 비공개 사용자
|
|
153
142
|
per_page: 페이지 당
|
|
154
143
|
send_me_a_test_email: 나에게 테스트 메일 보내기
|
|
155
144
|
share: 공유
|
|
@@ -305,10 +294,6 @@ ko:
|
|
|
305
294
|
label: 유형
|
|
306
295
|
officialized_at_null:
|
|
307
296
|
label: 상태
|
|
308
|
-
participatory_space_private_users:
|
|
309
|
-
user_invitation_sent_at_not_null:
|
|
310
|
-
values:
|
|
311
|
-
'false': 전송되지 않음
|
|
312
297
|
private_space_eq:
|
|
313
298
|
label: 비공개
|
|
314
299
|
values:
|
|
@@ -364,7 +349,6 @@ ko:
|
|
|
364
349
|
new:
|
|
365
350
|
impersonate_existing_managed_user: 참가자 "% {name}" 관리
|
|
366
351
|
impersonate_existing_user: 참가자 "% {name}" 관리
|
|
367
|
-
impersonate_new_managed_user: 새로운 참여자 관리
|
|
368
352
|
imports:
|
|
369
353
|
and: 그리고
|
|
370
354
|
new:
|
|
@@ -428,8 +412,6 @@ ko:
|
|
|
428
412
|
sent_to: 다음에 전송하였습니다
|
|
429
413
|
subject: 주제
|
|
430
414
|
name: 뉴스 레터
|
|
431
|
-
participatory_space_private_user:
|
|
432
|
-
name: 참여공간 비공개참여
|
|
433
415
|
scope:
|
|
434
416
|
fields:
|
|
435
417
|
name: 이름
|
|
@@ -528,19 +510,6 @@ ko:
|
|
|
528
510
|
hidden: 숨겨짐
|
|
529
511
|
show: 표시
|
|
530
512
|
title: 참가자의 이메일 주소 보기
|
|
531
|
-
participatory_space_private_users:
|
|
532
|
-
edit:
|
|
533
|
-
update: 업데이트
|
|
534
|
-
new:
|
|
535
|
-
create: 생성
|
|
536
|
-
participatory_space_private_users_csv_imports:
|
|
537
|
-
new:
|
|
538
|
-
destroy:
|
|
539
|
-
button: 모든 비공개 참가자 삭제
|
|
540
|
-
confirm: 모든 비공개 참가자를 삭제하시겠습니까? 이 작업은 취소할 수 없습니다. 복구할 수 없습니다.
|
|
541
|
-
empty: 비공개 참가자가 없습니다.
|
|
542
|
-
explanation: '%{count} 개의 비공개 참가자가 있습니다.'
|
|
543
|
-
title: 비공개 참가자 삭제
|
|
544
513
|
reminders:
|
|
545
514
|
create:
|
|
546
515
|
error: 리마인더를 만드는 중 문제가 발생했습니다.
|
|
@@ -574,9 +543,6 @@ ko:
|
|
|
574
543
|
add_images: 이미지 추가
|
|
575
544
|
edit_images: 이미지 편집
|
|
576
545
|
gallery_legend: 이미지 갤러리 추가하기 (선택사항)
|
|
577
|
-
static_page_topics:
|
|
578
|
-
update:
|
|
579
|
-
success: 주제가 성공적으로 업데이트되었습니다
|
|
580
546
|
static_pages:
|
|
581
547
|
create:
|
|
582
548
|
error: 새 페이지를 생성하는 도중 문제가 생겼습니다.
|
|
@@ -600,15 +566,10 @@ ko:
|
|
|
600
566
|
error: 이 페이지를 업데이트하는 동안 문제가 발생했습니다.
|
|
601
567
|
success: 페이지가 성공적으로 업데이트되었습니다.
|
|
602
568
|
titles:
|
|
603
|
-
area_types: 영역 유형
|
|
604
569
|
areas: 영역
|
|
605
570
|
authorization_workflows: 인증 방식
|
|
606
|
-
impersonations: 참가자 관리
|
|
607
571
|
menu: 메뉴
|
|
608
|
-
page_topics: 주제
|
|
609
|
-
pages: 페이지
|
|
610
572
|
panel: 관리자
|
|
611
|
-
scope_types: 범위 종류
|
|
612
573
|
scopes: 범위
|
|
613
574
|
users:
|
|
614
575
|
form:
|
data/config/locales/lb.yml
CHANGED
|
@@ -39,7 +39,6 @@ lb:
|
|
|
39
39
|
default_locale: Standardgebietsschema
|
|
40
40
|
description: Beschreibung
|
|
41
41
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
|
42
|
-
enable_participatory_space_filters: Bereichs- und Gebietsfilter aktivieren
|
|
43
42
|
facebook_handler: Facebook-Handler
|
|
44
43
|
favicon: Icon
|
|
45
44
|
force_authentication: Authentifizierung erzwingen
|
|
@@ -78,11 +77,6 @@ lb:
|
|
|
78
77
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
|
79
78
|
welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
|
|
80
79
|
youtube_handler: YouTube-Handler
|
|
81
|
-
participatory_space_private_user:
|
|
82
|
-
email: Email
|
|
83
|
-
name: Name
|
|
84
|
-
participatory_space_private_user_csv_import:
|
|
85
|
-
file: Datei
|
|
86
80
|
scope:
|
|
87
81
|
code: Code
|
|
88
82
|
name: Name
|
|
@@ -145,8 +139,6 @@ lb:
|
|
|
145
139
|
import: Importieren
|
|
146
140
|
newsletter:
|
|
147
141
|
new: Neuer Newsletter
|
|
148
|
-
participatory_space_private_user:
|
|
149
|
-
new: Neuer privater Benutzer
|
|
150
142
|
per_page: Pro Seite
|
|
151
143
|
share: Teilen
|
|
152
144
|
area_types:
|
|
@@ -291,10 +283,6 @@ lb:
|
|
|
291
283
|
values:
|
|
292
284
|
'false': Offizialisiert
|
|
293
285
|
'true': Nicht offiziell
|
|
294
|
-
participatory_space_private_users:
|
|
295
|
-
user_invitation_sent_at_not_null:
|
|
296
|
-
values:
|
|
297
|
-
'false': Nicht gesendet
|
|
298
286
|
private_space_eq:
|
|
299
287
|
label: Privat
|
|
300
288
|
values:
|
|
@@ -353,7 +341,6 @@ lb:
|
|
|
353
341
|
impersonate: Imitieren
|
|
354
342
|
impersonate_existing_managed_user: Angenommen, dass der Benutzer "%{name}" verwaltet wird
|
|
355
343
|
impersonate_existing_user: Imitieren von Benutzer "%{name}"
|
|
356
|
-
impersonate_new_managed_user: Sich als neuer verwalteter Benutzer ausgeben
|
|
357
344
|
imports:
|
|
358
345
|
new:
|
|
359
346
|
accepted_mime_types:
|
|
@@ -370,6 +357,10 @@ lb:
|
|
|
370
357
|
new:
|
|
371
358
|
explanation: Verwaltete Benutzer können zu Standardbenutzern heraufgestuft werden. Das bedeutet, dass sie zu der Anwendung eingeladen werden und nicht in der Lage sind, sie erneut zu repräsentieren. Der eingeladene Benutzer erhält eine E-Mail, um Ihre Einladung anzunehmen.
|
|
372
359
|
promote: Fördern
|
|
360
|
+
members_csv_imports:
|
|
361
|
+
new:
|
|
362
|
+
csv_upload:
|
|
363
|
+
title: Laden Sie Ihre CSV-Datei hoch
|
|
373
364
|
menu:
|
|
374
365
|
admin_log: Admin-Aktivitätsprotokoll
|
|
375
366
|
admins: Admins
|
|
@@ -424,8 +415,6 @@ lb:
|
|
|
424
415
|
sent_to: Gesendet an
|
|
425
416
|
subject: Gegenstand
|
|
426
417
|
name: Newsletter
|
|
427
|
-
participatory_space_private_user:
|
|
428
|
-
name: Participatory Space privater Benutzer
|
|
429
418
|
scope:
|
|
430
419
|
fields:
|
|
431
420
|
name: Name
|
|
@@ -542,7 +531,6 @@ lb:
|
|
|
542
531
|
title: Empfänger auswählen
|
|
543
532
|
warning: "<strong>Achtung:</strong> Dieser Newsletter wird nur an Benutzer gesendet, die <em>Ich möchte Newsletter empfangen</em> in ihren Benachrichtigungseinstellungen aktiviert haben."
|
|
544
533
|
show:
|
|
545
|
-
preview: Vorschau
|
|
546
534
|
select_recipients_to_deliver: Empfänger auswählen
|
|
547
535
|
subject: Gegenstand
|
|
548
536
|
update:
|
|
@@ -588,24 +576,6 @@ lb:
|
|
|
588
576
|
update:
|
|
589
577
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
|
590
578
|
success: Die Organisation wurde erfolgreich aktualisiert.
|
|
591
|
-
participatory_space_private_users:
|
|
592
|
-
create:
|
|
593
|
-
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
|
594
|
-
success: Participatory Space Privater Benutzerzugriff erfolgreich erstellt.
|
|
595
|
-
destroy:
|
|
596
|
-
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
|
597
|
-
success: Participatory Space Privater Benutzerzugriff wurde erfolgreich zerstört.
|
|
598
|
-
edit:
|
|
599
|
-
update: Aktualisieren
|
|
600
|
-
index:
|
|
601
|
-
title: Participatory Space privater Benutzer
|
|
602
|
-
new:
|
|
603
|
-
create: Erstellen
|
|
604
|
-
title: Neuer privater Benutzer des Participatory Space.
|
|
605
|
-
participatory_space_private_users_csv_imports:
|
|
606
|
-
new:
|
|
607
|
-
csv_upload:
|
|
608
|
-
title: Laden Sie Ihre CSV-Datei hoch
|
|
609
579
|
resource_permissions:
|
|
610
580
|
edit:
|
|
611
581
|
submit: einreichen
|
|
@@ -659,7 +629,6 @@ lb:
|
|
|
659
629
|
title: Neues Thema
|
|
660
630
|
update:
|
|
661
631
|
error: Beim Aktualisieren dieses Themas ist ein Fehler aufgetreten.
|
|
662
|
-
success: Thema erfolgreich aktualisiert
|
|
663
632
|
static_pages:
|
|
664
633
|
create:
|
|
665
634
|
error: Beim Erstellen einer neuen Seite ist ein Fehler aufgetreten.
|
|
@@ -680,14 +649,9 @@ lb:
|
|
|
680
649
|
update:
|
|
681
650
|
error: Beim Aktualisieren dieser Seite ist ein Fehler aufgetreten.
|
|
682
651
|
titles:
|
|
683
|
-
area_types: Bereichstypen
|
|
684
652
|
areas: Bereiche
|
|
685
653
|
authorization_workflows: Verifizierungsmethoden
|
|
686
|
-
impersonations: Benutzerverwaltung
|
|
687
|
-
pages: Seiten
|
|
688
654
|
panel: Admin
|
|
689
|
-
participants: Teilnehmer
|
|
690
|
-
scope_types: Bereichstypen
|
|
691
655
|
scopes: Bereiche
|
|
692
656
|
users:
|
|
693
657
|
create:
|
data/config/locales/lt.yml
CHANGED
|
@@ -47,7 +47,6 @@ lt:
|
|
|
47
47
|
default_locale: Numatytoji lokalė
|
|
48
48
|
description: Aprašymas
|
|
49
49
|
enable_omnipresent_banner: Rodyti visur naudojamą reklamjuostę
|
|
50
|
-
enable_participatory_space_filters: Leisti dalyvaujamosios erdvės filtrus
|
|
51
50
|
facebook_handler: '„Facebook“ tvarkyklė'
|
|
52
51
|
favicon: Piktograma
|
|
53
52
|
force_authentication: Priversti autentifikuotis
|
|
@@ -87,11 +86,6 @@ lt:
|
|
|
87
86
|
welcome_notification_body: Pasisveikinimo pranešimo tekstas
|
|
88
87
|
welcome_notification_subject: Pasisveikinimo pranešimo antraštė
|
|
89
88
|
youtube_handler: '„YouTube“ tvarkyklė'
|
|
90
|
-
participatory_space_private_user:
|
|
91
|
-
email: El. paštas
|
|
92
|
-
name: Vardas
|
|
93
|
-
participatory_space_private_user_csv_import:
|
|
94
|
-
file: Rinkmena
|
|
95
89
|
scope:
|
|
96
90
|
code: Kodas
|
|
97
91
|
name: Pavadinimas
|
|
@@ -132,10 +126,6 @@ lt:
|
|
|
132
126
|
attributes:
|
|
133
127
|
official_img_footer:
|
|
134
128
|
allowed_file_content_types: Netinkama vaizdo rinkmena
|
|
135
|
-
participatory_space_private_user_csv_import:
|
|
136
|
-
attributes:
|
|
137
|
-
file:
|
|
138
|
-
malformed: Blogai suformuotas importo failas, prašome atidžiai perskaityti instrukcijas ir įsitikinkite, kad failas yra UTF-8 koduotėje.
|
|
139
129
|
user_group_csv_verification:
|
|
140
130
|
attributes:
|
|
141
131
|
file:
|
|
@@ -173,8 +163,6 @@ lt:
|
|
|
173
163
|
import: Importuoti
|
|
174
164
|
newsletter:
|
|
175
165
|
new: Naujas naujienlaiškis
|
|
176
|
-
participatory_space_private_user:
|
|
177
|
-
new: Naujas dalyvaujamosios erdvės privatus naudotojas
|
|
178
166
|
per_page: Per puslapį
|
|
179
167
|
send_me_a_test_email: Siųsti man bandomąjį el. laišką
|
|
180
168
|
share: Dalintis
|
|
@@ -295,7 +283,6 @@ lt:
|
|
|
295
283
|
title: 'Pridėti komponentą: %{name}'
|
|
296
284
|
publish:
|
|
297
285
|
success: Komponentas sėkmingai publikuotas.
|
|
298
|
-
title: Komponentai
|
|
299
286
|
unpublish:
|
|
300
287
|
success: Komponentas nebe publikuojamas.
|
|
301
288
|
update:
|
|
@@ -355,10 +342,6 @@ lt:
|
|
|
355
342
|
values:
|
|
356
343
|
'false': Oficializuota
|
|
357
344
|
'true': Neoficializuota
|
|
358
|
-
participatory_space_private_users:
|
|
359
|
-
user_invitation_sent_at_not_null:
|
|
360
|
-
values:
|
|
361
|
-
'false': Neišsiųstas
|
|
362
345
|
private_space_eq:
|
|
363
346
|
label: Privatus
|
|
364
347
|
values:
|
|
@@ -421,7 +404,6 @@ lt:
|
|
|
421
404
|
impersonate: Naudoti pakaitinę tapatybę
|
|
422
405
|
impersonate_existing_managed_user: Tvarkyti dalyvį "%{name}"
|
|
423
406
|
impersonate_existing_user: Tvarkyti dalyvį "%{name}"
|
|
424
|
-
impersonate_new_managed_user: Tvarkyti naujo dalyvio duomenis
|
|
425
407
|
imports:
|
|
426
408
|
and: ir
|
|
427
409
|
data_errors:
|
|
@@ -483,6 +465,10 @@ lt:
|
|
|
483
465
|
new:
|
|
484
466
|
explanation: Tvarkomi dalyviai gali būti paaukštinti į standartinius dalyvius. Tai reiškia, kad jie bus pakviesti į platformą ir nebegalėsite jų tvarkyti. Pakviesti naudotojai gaus kvietimą prisijungti el. paštu.
|
|
485
467
|
promote: Paaukštinti
|
|
468
|
+
members_csv_imports:
|
|
469
|
+
new:
|
|
470
|
+
csv_upload:
|
|
471
|
+
title: Įkelkite savo CSV rinkmeną
|
|
486
472
|
menu:
|
|
487
473
|
admin_log: Administratoriaus veiklos žurnalas
|
|
488
474
|
admins: Administratoriai
|
|
@@ -540,8 +526,6 @@ lt:
|
|
|
540
526
|
sent_to: Išsiųsta
|
|
541
527
|
subject: Tema
|
|
542
528
|
name: Naujienlaiškis
|
|
543
|
-
participatory_space_private_user:
|
|
544
|
-
name: Dalivaujamosios erdvės privatus dalyvis
|
|
545
529
|
scope:
|
|
546
530
|
fields:
|
|
547
531
|
name: Vardas
|
|
@@ -666,7 +650,6 @@ lt:
|
|
|
666
650
|
send_to_user:
|
|
667
651
|
sent_successfully: Naujienlaiškis sėkmingai išsiųtas %{email}
|
|
668
652
|
show:
|
|
669
|
-
preview: Peržiūra
|
|
670
653
|
select_recipients_to_deliver: Pasirinkti gavėjus, kuriems išsiųsti
|
|
671
654
|
send_me_a_test_email: Siųsti man bandomąjį el. laišką
|
|
672
655
|
subject: Tema
|
|
@@ -721,30 +704,6 @@ lt:
|
|
|
721
704
|
update:
|
|
722
705
|
error: Atnaujinant šią organizaciją iškilo problema.
|
|
723
706
|
success: Organizacija atnaujinta.
|
|
724
|
-
participatory_space_private_users:
|
|
725
|
-
create:
|
|
726
|
-
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
|
727
|
-
success: Dalyvaujamosios erdvės privataus dalyvio prieiga buvo sukurta sėkmingai.
|
|
728
|
-
destroy:
|
|
729
|
-
error: Ištrinant privatų dalyvį iš dalyvaujamosios erdvės kilo problema.
|
|
730
|
-
success: Dalyvaujamojo proceso erdvės privataus dalyvio prieiga panaikinta.
|
|
731
|
-
edit:
|
|
732
|
-
update: Atnaujinti
|
|
733
|
-
index:
|
|
734
|
-
title: Dalyvaujamosios erdvės privatus dalyvis
|
|
735
|
-
new:
|
|
736
|
-
create: Sukurti
|
|
737
|
-
title: Naujas dalyvaujamosios erdvės privatus dalyvis.
|
|
738
|
-
participatory_space_private_users_csv_imports:
|
|
739
|
-
new:
|
|
740
|
-
csv_upload:
|
|
741
|
-
title: Įkelkite savo CSV rinkmeną
|
|
742
|
-
destroy:
|
|
743
|
-
button: Ištrinti visus privačius dalyvius
|
|
744
|
-
confirm: Ar tikrai norite ištrinti visus privačius dalyvius? Atlikus šį veiksmą nebebus įmanoma sugražinti šių dalyvių į platformą.
|
|
745
|
-
empty: Neturite privačių dalyvių.
|
|
746
|
-
explanation: Turite %{count} privačių dalyvių.
|
|
747
|
-
title: Ištrinti privačius dalyvius
|
|
748
707
|
reminders:
|
|
749
708
|
create:
|
|
750
709
|
error: Kuriant priminimus iškilo problema.
|
|
@@ -813,7 +772,6 @@ lt:
|
|
|
813
772
|
title: Nauja tema
|
|
814
773
|
update:
|
|
815
774
|
error: Atnaujinant šią temą iškilo problema.
|
|
816
|
-
success: Tema atnaujinta
|
|
817
775
|
static_pages:
|
|
818
776
|
create:
|
|
819
777
|
error: Kuriant naują puslapį iškilo problema.
|
|
@@ -837,14 +795,9 @@ lt:
|
|
|
837
795
|
error: Atnaujinant šį puslapį iškilo problema.
|
|
838
796
|
success: Puslapis atnaujintas.
|
|
839
797
|
titles:
|
|
840
|
-
area_types: Erdvės tipas
|
|
841
798
|
areas: Aplinkos
|
|
842
799
|
authorization_workflows: Verifikacijos metodai
|
|
843
|
-
impersonations: Dalyvių tvarkymas
|
|
844
|
-
pages: Puslapiai
|
|
845
800
|
panel: Administratorius
|
|
846
|
-
participants: Dalyviai
|
|
847
|
-
scope_types: Apimties tipai
|
|
848
801
|
scopes: Apimtys
|
|
849
802
|
users:
|
|
850
803
|
create:
|
data/config/locales/lv.yml
CHANGED
|
@@ -57,11 +57,6 @@ lv:
|
|
|
57
57
|
welcome_notification_body: Sveiciena paziņojuma pamatteksts
|
|
58
58
|
welcome_notification_subject: Sveiciena paziņojuma temats
|
|
59
59
|
youtube_handler: YouTube apdarinātājs
|
|
60
|
-
participatory_space_private_user:
|
|
61
|
-
email: E-pasts
|
|
62
|
-
name: Nosaukums
|
|
63
|
-
participatory_space_private_user_csv_import:
|
|
64
|
-
file: Fails
|
|
65
60
|
scope:
|
|
66
61
|
code: Kods
|
|
67
62
|
name: Nosaukums
|
|
@@ -217,10 +212,6 @@ lv:
|
|
|
217
212
|
values:
|
|
218
213
|
'false': Piešķirts oficiāls statuss
|
|
219
214
|
'true': Nav piešķirts oficiāls statuss
|
|
220
|
-
participatory_space_private_users:
|
|
221
|
-
user_invitation_sent_at_not_null:
|
|
222
|
-
values:
|
|
223
|
-
'false': Nav nosūtīts
|
|
224
215
|
private_space_eq:
|
|
225
216
|
label: Privāts
|
|
226
217
|
values:
|
|
@@ -269,7 +260,6 @@ lv:
|
|
|
269
260
|
impersonate: Uzdoties par
|
|
270
261
|
impersonate_existing_managed_user: Pārvaldīt dalībnieku "%{name}"
|
|
271
262
|
impersonate_existing_user: Pārvaldīt dalībnieku "%{name}"
|
|
272
|
-
impersonate_new_managed_user: Pārvaldīt jaunu dalībnieku
|
|
273
263
|
managed_users:
|
|
274
264
|
promotion:
|
|
275
265
|
error: Pārvaldītā dalībnieka paaugstināšanas laikā radās problēma.
|
|
@@ -278,6 +268,10 @@ lv:
|
|
|
278
268
|
new:
|
|
279
269
|
explanation: Pārvaldītos dalībniekus var paaugstināt par standarta dalībniekiem. Tas nozīmē, ka viņi tiks uzaicināti uz lietojumprogrammu un jūs viņus vairs nevarēsiet pārvaldīt. Uzaicinātais dalībnieks saņems e-pastu ar jūsu ielūgumu.
|
|
280
270
|
promote: Paaugstināt
|
|
271
|
+
members_csv_imports:
|
|
272
|
+
new:
|
|
273
|
+
csv_upload:
|
|
274
|
+
title: Augšupielādējiet savu CSV failu
|
|
281
275
|
menu:
|
|
282
276
|
admin_log: Administratora darbību žurnāls
|
|
283
277
|
admins: Administratori
|
|
@@ -330,8 +324,6 @@ lv:
|
|
|
330
324
|
sent_to: Nosūtīts
|
|
331
325
|
subject: Temats
|
|
332
326
|
name: Informatīvais biļetens
|
|
333
|
-
participatory_space_private_user:
|
|
334
|
-
name: Līdzdalības telpas privāts dalībnieks
|
|
335
327
|
scope:
|
|
336
328
|
fields:
|
|
337
329
|
name: Nosaukums
|
|
@@ -407,7 +399,6 @@ lv:
|
|
|
407
399
|
title: Izvēlieties adresātus, kuriem nosūtīt
|
|
408
400
|
warning: "<strong>Uzmanību:</strong> šis informatīvais biļetens tiks nosūtīts tikai tiem lietotājiem, kuri savos paziņojumu iestatījumos ir aktivizējuši <em>Vēlos saņemt informatīvos biļetenus</em>."
|
|
409
401
|
show:
|
|
410
|
-
preview: Priekšskatīt
|
|
411
402
|
select_recipients_to_deliver: Izvēlieties adresātus, kuriem nosūtīt
|
|
412
403
|
subject: Temats
|
|
413
404
|
update:
|
|
@@ -445,24 +436,6 @@ lv:
|
|
|
445
436
|
update:
|
|
446
437
|
error: Šīs organizācijas atjaunināšanas laikā radās problēma.
|
|
447
438
|
success: Organizācija ir veiksmīgi atjaunināta.
|
|
448
|
-
participatory_space_private_users:
|
|
449
|
-
create:
|
|
450
|
-
error: Pievienojot privāto dalībnieku šai līdzdalības telpai, radās problēma.
|
|
451
|
-
success: Privāto dalībnieku piekļuve līdzdalības telpai ir veiksmīgi izveidota.
|
|
452
|
-
destroy:
|
|
453
|
-
error: Dzēšot privāto dalībnieku no šīs līdzdalības telpas, radās problēma.
|
|
454
|
-
success: Privāto dalībnieku piekļuve līdzdalības telpai ir veiksmīgi dzēsta.
|
|
455
|
-
edit:
|
|
456
|
-
update: Atjaunināt
|
|
457
|
-
index:
|
|
458
|
-
title: Līdzdalības telpas privāts dalībnieks
|
|
459
|
-
new:
|
|
460
|
-
create: Izveidot
|
|
461
|
-
title: Jauns līdzdalības telpas privāts dalībnieks
|
|
462
|
-
participatory_space_private_users_csv_imports:
|
|
463
|
-
new:
|
|
464
|
-
csv_upload:
|
|
465
|
-
title: Augšupielādējiet savu CSV failu
|
|
466
439
|
resource_permissions:
|
|
467
440
|
edit:
|
|
468
441
|
submit: Iesniegt
|
|
@@ -513,7 +486,6 @@ lv:
|
|
|
513
486
|
title: Jauna tēma
|
|
514
487
|
update:
|
|
515
488
|
error: Šīs tēmas atjaunināšanas laikā radās problēma.
|
|
516
|
-
success: Tēma ir veiksmīgi atjaunināta
|
|
517
489
|
static_pages:
|
|
518
490
|
create:
|
|
519
491
|
error: Jaunas lapas izveides laikā radās problēma.
|
|
@@ -534,13 +506,8 @@ lv:
|
|
|
534
506
|
update:
|
|
535
507
|
error: Šīs lapas atjaunināšanas laikā radās problēma.
|
|
536
508
|
titles:
|
|
537
|
-
area_types: Jomu veidi
|
|
538
509
|
areas: Jomas
|
|
539
510
|
authorization_workflows: Verifikācijas metodes
|
|
540
|
-
impersonations: Dalībnieku pārvaldība
|
|
541
|
-
pages: Lapas
|
|
542
|
-
participants: Dalībnieki
|
|
543
|
-
scope_types: Tvēruma veidi
|
|
544
511
|
scopes: Darbības tvērums
|
|
545
512
|
users:
|
|
546
513
|
create:
|
data/config/locales/nl.yml
CHANGED
|
@@ -39,7 +39,6 @@ nl:
|
|
|
39
39
|
default_locale: Standaard taal
|
|
40
40
|
description: Beschrijving
|
|
41
41
|
enable_omnipresent_banner: Toon permanente header
|
|
42
|
-
enable_participatory_space_filters: Schakel filters in voor de participatieve ruimte
|
|
43
42
|
facebook_handler: Facebook naam
|
|
44
43
|
favicon: Favicon
|
|
45
44
|
force_authentication: Verplicht aanmelden
|
|
@@ -78,11 +77,6 @@ nl:
|
|
|
78
77
|
welcome_notification_body: Tekst van de welkomstmelding
|
|
79
78
|
welcome_notification_subject: Welkomstmelding onderwerp
|
|
80
79
|
youtube_handler: YouTube gebruikersnaam
|
|
81
|
-
participatory_space_private_user:
|
|
82
|
-
email: E-mail
|
|
83
|
-
name: Naam
|
|
84
|
-
participatory_space_private_user_csv_import:
|
|
85
|
-
file: Bestand
|
|
86
80
|
scope:
|
|
87
81
|
code: Code
|
|
88
82
|
name: Naam
|
|
@@ -145,8 +139,6 @@ nl:
|
|
|
145
139
|
import: Importeren
|
|
146
140
|
newsletter:
|
|
147
141
|
new: Nieuwe nieuwsbrief
|
|
148
|
-
participatory_space_private_user:
|
|
149
|
-
new: Nieuwe privégebruiker van de inspraakruimte
|
|
150
142
|
per_page: Per pagina
|
|
151
143
|
share: Deel
|
|
152
144
|
user:
|
|
@@ -302,10 +294,6 @@ nl:
|
|
|
302
294
|
values:
|
|
303
295
|
'false': Gevalideerd
|
|
304
296
|
'true': Niet gevalideerd
|
|
305
|
-
participatory_space_private_users:
|
|
306
|
-
user_invitation_sent_at_not_null:
|
|
307
|
-
values:
|
|
308
|
-
'false': Niet verzonden
|
|
309
297
|
private_space_eq:
|
|
310
298
|
label: Privé
|
|
311
299
|
values:
|
|
@@ -366,7 +354,6 @@ nl:
|
|
|
366
354
|
impersonate: Nabootsen
|
|
367
355
|
impersonate_existing_managed_user: Beheer deelnemer "%{name}"
|
|
368
356
|
impersonate_existing_user: Beheer deelnemer "%{name}"
|
|
369
|
-
impersonate_new_managed_user: Beheer nieuwe deelnemer
|
|
370
357
|
imports:
|
|
371
358
|
and: en
|
|
372
359
|
data_errors:
|
|
@@ -417,6 +404,10 @@ nl:
|
|
|
417
404
|
new:
|
|
418
405
|
explanation: Beheerde deelnemers kunnen worden gepromoveerd tot standaarddeelnemers. Dit betekent dat ze worden uitgenodigd voor de toepassing en dat u ze niet meer kunt beheren. De uitgenodigde deelnemer ontvangt een e-mail om uw uitnodiging te accepteren.
|
|
419
406
|
promote: Promoten
|
|
407
|
+
members_csv_imports:
|
|
408
|
+
new:
|
|
409
|
+
csv_upload:
|
|
410
|
+
title: Upload uw CSV-bestand
|
|
420
411
|
menu:
|
|
421
412
|
admin_log: Admin activiteitenlogboek
|
|
422
413
|
admins: Admins
|
|
@@ -471,8 +462,6 @@ nl:
|
|
|
471
462
|
sent_to: Verzonden aan
|
|
472
463
|
subject: Onderwerp
|
|
473
464
|
name: Nieuwsbrief
|
|
474
|
-
participatory_space_private_user:
|
|
475
|
-
name: Participerende ruimte privé deelnemer
|
|
476
465
|
scope:
|
|
477
466
|
fields:
|
|
478
467
|
name: Naam
|
|
@@ -589,7 +578,6 @@ nl:
|
|
|
589
578
|
title: Selecteer ontvangers
|
|
590
579
|
warning: "<strong>Opgelet:</strong> Deze nieuwsbrief zal alleen worden verzonden naar gebruikers die <em>Ik wil nieuwsbrieven ontvangen</em> in hun notificatie instellingen hebben geactiveerd."
|
|
591
580
|
show:
|
|
592
|
-
preview: Voorbeeld
|
|
593
581
|
select_recipients_to_deliver: Selecteer ontvangers
|
|
594
582
|
subject: Onderwerpen
|
|
595
583
|
update:
|
|
@@ -635,29 +623,6 @@ nl:
|
|
|
635
623
|
update:
|
|
636
624
|
error: Er is een fout opgetreden bij het bijwerken van deze organisatie.
|
|
637
625
|
success: Organisatie is succesvol bijgewerkt.
|
|
638
|
-
participatory_space_private_users:
|
|
639
|
-
create:
|
|
640
|
-
error: Er is een probleem opgetreden bij het toevoegen van een privédeelnemer aan deze deelruimte.
|
|
641
|
-
success: De toegang van de privé deelnemer voor de burgerinspraak is succesvol aangemaakt.
|
|
642
|
-
destroy:
|
|
643
|
-
error: Er was een probleem met het verwijderen van een privé-deelnemer voor deze participatieruimte.
|
|
644
|
-
success: De toegang van de privé deelnemer voor burgerinspraak is met succes verwijderd.
|
|
645
|
-
edit:
|
|
646
|
-
update: Bijwerken
|
|
647
|
-
index:
|
|
648
|
-
title: Participerende ruimte voor privé deelnemer
|
|
649
|
-
new:
|
|
650
|
-
create: creëren
|
|
651
|
-
title: Nieuwe privé deelnemer burgerinspraak.
|
|
652
|
-
participatory_space_private_users_csv_imports:
|
|
653
|
-
new:
|
|
654
|
-
csv_upload:
|
|
655
|
-
title: Upload uw CSV-bestand
|
|
656
|
-
destroy:
|
|
657
|
-
button: Verwijder alle privé deelnemers
|
|
658
|
-
empty: Je hebt geen privé deelnemers.
|
|
659
|
-
explanation: Je hebt %{count} privédeelnemers.
|
|
660
|
-
title: Verwijder privé deelnemer
|
|
661
626
|
reminders:
|
|
662
627
|
create:
|
|
663
628
|
error: Er is een probleem opgetreden bij het maken van herinneringen.
|
|
@@ -720,7 +685,6 @@ nl:
|
|
|
720
685
|
title: Nieuw onderwerp
|
|
721
686
|
update:
|
|
722
687
|
error: Er is een fout opgetreden bij het bijwerken van dit onderwerp.
|
|
723
|
-
success: Onderwerp met succes bijgewerkt
|
|
724
688
|
static_pages:
|
|
725
689
|
create:
|
|
726
690
|
error: Er is een fout opgetreden bij het maken van een nieuwe pagina.
|
|
@@ -741,14 +705,9 @@ nl:
|
|
|
741
705
|
update:
|
|
742
706
|
error: Er is een fout opgetreden bij het bijwerken van deze pagina.
|
|
743
707
|
titles:
|
|
744
|
-
area_types: Pagina types
|
|
745
708
|
areas: Onderwerpen
|
|
746
709
|
authorization_workflows: Verificatiemethoden
|
|
747
|
-
impersonations: Beheer van deelnemers
|
|
748
|
-
pages: Pagina's
|
|
749
710
|
panel: Admin
|
|
750
|
-
participants: Deelnemers
|
|
751
|
-
scope_types: Scope types
|
|
752
711
|
scopes: Scopes
|
|
753
712
|
users:
|
|
754
713
|
create:
|