decidim-admin 0.31.3 → 0.32.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 +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/create_attachment.rb +1 -0
- 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 -49
- data/config/locales/bg.yml +4 -55
- data/config/locales/bs-BA.yml +0 -24
- data/config/locales/ca-IT.yml +127 -100
- data/config/locales/ca.yml +127 -100
- data/config/locales/cs.yml +122 -94
- data/config/locales/de.yml +109 -87
- data/config/locales/el.yml +11 -45
- data/config/locales/en.yml +126 -98
- data/config/locales/eo.yml +0 -7
- data/config/locales/es-MX.yml +126 -99
- data/config/locales/es-PY.yml +126 -99
- data/config/locales/es.yml +126 -99
- data/config/locales/eu.yml +126 -99
- data/config/locales/fi-plain.yml +132 -87
- data/config/locales/fi.yml +132 -87
- data/config/locales/fr-CA.yml +87 -91
- data/config/locales/fr.yml +87 -91
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +4 -41
- data/config/locales/he-IL.yml +0 -5
- data/config/locales/hu.yml +4 -52
- data/config/locales/id-ID.yml +4 -34
- data/config/locales/is-IS.yml +1 -16
- data/config/locales/it.yml +4 -68
- data/config/locales/ja.yml +124 -99
- data/config/locales/kaa.yml +0 -16
- data/config/locales/ko.yml +0 -40
- data/config/locales/lb.yml +4 -41
- data/config/locales/lt.yml +4 -52
- data/config/locales/lv.yml +4 -38
- data/config/locales/nl.yml +4 -46
- data/config/locales/no.yml +4 -46
- data/config/locales/pl.yml +4 -54
- data/config/locales/pt-BR.yml +109 -97
- data/config/locales/pt.yml +4 -42
- data/config/locales/ro-RO.yml +9 -51
- data/config/locales/ru.yml +4 -35
- data/config/locales/sk.yml +4 -38
- data/config/locales/sl.yml +0 -7
- data/config/locales/sq-AL.yml +0 -21
- data/config/locales/sr-CS.yml +0 -24
- data/config/locales/sv.yml +74 -87
- data/config/locales/th-TH.yml +0 -8
- data/config/locales/tr-TR.yml +21 -58
- data/config/locales/uk.yml +0 -26
- data/config/locales/val-ES.yml +0 -1
- data/config/locales/zh-CN.yml +4 -38
- data/config/locales/zh-TW.yml +4 -52
- 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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
ko:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -67,11 +66,6 @@ ko:
|
|
|
67
66
|
twitter_handler: X handler
|
|
68
67
|
warning_color: 경고
|
|
69
68
|
youtube_handler: YouTube handler
|
|
70
|
-
participatory_space_private_user:
|
|
71
|
-
email: 이메일
|
|
72
|
-
name: 이름
|
|
73
|
-
participatory_space_private_user_csv_import:
|
|
74
|
-
file: 파일
|
|
75
69
|
scope:
|
|
76
70
|
code: 코드
|
|
77
71
|
name: 이름
|
|
@@ -109,10 +103,6 @@ ko:
|
|
|
109
103
|
attributes:
|
|
110
104
|
official_img_footer:
|
|
111
105
|
allowed_file_content_types: 잘못된 이미지 파일
|
|
112
|
-
participatory_space_private_user_csv_import:
|
|
113
|
-
attributes:
|
|
114
|
-
file:
|
|
115
|
-
malformed: 잘못된 형식의 가져오기 파일입니다. 설명서를 잘 읽고 UTF-8이 인코딩되었는지 확인하십시오.
|
|
116
106
|
user_group_csv_verification:
|
|
117
107
|
attributes:
|
|
118
108
|
file:
|
|
@@ -148,8 +138,6 @@ ko:
|
|
|
148
138
|
import: 가져오기
|
|
149
139
|
newsletter:
|
|
150
140
|
new: 새 뉴스레터
|
|
151
|
-
participatory_space_private_user:
|
|
152
|
-
new: 새 참여 공간 비공개 사용자
|
|
153
141
|
per_page: 페이지 당
|
|
154
142
|
send_me_a_test_email: 나에게 테스트 메일 보내기
|
|
155
143
|
share: 공유
|
|
@@ -305,10 +293,6 @@ ko:
|
|
|
305
293
|
label: 유형
|
|
306
294
|
officialized_at_null:
|
|
307
295
|
label: 상태
|
|
308
|
-
participatory_space_private_users:
|
|
309
|
-
user_invitation_sent_at_not_null:
|
|
310
|
-
values:
|
|
311
|
-
'false': 전송되지 않음
|
|
312
296
|
private_space_eq:
|
|
313
297
|
label: 비공개
|
|
314
298
|
values:
|
|
@@ -364,7 +348,6 @@ ko:
|
|
|
364
348
|
new:
|
|
365
349
|
impersonate_existing_managed_user: 참가자 "% {name}" 관리
|
|
366
350
|
impersonate_existing_user: 참가자 "% {name}" 관리
|
|
367
|
-
impersonate_new_managed_user: 새로운 참여자 관리
|
|
368
351
|
imports:
|
|
369
352
|
and: 그리고
|
|
370
353
|
new:
|
|
@@ -428,8 +411,6 @@ ko:
|
|
|
428
411
|
sent_to: 다음에 전송하였습니다
|
|
429
412
|
subject: 주제
|
|
430
413
|
name: 뉴스 레터
|
|
431
|
-
participatory_space_private_user:
|
|
432
|
-
name: 참여공간 비공개참여
|
|
433
414
|
scope:
|
|
434
415
|
fields:
|
|
435
416
|
name: 이름
|
|
@@ -528,19 +509,6 @@ ko:
|
|
|
528
509
|
hidden: 숨겨짐
|
|
529
510
|
show: 표시
|
|
530
511
|
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
512
|
reminders:
|
|
545
513
|
create:
|
|
546
514
|
error: 리마인더를 만드는 중 문제가 발생했습니다.
|
|
@@ -574,9 +542,6 @@ ko:
|
|
|
574
542
|
add_images: 이미지 추가
|
|
575
543
|
edit_images: 이미지 편집
|
|
576
544
|
gallery_legend: 이미지 갤러리 추가하기 (선택사항)
|
|
577
|
-
static_page_topics:
|
|
578
|
-
update:
|
|
579
|
-
success: 주제가 성공적으로 업데이트되었습니다
|
|
580
545
|
static_pages:
|
|
581
546
|
create:
|
|
582
547
|
error: 새 페이지를 생성하는 도중 문제가 생겼습니다.
|
|
@@ -600,15 +565,10 @@ ko:
|
|
|
600
565
|
error: 이 페이지를 업데이트하는 동안 문제가 발생했습니다.
|
|
601
566
|
success: 페이지가 성공적으로 업데이트되었습니다.
|
|
602
567
|
titles:
|
|
603
|
-
area_types: 영역 유형
|
|
604
568
|
areas: 영역
|
|
605
569
|
authorization_workflows: 인증 방식
|
|
606
|
-
impersonations: 참가자 관리
|
|
607
570
|
menu: 메뉴
|
|
608
|
-
page_topics: 주제
|
|
609
|
-
pages: 페이지
|
|
610
571
|
panel: 관리자
|
|
611
|
-
scope_types: 범위 종류
|
|
612
572
|
scopes: 범위
|
|
613
573
|
users:
|
|
614
574
|
form:
|
data/config/locales/lb.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
lb:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -39,7 +38,6 @@ lb:
|
|
|
39
38
|
default_locale: Standardgebietsschema
|
|
40
39
|
description: Beschreibung
|
|
41
40
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
|
42
|
-
enable_participatory_space_filters: Bereichs- und Gebietsfilter aktivieren
|
|
43
41
|
facebook_handler: Facebook-Handler
|
|
44
42
|
favicon: Icon
|
|
45
43
|
force_authentication: Authentifizierung erzwingen
|
|
@@ -78,11 +76,6 @@ lb:
|
|
|
78
76
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
|
79
77
|
welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
|
|
80
78
|
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
79
|
scope:
|
|
87
80
|
code: Code
|
|
88
81
|
name: Name
|
|
@@ -145,8 +138,6 @@ lb:
|
|
|
145
138
|
import: Importieren
|
|
146
139
|
newsletter:
|
|
147
140
|
new: Neuer Newsletter
|
|
148
|
-
participatory_space_private_user:
|
|
149
|
-
new: Neuer privater Benutzer
|
|
150
141
|
per_page: Pro Seite
|
|
151
142
|
share: Teilen
|
|
152
143
|
area_types:
|
|
@@ -291,10 +282,6 @@ lb:
|
|
|
291
282
|
values:
|
|
292
283
|
'false': Offizialisiert
|
|
293
284
|
'true': Nicht offiziell
|
|
294
|
-
participatory_space_private_users:
|
|
295
|
-
user_invitation_sent_at_not_null:
|
|
296
|
-
values:
|
|
297
|
-
'false': Nicht gesendet
|
|
298
285
|
private_space_eq:
|
|
299
286
|
label: Privat
|
|
300
287
|
values:
|
|
@@ -353,7 +340,6 @@ lb:
|
|
|
353
340
|
impersonate: Imitieren
|
|
354
341
|
impersonate_existing_managed_user: Angenommen, dass der Benutzer "%{name}" verwaltet wird
|
|
355
342
|
impersonate_existing_user: Imitieren von Benutzer "%{name}"
|
|
356
|
-
impersonate_new_managed_user: Sich als neuer verwalteter Benutzer ausgeben
|
|
357
343
|
imports:
|
|
358
344
|
new:
|
|
359
345
|
accepted_mime_types:
|
|
@@ -370,6 +356,10 @@ lb:
|
|
|
370
356
|
new:
|
|
371
357
|
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
358
|
promote: Fördern
|
|
359
|
+
members_csv_imports:
|
|
360
|
+
new:
|
|
361
|
+
csv_upload:
|
|
362
|
+
title: Laden Sie Ihre CSV-Datei hoch
|
|
373
363
|
menu:
|
|
374
364
|
admin_log: Admin-Aktivitätsprotokoll
|
|
375
365
|
admins: Admins
|
|
@@ -424,8 +414,6 @@ lb:
|
|
|
424
414
|
sent_to: Gesendet an
|
|
425
415
|
subject: Gegenstand
|
|
426
416
|
name: Newsletter
|
|
427
|
-
participatory_space_private_user:
|
|
428
|
-
name: Participatory Space privater Benutzer
|
|
429
417
|
scope:
|
|
430
418
|
fields:
|
|
431
419
|
name: Name
|
|
@@ -542,7 +530,6 @@ lb:
|
|
|
542
530
|
title: Empfänger auswählen
|
|
543
531
|
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
532
|
show:
|
|
545
|
-
preview: Vorschau
|
|
546
533
|
select_recipients_to_deliver: Empfänger auswählen
|
|
547
534
|
subject: Gegenstand
|
|
548
535
|
update:
|
|
@@ -588,24 +575,6 @@ lb:
|
|
|
588
575
|
update:
|
|
589
576
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
|
590
577
|
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
578
|
resource_permissions:
|
|
610
579
|
edit:
|
|
611
580
|
submit: einreichen
|
|
@@ -659,7 +628,6 @@ lb:
|
|
|
659
628
|
title: Neues Thema
|
|
660
629
|
update:
|
|
661
630
|
error: Beim Aktualisieren dieses Themas ist ein Fehler aufgetreten.
|
|
662
|
-
success: Thema erfolgreich aktualisiert
|
|
663
631
|
static_pages:
|
|
664
632
|
create:
|
|
665
633
|
error: Beim Erstellen einer neuen Seite ist ein Fehler aufgetreten.
|
|
@@ -680,14 +648,9 @@ lb:
|
|
|
680
648
|
update:
|
|
681
649
|
error: Beim Aktualisieren dieser Seite ist ein Fehler aufgetreten.
|
|
682
650
|
titles:
|
|
683
|
-
area_types: Bereichstypen
|
|
684
651
|
areas: Bereiche
|
|
685
652
|
authorization_workflows: Verifizierungsmethoden
|
|
686
|
-
impersonations: Benutzerverwaltung
|
|
687
|
-
pages: Seiten
|
|
688
653
|
panel: Admin
|
|
689
|
-
participants: Teilnehmer
|
|
690
|
-
scope_types: Bereichstypen
|
|
691
654
|
scopes: Bereiche
|
|
692
655
|
users:
|
|
693
656
|
create:
|
data/config/locales/lt.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
lt:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -47,7 +46,6 @@ lt:
|
|
|
47
46
|
default_locale: Numatytoji lokalė
|
|
48
47
|
description: Aprašymas
|
|
49
48
|
enable_omnipresent_banner: Rodyti visur naudojamą reklamjuostę
|
|
50
|
-
enable_participatory_space_filters: Leisti dalyvaujamosios erdvės filtrus
|
|
51
49
|
facebook_handler: '„Facebook“ tvarkyklė'
|
|
52
50
|
favicon: Piktograma
|
|
53
51
|
force_authentication: Priversti autentifikuotis
|
|
@@ -87,11 +85,6 @@ lt:
|
|
|
87
85
|
welcome_notification_body: Pasisveikinimo pranešimo tekstas
|
|
88
86
|
welcome_notification_subject: Pasisveikinimo pranešimo antraštė
|
|
89
87
|
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
88
|
scope:
|
|
96
89
|
code: Kodas
|
|
97
90
|
name: Pavadinimas
|
|
@@ -132,10 +125,6 @@ lt:
|
|
|
132
125
|
attributes:
|
|
133
126
|
official_img_footer:
|
|
134
127
|
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
128
|
user_group_csv_verification:
|
|
140
129
|
attributes:
|
|
141
130
|
file:
|
|
@@ -173,8 +162,6 @@ lt:
|
|
|
173
162
|
import: Importuoti
|
|
174
163
|
newsletter:
|
|
175
164
|
new: Naujas naujienlaiškis
|
|
176
|
-
participatory_space_private_user:
|
|
177
|
-
new: Naujas dalyvaujamosios erdvės privatus naudotojas
|
|
178
165
|
per_page: Per puslapį
|
|
179
166
|
send_me_a_test_email: Siųsti man bandomąjį el. laišką
|
|
180
167
|
share: Dalintis
|
|
@@ -295,7 +282,6 @@ lt:
|
|
|
295
282
|
title: 'Pridėti komponentą: %{name}'
|
|
296
283
|
publish:
|
|
297
284
|
success: Komponentas sėkmingai publikuotas.
|
|
298
|
-
title: Komponentai
|
|
299
285
|
unpublish:
|
|
300
286
|
success: Komponentas nebe publikuojamas.
|
|
301
287
|
update:
|
|
@@ -355,10 +341,6 @@ lt:
|
|
|
355
341
|
values:
|
|
356
342
|
'false': Oficializuota
|
|
357
343
|
'true': Neoficializuota
|
|
358
|
-
participatory_space_private_users:
|
|
359
|
-
user_invitation_sent_at_not_null:
|
|
360
|
-
values:
|
|
361
|
-
'false': Neišsiųstas
|
|
362
344
|
private_space_eq:
|
|
363
345
|
label: Privatus
|
|
364
346
|
values:
|
|
@@ -421,7 +403,6 @@ lt:
|
|
|
421
403
|
impersonate: Naudoti pakaitinę tapatybę
|
|
422
404
|
impersonate_existing_managed_user: Tvarkyti dalyvį "%{name}"
|
|
423
405
|
impersonate_existing_user: Tvarkyti dalyvį "%{name}"
|
|
424
|
-
impersonate_new_managed_user: Tvarkyti naujo dalyvio duomenis
|
|
425
406
|
imports:
|
|
426
407
|
and: ir
|
|
427
408
|
data_errors:
|
|
@@ -483,6 +464,10 @@ lt:
|
|
|
483
464
|
new:
|
|
484
465
|
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
466
|
promote: Paaukštinti
|
|
467
|
+
members_csv_imports:
|
|
468
|
+
new:
|
|
469
|
+
csv_upload:
|
|
470
|
+
title: Įkelkite savo CSV rinkmeną
|
|
486
471
|
menu:
|
|
487
472
|
admin_log: Administratoriaus veiklos žurnalas
|
|
488
473
|
admins: Administratoriai
|
|
@@ -540,8 +525,6 @@ lt:
|
|
|
540
525
|
sent_to: Išsiųsta
|
|
541
526
|
subject: Tema
|
|
542
527
|
name: Naujienlaiškis
|
|
543
|
-
participatory_space_private_user:
|
|
544
|
-
name: Dalivaujamosios erdvės privatus dalyvis
|
|
545
528
|
scope:
|
|
546
529
|
fields:
|
|
547
530
|
name: Vardas
|
|
@@ -666,7 +649,6 @@ lt:
|
|
|
666
649
|
send_to_user:
|
|
667
650
|
sent_successfully: Naujienlaiškis sėkmingai išsiųtas %{email}
|
|
668
651
|
show:
|
|
669
|
-
preview: Peržiūra
|
|
670
652
|
select_recipients_to_deliver: Pasirinkti gavėjus, kuriems išsiųsti
|
|
671
653
|
send_me_a_test_email: Siųsti man bandomąjį el. laišką
|
|
672
654
|
subject: Tema
|
|
@@ -721,30 +703,6 @@ lt:
|
|
|
721
703
|
update:
|
|
722
704
|
error: Atnaujinant šią organizaciją iškilo problema.
|
|
723
705
|
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
706
|
reminders:
|
|
749
707
|
create:
|
|
750
708
|
error: Kuriant priminimus iškilo problema.
|
|
@@ -813,7 +771,6 @@ lt:
|
|
|
813
771
|
title: Nauja tema
|
|
814
772
|
update:
|
|
815
773
|
error: Atnaujinant šią temą iškilo problema.
|
|
816
|
-
success: Tema atnaujinta
|
|
817
774
|
static_pages:
|
|
818
775
|
create:
|
|
819
776
|
error: Kuriant naują puslapį iškilo problema.
|
|
@@ -837,14 +794,9 @@ lt:
|
|
|
837
794
|
error: Atnaujinant šį puslapį iškilo problema.
|
|
838
795
|
success: Puslapis atnaujintas.
|
|
839
796
|
titles:
|
|
840
|
-
area_types: Erdvės tipas
|
|
841
797
|
areas: Aplinkos
|
|
842
798
|
authorization_workflows: Verifikacijos metodai
|
|
843
|
-
impersonations: Dalyvių tvarkymas
|
|
844
|
-
pages: Puslapiai
|
|
845
799
|
panel: Administratorius
|
|
846
|
-
participants: Dalyviai
|
|
847
|
-
scope_types: Apimties tipai
|
|
848
800
|
scopes: Apimtys
|
|
849
801
|
users:
|
|
850
802
|
create:
|
data/config/locales/lv.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
lv:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -57,11 +56,6 @@ lv:
|
|
|
57
56
|
welcome_notification_body: Sveiciena paziņojuma pamatteksts
|
|
58
57
|
welcome_notification_subject: Sveiciena paziņojuma temats
|
|
59
58
|
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
59
|
scope:
|
|
66
60
|
code: Kods
|
|
67
61
|
name: Nosaukums
|
|
@@ -217,10 +211,6 @@ lv:
|
|
|
217
211
|
values:
|
|
218
212
|
'false': Piešķirts oficiāls statuss
|
|
219
213
|
'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
214
|
private_space_eq:
|
|
225
215
|
label: Privāts
|
|
226
216
|
values:
|
|
@@ -269,7 +259,6 @@ lv:
|
|
|
269
259
|
impersonate: Uzdoties par
|
|
270
260
|
impersonate_existing_managed_user: Pārvaldīt dalībnieku "%{name}"
|
|
271
261
|
impersonate_existing_user: Pārvaldīt dalībnieku "%{name}"
|
|
272
|
-
impersonate_new_managed_user: Pārvaldīt jaunu dalībnieku
|
|
273
262
|
managed_users:
|
|
274
263
|
promotion:
|
|
275
264
|
error: Pārvaldītā dalībnieka paaugstināšanas laikā radās problēma.
|
|
@@ -278,6 +267,10 @@ lv:
|
|
|
278
267
|
new:
|
|
279
268
|
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
269
|
promote: Paaugstināt
|
|
270
|
+
members_csv_imports:
|
|
271
|
+
new:
|
|
272
|
+
csv_upload:
|
|
273
|
+
title: Augšupielādējiet savu CSV failu
|
|
281
274
|
menu:
|
|
282
275
|
admin_log: Administratora darbību žurnāls
|
|
283
276
|
admins: Administratori
|
|
@@ -330,8 +323,6 @@ lv:
|
|
|
330
323
|
sent_to: Nosūtīts
|
|
331
324
|
subject: Temats
|
|
332
325
|
name: Informatīvais biļetens
|
|
333
|
-
participatory_space_private_user:
|
|
334
|
-
name: Līdzdalības telpas privāts dalībnieks
|
|
335
326
|
scope:
|
|
336
327
|
fields:
|
|
337
328
|
name: Nosaukums
|
|
@@ -407,7 +398,6 @@ lv:
|
|
|
407
398
|
title: Izvēlieties adresātus, kuriem nosūtīt
|
|
408
399
|
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
400
|
show:
|
|
410
|
-
preview: Priekšskatīt
|
|
411
401
|
select_recipients_to_deliver: Izvēlieties adresātus, kuriem nosūtīt
|
|
412
402
|
subject: Temats
|
|
413
403
|
update:
|
|
@@ -445,24 +435,6 @@ lv:
|
|
|
445
435
|
update:
|
|
446
436
|
error: Šīs organizācijas atjaunināšanas laikā radās problēma.
|
|
447
437
|
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
438
|
resource_permissions:
|
|
467
439
|
edit:
|
|
468
440
|
submit: Iesniegt
|
|
@@ -513,7 +485,6 @@ lv:
|
|
|
513
485
|
title: Jauna tēma
|
|
514
486
|
update:
|
|
515
487
|
error: Šīs tēmas atjaunināšanas laikā radās problēma.
|
|
516
|
-
success: Tēma ir veiksmīgi atjaunināta
|
|
517
488
|
static_pages:
|
|
518
489
|
create:
|
|
519
490
|
error: Jaunas lapas izveides laikā radās problēma.
|
|
@@ -534,13 +505,8 @@ lv:
|
|
|
534
505
|
update:
|
|
535
506
|
error: Šīs lapas atjaunināšanas laikā radās problēma.
|
|
536
507
|
titles:
|
|
537
|
-
area_types: Jomu veidi
|
|
538
508
|
areas: Jomas
|
|
539
509
|
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
510
|
scopes: Darbības tvērums
|
|
545
511
|
users:
|
|
546
512
|
create:
|
data/config/locales/nl.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
nl:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -39,7 +38,6 @@ nl:
|
|
|
39
38
|
default_locale: Standaard taal
|
|
40
39
|
description: Beschrijving
|
|
41
40
|
enable_omnipresent_banner: Toon permanente header
|
|
42
|
-
enable_participatory_space_filters: Schakel filters in voor de participatieve ruimte
|
|
43
41
|
facebook_handler: Facebook naam
|
|
44
42
|
favicon: Favicon
|
|
45
43
|
force_authentication: Verplicht aanmelden
|
|
@@ -78,11 +76,6 @@ nl:
|
|
|
78
76
|
welcome_notification_body: Tekst van de welkomstmelding
|
|
79
77
|
welcome_notification_subject: Welkomstmelding onderwerp
|
|
80
78
|
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
79
|
scope:
|
|
87
80
|
code: Code
|
|
88
81
|
name: Naam
|
|
@@ -145,8 +138,6 @@ nl:
|
|
|
145
138
|
import: Importeren
|
|
146
139
|
newsletter:
|
|
147
140
|
new: Nieuwe nieuwsbrief
|
|
148
|
-
participatory_space_private_user:
|
|
149
|
-
new: Nieuwe privégebruiker van de inspraakruimte
|
|
150
141
|
per_page: Per pagina
|
|
151
142
|
share: Deel
|
|
152
143
|
user:
|
|
@@ -302,10 +293,6 @@ nl:
|
|
|
302
293
|
values:
|
|
303
294
|
'false': Gevalideerd
|
|
304
295
|
'true': Niet gevalideerd
|
|
305
|
-
participatory_space_private_users:
|
|
306
|
-
user_invitation_sent_at_not_null:
|
|
307
|
-
values:
|
|
308
|
-
'false': Niet verzonden
|
|
309
296
|
private_space_eq:
|
|
310
297
|
label: Privé
|
|
311
298
|
values:
|
|
@@ -366,7 +353,6 @@ nl:
|
|
|
366
353
|
impersonate: Nabootsen
|
|
367
354
|
impersonate_existing_managed_user: Beheer deelnemer "%{name}"
|
|
368
355
|
impersonate_existing_user: Beheer deelnemer "%{name}"
|
|
369
|
-
impersonate_new_managed_user: Beheer nieuwe deelnemer
|
|
370
356
|
imports:
|
|
371
357
|
and: en
|
|
372
358
|
data_errors:
|
|
@@ -417,6 +403,10 @@ nl:
|
|
|
417
403
|
new:
|
|
418
404
|
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
405
|
promote: Promoten
|
|
406
|
+
members_csv_imports:
|
|
407
|
+
new:
|
|
408
|
+
csv_upload:
|
|
409
|
+
title: Upload uw CSV-bestand
|
|
420
410
|
menu:
|
|
421
411
|
admin_log: Admin activiteitenlogboek
|
|
422
412
|
admins: Admins
|
|
@@ -471,8 +461,6 @@ nl:
|
|
|
471
461
|
sent_to: Verzonden aan
|
|
472
462
|
subject: Onderwerp
|
|
473
463
|
name: Nieuwsbrief
|
|
474
|
-
participatory_space_private_user:
|
|
475
|
-
name: Participerende ruimte privé deelnemer
|
|
476
464
|
scope:
|
|
477
465
|
fields:
|
|
478
466
|
name: Naam
|
|
@@ -589,7 +577,6 @@ nl:
|
|
|
589
577
|
title: Selecteer ontvangers
|
|
590
578
|
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
579
|
show:
|
|
592
|
-
preview: Voorbeeld
|
|
593
580
|
select_recipients_to_deliver: Selecteer ontvangers
|
|
594
581
|
subject: Onderwerpen
|
|
595
582
|
update:
|
|
@@ -635,29 +622,6 @@ nl:
|
|
|
635
622
|
update:
|
|
636
623
|
error: Er is een fout opgetreden bij het bijwerken van deze organisatie.
|
|
637
624
|
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
625
|
reminders:
|
|
662
626
|
create:
|
|
663
627
|
error: Er is een probleem opgetreden bij het maken van herinneringen.
|
|
@@ -720,7 +684,6 @@ nl:
|
|
|
720
684
|
title: Nieuw onderwerp
|
|
721
685
|
update:
|
|
722
686
|
error: Er is een fout opgetreden bij het bijwerken van dit onderwerp.
|
|
723
|
-
success: Onderwerp met succes bijgewerkt
|
|
724
687
|
static_pages:
|
|
725
688
|
create:
|
|
726
689
|
error: Er is een fout opgetreden bij het maken van een nieuwe pagina.
|
|
@@ -741,14 +704,9 @@ nl:
|
|
|
741
704
|
update:
|
|
742
705
|
error: Er is een fout opgetreden bij het bijwerken van deze pagina.
|
|
743
706
|
titles:
|
|
744
|
-
area_types: Pagina types
|
|
745
707
|
areas: Onderwerpen
|
|
746
708
|
authorization_workflows: Verificatiemethoden
|
|
747
|
-
impersonations: Beheer van deelnemers
|
|
748
|
-
pages: Pagina's
|
|
749
709
|
panel: Admin
|
|
750
|
-
participants: Deelnemers
|
|
751
|
-
scope_types: Scope types
|
|
752
710
|
scopes: Scopes
|
|
753
711
|
users:
|
|
754
712
|
create:
|