decidim-admin 0.31.6 → 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_newsletter.rb +1 -1
- data/app/commands/decidim/admin/create_taxonomy_filter.rb +2 -16
- 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/commands/decidim/admin/update_taxonomy_filter.rb +6 -24
- 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 -4
- 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 -9
- data/app/controllers/decidim/admin/officializations_controller.rb +0 -2
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +30 -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 +10 -11
- 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/admin_autocomplete.js +10 -16
- 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/packs/stylesheets/decidim/admin/application.scss +1 -1
- 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 +3 -3
- 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/_actions.html.erb +1 -1
- 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 +3 -7
- 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 +3 -7
- 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/_gallery.html.erb +15 -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/_table.html.erb +2 -2
- 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/app/views/layouts/decidim/admin/_application.html.erb +1 -1
- data/config/locales/ar.yml +9 -49
- data/config/locales/bg.yml +9 -55
- data/config/locales/bs-BA.yml +4 -24
- data/config/locales/ca-IT.yml +130 -113
- data/config/locales/ca.yml +130 -113
- data/config/locales/cs.yml +126 -107
- data/config/locales/de.yml +114 -98
- data/config/locales/el.yml +17 -45
- data/config/locales/en.yml +130 -112
- data/config/locales/eo.yml +0 -7
- data/config/locales/es-MX.yml +130 -113
- data/config/locales/es-PY.yml +130 -113
- data/config/locales/es.yml +130 -113
- data/config/locales/eu.yml +159 -142
- data/config/locales/fi-plain.yml +129 -112
- data/config/locales/fi.yml +129 -112
- data/config/locales/fr-CA.yml +91 -142
- data/config/locales/fr.yml +91 -142
- data/config/locales/ga-IE.yml +0 -13
- data/config/locales/gl.yml +10 -41
- data/config/locales/he-IL.yml +1 -5
- data/config/locales/hu.yml +10 -52
- data/config/locales/id-ID.yml +4 -34
- data/config/locales/is-IS.yml +1 -16
- data/config/locales/it.yml +8 -69
- data/config/locales/ja.yml +129 -114
- data/config/locales/kaa.yml +4 -16
- data/config/locales/ko.yml +6 -40
- data/config/locales/lb.yml +9 -41
- data/config/locales/lt.yml +10 -52
- data/config/locales/lv.yml +8 -38
- data/config/locales/nl.yml +10 -46
- data/config/locales/no.yml +10 -46
- data/config/locales/pl.yml +9 -54
- data/config/locales/pt-BR.yml +121 -104
- data/config/locales/pt.yml +9 -42
- data/config/locales/ro-RO.yml +15 -51
- data/config/locales/ru.yml +4 -35
- data/config/locales/sk.yml +8 -814
- data/config/locales/sl.yml +1 -7
- data/config/locales/sq-AL.yml +1 -21
- data/config/locales/sr-CS.yml +4 -24
- data/config/locales/sv.yml +79 -89
- data/config/locales/th-TH.yml +0 -8
- data/config/locales/tr-TR.yml +33 -65
- data/config/locales/uk.yml +0 -26
- data/config/locales/val-ES.yml +0 -1
- data/config/locales/zh-CN.yml +9 -38
- data/config/locales/zh-TW.yml +10 -52
- data/config/routes.rb +4 -0
- data/decidim-admin.gemspec +7 -10
- data/lib/decidim/admin/engine.rb +5 -2
- data/lib/decidim/admin/form_builder.rb +3 -1
- 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 +40 -36
- 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/shared/_attachments.html.erb +0 -15
- /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:
|
|
@@ -35,6 +34,7 @@ ko:
|
|
|
35
34
|
organization:
|
|
36
35
|
alert_color: 알림
|
|
37
36
|
badges_enabled: 뱃지 활성화
|
|
37
|
+
comments_max_length: 댓글 최대 길이(기본값은 0으로 남김)
|
|
38
38
|
customize_welcome_notification: 환영 알림 커스터마이징
|
|
39
39
|
default_locale: 기본 위치
|
|
40
40
|
description: 상세정보
|
|
@@ -66,11 +66,6 @@ ko:
|
|
|
66
66
|
twitter_handler: X handler
|
|
67
67
|
warning_color: 경고
|
|
68
68
|
youtube_handler: YouTube handler
|
|
69
|
-
participatory_space_private_user:
|
|
70
|
-
email: 이메일
|
|
71
|
-
name: 이름
|
|
72
|
-
participatory_space_private_user_csv_import:
|
|
73
|
-
file: 파일
|
|
74
69
|
scope:
|
|
75
70
|
code: 코드
|
|
76
71
|
name: 이름
|
|
@@ -108,10 +103,6 @@ ko:
|
|
|
108
103
|
attributes:
|
|
109
104
|
official_img_footer:
|
|
110
105
|
allowed_file_content_types: 잘못된 이미지 파일
|
|
111
|
-
participatory_space_private_user_csv_import:
|
|
112
|
-
attributes:
|
|
113
|
-
file:
|
|
114
|
-
malformed: 잘못된 형식의 가져오기 파일입니다. 설명서를 잘 읽고 UTF-8이 인코딩되었는지 확인하십시오.
|
|
115
106
|
user_group_csv_verification:
|
|
116
107
|
attributes:
|
|
117
108
|
file:
|
|
@@ -147,8 +138,6 @@ ko:
|
|
|
147
138
|
import: 가져오기
|
|
148
139
|
newsletter:
|
|
149
140
|
new: 새 뉴스레터
|
|
150
|
-
participatory_space_private_user:
|
|
151
|
-
new: 새 참여 공간 비공개 사용자
|
|
152
141
|
per_page: 페이지 당
|
|
153
142
|
send_me_a_test_email: 나에게 테스트 메일 보내기
|
|
154
143
|
share: 공유
|
|
@@ -304,10 +293,6 @@ ko:
|
|
|
304
293
|
label: 유형
|
|
305
294
|
officialized_at_null:
|
|
306
295
|
label: 상태
|
|
307
|
-
participatory_space_private_users:
|
|
308
|
-
user_invitation_sent_at_not_null:
|
|
309
|
-
values:
|
|
310
|
-
'false': 전송되지 않음
|
|
311
296
|
private_space_eq:
|
|
312
297
|
label: 비공개
|
|
313
298
|
values:
|
|
@@ -363,7 +348,6 @@ ko:
|
|
|
363
348
|
new:
|
|
364
349
|
impersonate_existing_managed_user: 참가자 "% {name}" 관리
|
|
365
350
|
impersonate_existing_user: 참가자 "% {name}" 관리
|
|
366
|
-
impersonate_new_managed_user: 새로운 참여자 관리
|
|
367
351
|
imports:
|
|
368
352
|
and: 그리고
|
|
369
353
|
new:
|
|
@@ -427,8 +411,6 @@ ko:
|
|
|
427
411
|
sent_to: 다음에 전송하였습니다
|
|
428
412
|
subject: 주제
|
|
429
413
|
name: 뉴스 레터
|
|
430
|
-
participatory_space_private_user:
|
|
431
|
-
name: 참여공간 비공개참여
|
|
432
414
|
scope:
|
|
433
415
|
fields:
|
|
434
416
|
name: 이름
|
|
@@ -527,19 +509,6 @@ ko:
|
|
|
527
509
|
hidden: 숨겨짐
|
|
528
510
|
show: 표시
|
|
529
511
|
title: 참가자의 이메일 주소 보기
|
|
530
|
-
participatory_space_private_users:
|
|
531
|
-
edit:
|
|
532
|
-
update: 업데이트
|
|
533
|
-
new:
|
|
534
|
-
create: 생성
|
|
535
|
-
participatory_space_private_users_csv_imports:
|
|
536
|
-
new:
|
|
537
|
-
destroy:
|
|
538
|
-
button: 모든 비공개 참가자 삭제
|
|
539
|
-
confirm: 모든 비공개 참가자를 삭제하시겠습니까? 이 작업은 취소할 수 없습니다. 복구할 수 없습니다.
|
|
540
|
-
empty: 비공개 참가자가 없습니다.
|
|
541
|
-
explanation: '%{count} 개의 비공개 참가자가 있습니다.'
|
|
542
|
-
title: 비공개 참가자 삭제
|
|
543
512
|
reminders:
|
|
544
513
|
create:
|
|
545
514
|
error: 리마인더를 만드는 중 문제가 발생했습니다.
|
|
@@ -568,9 +537,11 @@ ko:
|
|
|
568
537
|
share_tokens:
|
|
569
538
|
actions:
|
|
570
539
|
destroy: 삭제
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
540
|
+
shared:
|
|
541
|
+
gallery:
|
|
542
|
+
add_images: 이미지 추가
|
|
543
|
+
edit_images: 이미지 편집
|
|
544
|
+
gallery_legend: 이미지 갤러리 추가하기 (선택사항)
|
|
574
545
|
static_pages:
|
|
575
546
|
create:
|
|
576
547
|
error: 새 페이지를 생성하는 도중 문제가 생겼습니다.
|
|
@@ -594,15 +565,10 @@ ko:
|
|
|
594
565
|
error: 이 페이지를 업데이트하는 동안 문제가 발생했습니다.
|
|
595
566
|
success: 페이지가 성공적으로 업데이트되었습니다.
|
|
596
567
|
titles:
|
|
597
|
-
area_types: 영역 유형
|
|
598
568
|
areas: 영역
|
|
599
569
|
authorization_workflows: 인증 방식
|
|
600
|
-
impersonations: 참가자 관리
|
|
601
570
|
menu: 메뉴
|
|
602
|
-
page_topics: 주제
|
|
603
|
-
pages: 페이지
|
|
604
571
|
panel: 관리자
|
|
605
|
-
scope_types: 범위 종류
|
|
606
572
|
scopes: 범위
|
|
607
573
|
users:
|
|
608
574
|
form:
|
data/config/locales/lb.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
lb:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -34,11 +33,11 @@ lb:
|
|
|
34
33
|
alert_color: Benachrichtigung
|
|
35
34
|
available_authorizations: Verfügbare Autorisierungen
|
|
36
35
|
badges_enabled: Abzeichen aktivieren
|
|
36
|
+
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
|
37
37
|
customize_welcome_notification: Willkommens-Benachrichtigung anpassen
|
|
38
38
|
default_locale: Standardgebietsschema
|
|
39
39
|
description: Beschreibung
|
|
40
40
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
|
41
|
-
enable_participatory_space_filters: Bereichs- und Gebietsfilter aktivieren
|
|
42
41
|
facebook_handler: Facebook-Handler
|
|
43
42
|
favicon: Icon
|
|
44
43
|
force_authentication: Authentifizierung erzwingen
|
|
@@ -77,11 +76,6 @@ lb:
|
|
|
77
76
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
|
78
77
|
welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
|
|
79
78
|
youtube_handler: YouTube-Handler
|
|
80
|
-
participatory_space_private_user:
|
|
81
|
-
email: Email
|
|
82
|
-
name: Name
|
|
83
|
-
participatory_space_private_user_csv_import:
|
|
84
|
-
file: Datei
|
|
85
79
|
scope:
|
|
86
80
|
code: Code
|
|
87
81
|
name: Name
|
|
@@ -144,8 +138,6 @@ lb:
|
|
|
144
138
|
import: Importieren
|
|
145
139
|
newsletter:
|
|
146
140
|
new: Neuer Newsletter
|
|
147
|
-
participatory_space_private_user:
|
|
148
|
-
new: Neuer privater Benutzer
|
|
149
141
|
per_page: Pro Seite
|
|
150
142
|
share: Teilen
|
|
151
143
|
area_types:
|
|
@@ -290,10 +282,6 @@ lb:
|
|
|
290
282
|
values:
|
|
291
283
|
'false': Offizialisiert
|
|
292
284
|
'true': Nicht offiziell
|
|
293
|
-
participatory_space_private_users:
|
|
294
|
-
user_invitation_sent_at_not_null:
|
|
295
|
-
values:
|
|
296
|
-
'false': Nicht gesendet
|
|
297
285
|
private_space_eq:
|
|
298
286
|
label: Privat
|
|
299
287
|
values:
|
|
@@ -352,7 +340,6 @@ lb:
|
|
|
352
340
|
impersonate: Imitieren
|
|
353
341
|
impersonate_existing_managed_user: Angenommen, dass der Benutzer "%{name}" verwaltet wird
|
|
354
342
|
impersonate_existing_user: Imitieren von Benutzer "%{name}"
|
|
355
|
-
impersonate_new_managed_user: Sich als neuer verwalteter Benutzer ausgeben
|
|
356
343
|
imports:
|
|
357
344
|
new:
|
|
358
345
|
accepted_mime_types:
|
|
@@ -369,6 +356,10 @@ lb:
|
|
|
369
356
|
new:
|
|
370
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.
|
|
371
358
|
promote: Fördern
|
|
359
|
+
members_csv_imports:
|
|
360
|
+
new:
|
|
361
|
+
csv_upload:
|
|
362
|
+
title: Laden Sie Ihre CSV-Datei hoch
|
|
372
363
|
menu:
|
|
373
364
|
admin_log: Admin-Aktivitätsprotokoll
|
|
374
365
|
admins: Admins
|
|
@@ -423,8 +414,6 @@ lb:
|
|
|
423
414
|
sent_to: Gesendet an
|
|
424
415
|
subject: Gegenstand
|
|
425
416
|
name: Newsletter
|
|
426
|
-
participatory_space_private_user:
|
|
427
|
-
name: Participatory Space privater Benutzer
|
|
428
417
|
scope:
|
|
429
418
|
fields:
|
|
430
419
|
name: Name
|
|
@@ -541,7 +530,6 @@ lb:
|
|
|
541
530
|
title: Empfänger auswählen
|
|
542
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."
|
|
543
532
|
show:
|
|
544
|
-
preview: Vorschau
|
|
545
533
|
select_recipients_to_deliver: Empfänger auswählen
|
|
546
534
|
subject: Gegenstand
|
|
547
535
|
update:
|
|
@@ -587,24 +575,6 @@ lb:
|
|
|
587
575
|
update:
|
|
588
576
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
|
589
577
|
success: Die Organisation wurde erfolgreich aktualisiert.
|
|
590
|
-
participatory_space_private_users:
|
|
591
|
-
create:
|
|
592
|
-
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
|
593
|
-
success: Participatory Space Privater Benutzerzugriff erfolgreich erstellt.
|
|
594
|
-
destroy:
|
|
595
|
-
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
|
596
|
-
success: Participatory Space Privater Benutzerzugriff wurde erfolgreich zerstört.
|
|
597
|
-
edit:
|
|
598
|
-
update: Aktualisieren
|
|
599
|
-
index:
|
|
600
|
-
title: Participatory Space privater Benutzer
|
|
601
|
-
new:
|
|
602
|
-
create: Erstellen
|
|
603
|
-
title: Neuer privater Benutzer des Participatory Space.
|
|
604
|
-
participatory_space_private_users_csv_imports:
|
|
605
|
-
new:
|
|
606
|
-
csv_upload:
|
|
607
|
-
title: Laden Sie Ihre CSV-Datei hoch
|
|
608
578
|
resource_permissions:
|
|
609
579
|
edit:
|
|
610
580
|
submit: einreichen
|
|
@@ -643,6 +613,10 @@ lb:
|
|
|
643
613
|
share_tokens:
|
|
644
614
|
actions:
|
|
645
615
|
destroy: Löschen
|
|
616
|
+
shared:
|
|
617
|
+
gallery:
|
|
618
|
+
add_images: Bilder hinzufügen
|
|
619
|
+
gallery_legend: Bildergalerie hinzufügen (Optional)
|
|
646
620
|
static_page_topics:
|
|
647
621
|
create:
|
|
648
622
|
error: Beim Erstellen eines neuen Themas ist ein Fehler aufgetreten.
|
|
@@ -654,7 +628,6 @@ lb:
|
|
|
654
628
|
title: Neues Thema
|
|
655
629
|
update:
|
|
656
630
|
error: Beim Aktualisieren dieses Themas ist ein Fehler aufgetreten.
|
|
657
|
-
success: Thema erfolgreich aktualisiert
|
|
658
631
|
static_pages:
|
|
659
632
|
create:
|
|
660
633
|
error: Beim Erstellen einer neuen Seite ist ein Fehler aufgetreten.
|
|
@@ -675,14 +648,9 @@ lb:
|
|
|
675
648
|
update:
|
|
676
649
|
error: Beim Aktualisieren dieser Seite ist ein Fehler aufgetreten.
|
|
677
650
|
titles:
|
|
678
|
-
area_types: Bereichstypen
|
|
679
651
|
areas: Bereiche
|
|
680
652
|
authorization_workflows: Verifizierungsmethoden
|
|
681
|
-
impersonations: Benutzerverwaltung
|
|
682
|
-
pages: Seiten
|
|
683
653
|
panel: Admin
|
|
684
|
-
participants: Teilnehmer
|
|
685
|
-
scope_types: Bereichstypen
|
|
686
654
|
scopes: Bereiche
|
|
687
655
|
users:
|
|
688
656
|
create:
|
data/config/locales/lt.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
lt:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -42,11 +41,11 @@ lt:
|
|
|
42
41
|
alert_color: Įspėjimas
|
|
43
42
|
available_authorizations: Leidžiamos autorizacijos
|
|
44
43
|
badges_enabled: Aktyvinti ženklelius
|
|
44
|
+
comments_max_length: Maksimalus komentarų ilgis (numatytoji vertė – 0)
|
|
45
45
|
customize_welcome_notification: Individualizuoti pasisveikinimo pranešimą
|
|
46
46
|
default_locale: Numatytoji lokalė
|
|
47
47
|
description: Aprašymas
|
|
48
48
|
enable_omnipresent_banner: Rodyti visur naudojamą reklamjuostę
|
|
49
|
-
enable_participatory_space_filters: Leisti dalyvaujamosios erdvės filtrus
|
|
50
49
|
facebook_handler: '„Facebook“ tvarkyklė'
|
|
51
50
|
favicon: Piktograma
|
|
52
51
|
force_authentication: Priversti autentifikuotis
|
|
@@ -86,11 +85,6 @@ lt:
|
|
|
86
85
|
welcome_notification_body: Pasisveikinimo pranešimo tekstas
|
|
87
86
|
welcome_notification_subject: Pasisveikinimo pranešimo antraštė
|
|
88
87
|
youtube_handler: '„YouTube“ tvarkyklė'
|
|
89
|
-
participatory_space_private_user:
|
|
90
|
-
email: El. paštas
|
|
91
|
-
name: Vardas
|
|
92
|
-
participatory_space_private_user_csv_import:
|
|
93
|
-
file: Rinkmena
|
|
94
88
|
scope:
|
|
95
89
|
code: Kodas
|
|
96
90
|
name: Pavadinimas
|
|
@@ -131,10 +125,6 @@ lt:
|
|
|
131
125
|
attributes:
|
|
132
126
|
official_img_footer:
|
|
133
127
|
allowed_file_content_types: Netinkama vaizdo rinkmena
|
|
134
|
-
participatory_space_private_user_csv_import:
|
|
135
|
-
attributes:
|
|
136
|
-
file:
|
|
137
|
-
malformed: Blogai suformuotas importo failas, prašome atidžiai perskaityti instrukcijas ir įsitikinkite, kad failas yra UTF-8 koduotėje.
|
|
138
128
|
user_group_csv_verification:
|
|
139
129
|
attributes:
|
|
140
130
|
file:
|
|
@@ -172,8 +162,6 @@ lt:
|
|
|
172
162
|
import: Importuoti
|
|
173
163
|
newsletter:
|
|
174
164
|
new: Naujas naujienlaiškis
|
|
175
|
-
participatory_space_private_user:
|
|
176
|
-
new: Naujas dalyvaujamosios erdvės privatus naudotojas
|
|
177
165
|
per_page: Per puslapį
|
|
178
166
|
send_me_a_test_email: Siųsti man bandomąjį el. laišką
|
|
179
167
|
share: Dalintis
|
|
@@ -294,7 +282,6 @@ lt:
|
|
|
294
282
|
title: 'Pridėti komponentą: %{name}'
|
|
295
283
|
publish:
|
|
296
284
|
success: Komponentas sėkmingai publikuotas.
|
|
297
|
-
title: Komponentai
|
|
298
285
|
unpublish:
|
|
299
286
|
success: Komponentas nebe publikuojamas.
|
|
300
287
|
update:
|
|
@@ -354,10 +341,6 @@ lt:
|
|
|
354
341
|
values:
|
|
355
342
|
'false': Oficializuota
|
|
356
343
|
'true': Neoficializuota
|
|
357
|
-
participatory_space_private_users:
|
|
358
|
-
user_invitation_sent_at_not_null:
|
|
359
|
-
values:
|
|
360
|
-
'false': Neišsiųstas
|
|
361
344
|
private_space_eq:
|
|
362
345
|
label: Privatus
|
|
363
346
|
values:
|
|
@@ -420,7 +403,6 @@ lt:
|
|
|
420
403
|
impersonate: Naudoti pakaitinę tapatybę
|
|
421
404
|
impersonate_existing_managed_user: Tvarkyti dalyvį "%{name}"
|
|
422
405
|
impersonate_existing_user: Tvarkyti dalyvį "%{name}"
|
|
423
|
-
impersonate_new_managed_user: Tvarkyti naujo dalyvio duomenis
|
|
424
406
|
imports:
|
|
425
407
|
and: ir
|
|
426
408
|
data_errors:
|
|
@@ -482,6 +464,10 @@ lt:
|
|
|
482
464
|
new:
|
|
483
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.
|
|
484
466
|
promote: Paaukštinti
|
|
467
|
+
members_csv_imports:
|
|
468
|
+
new:
|
|
469
|
+
csv_upload:
|
|
470
|
+
title: Įkelkite savo CSV rinkmeną
|
|
485
471
|
menu:
|
|
486
472
|
admin_log: Administratoriaus veiklos žurnalas
|
|
487
473
|
admins: Administratoriai
|
|
@@ -539,8 +525,6 @@ lt:
|
|
|
539
525
|
sent_to: Išsiųsta
|
|
540
526
|
subject: Tema
|
|
541
527
|
name: Naujienlaiškis
|
|
542
|
-
participatory_space_private_user:
|
|
543
|
-
name: Dalivaujamosios erdvės privatus dalyvis
|
|
544
528
|
scope:
|
|
545
529
|
fields:
|
|
546
530
|
name: Vardas
|
|
@@ -665,7 +649,6 @@ lt:
|
|
|
665
649
|
send_to_user:
|
|
666
650
|
sent_successfully: Naujienlaiškis sėkmingai išsiųtas %{email}
|
|
667
651
|
show:
|
|
668
|
-
preview: Peržiūra
|
|
669
652
|
select_recipients_to_deliver: Pasirinkti gavėjus, kuriems išsiųsti
|
|
670
653
|
send_me_a_test_email: Siųsti man bandomąjį el. laišką
|
|
671
654
|
subject: Tema
|
|
@@ -720,30 +703,6 @@ lt:
|
|
|
720
703
|
update:
|
|
721
704
|
error: Atnaujinant šią organizaciją iškilo problema.
|
|
722
705
|
success: Organizacija atnaujinta.
|
|
723
|
-
participatory_space_private_users:
|
|
724
|
-
create:
|
|
725
|
-
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
|
726
|
-
success: Dalyvaujamosios erdvės privataus dalyvio prieiga buvo sukurta sėkmingai.
|
|
727
|
-
destroy:
|
|
728
|
-
error: Ištrinant privatų dalyvį iš dalyvaujamosios erdvės kilo problema.
|
|
729
|
-
success: Dalyvaujamojo proceso erdvės privataus dalyvio prieiga panaikinta.
|
|
730
|
-
edit:
|
|
731
|
-
update: Atnaujinti
|
|
732
|
-
index:
|
|
733
|
-
title: Dalyvaujamosios erdvės privatus dalyvis
|
|
734
|
-
new:
|
|
735
|
-
create: Sukurti
|
|
736
|
-
title: Naujas dalyvaujamosios erdvės privatus dalyvis.
|
|
737
|
-
participatory_space_private_users_csv_imports:
|
|
738
|
-
new:
|
|
739
|
-
csv_upload:
|
|
740
|
-
title: Įkelkite savo CSV rinkmeną
|
|
741
|
-
destroy:
|
|
742
|
-
button: Ištrinti visus privačius dalyvius
|
|
743
|
-
confirm: Ar tikrai norite ištrinti visus privačius dalyvius? Atlikus šį veiksmą nebebus įmanoma sugražinti šių dalyvių į platformą.
|
|
744
|
-
empty: Neturite privačių dalyvių.
|
|
745
|
-
explanation: Turite %{count} privačių dalyvių.
|
|
746
|
-
title: Ištrinti privačius dalyvius
|
|
747
706
|
reminders:
|
|
748
707
|
create:
|
|
749
708
|
error: Kuriant priminimus iškilo problema.
|
|
@@ -794,6 +753,11 @@ lt:
|
|
|
794
753
|
share_tokens:
|
|
795
754
|
actions:
|
|
796
755
|
destroy: Ištrinti
|
|
756
|
+
shared:
|
|
757
|
+
gallery:
|
|
758
|
+
add_images: Pridėti paveikslėlių
|
|
759
|
+
edit_images: Redaguoti paveikslėlį
|
|
760
|
+
gallery_legend: Pridėti paveikslėlių galeriją (Neprivaloma)
|
|
797
761
|
static_page_topics:
|
|
798
762
|
create:
|
|
799
763
|
error: Kuriant naują temą iškilo problema.
|
|
@@ -807,7 +771,6 @@ lt:
|
|
|
807
771
|
title: Nauja tema
|
|
808
772
|
update:
|
|
809
773
|
error: Atnaujinant šią temą iškilo problema.
|
|
810
|
-
success: Tema atnaujinta
|
|
811
774
|
static_pages:
|
|
812
775
|
create:
|
|
813
776
|
error: Kuriant naują puslapį iškilo problema.
|
|
@@ -831,14 +794,9 @@ lt:
|
|
|
831
794
|
error: Atnaujinant šį puslapį iškilo problema.
|
|
832
795
|
success: Puslapis atnaujintas.
|
|
833
796
|
titles:
|
|
834
|
-
area_types: Erdvės tipas
|
|
835
797
|
areas: Aplinkos
|
|
836
798
|
authorization_workflows: Verifikacijos metodai
|
|
837
|
-
impersonations: Dalyvių tvarkymas
|
|
838
|
-
pages: Puslapiai
|
|
839
799
|
panel: Administratorius
|
|
840
|
-
participants: Dalyviai
|
|
841
|
-
scope_types: Apimties tipai
|
|
842
800
|
scopes: Apimtys
|
|
843
801
|
users:
|
|
844
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
|
|
@@ -498,6 +470,10 @@ lv:
|
|
|
498
470
|
update:
|
|
499
471
|
error: Tvēruma atjaunināšanas laikā radās problēma.
|
|
500
472
|
success: Tvērums ir veiksmīgi atjaunināts
|
|
473
|
+
shared:
|
|
474
|
+
gallery:
|
|
475
|
+
add_images: Pievienot attēlus
|
|
476
|
+
gallery_legend: Pievienojiet attēlu galeriju (pēc izvēles)
|
|
501
477
|
static_page_topics:
|
|
502
478
|
create:
|
|
503
479
|
error: Tēmas izveides laikā radās problēma.
|
|
@@ -509,7 +485,6 @@ lv:
|
|
|
509
485
|
title: Jauna tēma
|
|
510
486
|
update:
|
|
511
487
|
error: Šīs tēmas atjaunināšanas laikā radās problēma.
|
|
512
|
-
success: Tēma ir veiksmīgi atjaunināta
|
|
513
488
|
static_pages:
|
|
514
489
|
create:
|
|
515
490
|
error: Jaunas lapas izveides laikā radās problēma.
|
|
@@ -530,13 +505,8 @@ lv:
|
|
|
530
505
|
update:
|
|
531
506
|
error: Šīs lapas atjaunināšanas laikā radās problēma.
|
|
532
507
|
titles:
|
|
533
|
-
area_types: Jomu veidi
|
|
534
508
|
areas: Jomas
|
|
535
509
|
authorization_workflows: Verifikācijas metodes
|
|
536
|
-
impersonations: Dalībnieku pārvaldība
|
|
537
|
-
pages: Lapas
|
|
538
|
-
participants: Dalībnieki
|
|
539
|
-
scope_types: Tvēruma veidi
|
|
540
510
|
scopes: Darbības tvērums
|
|
541
511
|
users:
|
|
542
512
|
create:
|
data/config/locales/nl.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
nl:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -34,11 +33,11 @@ nl:
|
|
|
34
33
|
alert_color: Alarm
|
|
35
34
|
available_authorizations: Beschikbare autorisaties
|
|
36
35
|
badges_enabled: Schakel badges in
|
|
36
|
+
comments_max_length: Commentaar maximale lengte (laat 0 voor standaard waarde)
|
|
37
37
|
customize_welcome_notification: Pas welkomstmelding aan
|
|
38
38
|
default_locale: Standaard taal
|
|
39
39
|
description: Beschrijving
|
|
40
40
|
enable_omnipresent_banner: Toon permanente header
|
|
41
|
-
enable_participatory_space_filters: Schakel filters in voor de participatieve ruimte
|
|
42
41
|
facebook_handler: Facebook naam
|
|
43
42
|
favicon: Favicon
|
|
44
43
|
force_authentication: Verplicht aanmelden
|
|
@@ -77,11 +76,6 @@ nl:
|
|
|
77
76
|
welcome_notification_body: Tekst van de welkomstmelding
|
|
78
77
|
welcome_notification_subject: Welkomstmelding onderwerp
|
|
79
78
|
youtube_handler: YouTube gebruikersnaam
|
|
80
|
-
participatory_space_private_user:
|
|
81
|
-
email: E-mail
|
|
82
|
-
name: Naam
|
|
83
|
-
participatory_space_private_user_csv_import:
|
|
84
|
-
file: Bestand
|
|
85
79
|
scope:
|
|
86
80
|
code: Code
|
|
87
81
|
name: Naam
|
|
@@ -144,8 +138,6 @@ nl:
|
|
|
144
138
|
import: Importeren
|
|
145
139
|
newsletter:
|
|
146
140
|
new: Nieuwe nieuwsbrief
|
|
147
|
-
participatory_space_private_user:
|
|
148
|
-
new: Nieuwe privégebruiker van de inspraakruimte
|
|
149
141
|
per_page: Per pagina
|
|
150
142
|
share: Deel
|
|
151
143
|
user:
|
|
@@ -301,10 +293,6 @@ nl:
|
|
|
301
293
|
values:
|
|
302
294
|
'false': Gevalideerd
|
|
303
295
|
'true': Niet gevalideerd
|
|
304
|
-
participatory_space_private_users:
|
|
305
|
-
user_invitation_sent_at_not_null:
|
|
306
|
-
values:
|
|
307
|
-
'false': Niet verzonden
|
|
308
296
|
private_space_eq:
|
|
309
297
|
label: Privé
|
|
310
298
|
values:
|
|
@@ -365,7 +353,6 @@ nl:
|
|
|
365
353
|
impersonate: Nabootsen
|
|
366
354
|
impersonate_existing_managed_user: Beheer deelnemer "%{name}"
|
|
367
355
|
impersonate_existing_user: Beheer deelnemer "%{name}"
|
|
368
|
-
impersonate_new_managed_user: Beheer nieuwe deelnemer
|
|
369
356
|
imports:
|
|
370
357
|
and: en
|
|
371
358
|
data_errors:
|
|
@@ -416,6 +403,10 @@ nl:
|
|
|
416
403
|
new:
|
|
417
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.
|
|
418
405
|
promote: Promoten
|
|
406
|
+
members_csv_imports:
|
|
407
|
+
new:
|
|
408
|
+
csv_upload:
|
|
409
|
+
title: Upload uw CSV-bestand
|
|
419
410
|
menu:
|
|
420
411
|
admin_log: Admin activiteitenlogboek
|
|
421
412
|
admins: Admins
|
|
@@ -470,8 +461,6 @@ nl:
|
|
|
470
461
|
sent_to: Verzonden aan
|
|
471
462
|
subject: Onderwerp
|
|
472
463
|
name: Nieuwsbrief
|
|
473
|
-
participatory_space_private_user:
|
|
474
|
-
name: Participerende ruimte privé deelnemer
|
|
475
464
|
scope:
|
|
476
465
|
fields:
|
|
477
466
|
name: Naam
|
|
@@ -588,7 +577,6 @@ nl:
|
|
|
588
577
|
title: Selecteer ontvangers
|
|
589
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."
|
|
590
579
|
show:
|
|
591
|
-
preview: Voorbeeld
|
|
592
580
|
select_recipients_to_deliver: Selecteer ontvangers
|
|
593
581
|
subject: Onderwerpen
|
|
594
582
|
update:
|
|
@@ -634,29 +622,6 @@ nl:
|
|
|
634
622
|
update:
|
|
635
623
|
error: Er is een fout opgetreden bij het bijwerken van deze organisatie.
|
|
636
624
|
success: Organisatie is succesvol bijgewerkt.
|
|
637
|
-
participatory_space_private_users:
|
|
638
|
-
create:
|
|
639
|
-
error: Er is een probleem opgetreden bij het toevoegen van een privédeelnemer aan deze deelruimte.
|
|
640
|
-
success: De toegang van de privé deelnemer voor de burgerinspraak is succesvol aangemaakt.
|
|
641
|
-
destroy:
|
|
642
|
-
error: Er was een probleem met het verwijderen van een privé-deelnemer voor deze participatieruimte.
|
|
643
|
-
success: De toegang van de privé deelnemer voor burgerinspraak is met succes verwijderd.
|
|
644
|
-
edit:
|
|
645
|
-
update: Bijwerken
|
|
646
|
-
index:
|
|
647
|
-
title: Participerende ruimte voor privé deelnemer
|
|
648
|
-
new:
|
|
649
|
-
create: creëren
|
|
650
|
-
title: Nieuwe privé deelnemer burgerinspraak.
|
|
651
|
-
participatory_space_private_users_csv_imports:
|
|
652
|
-
new:
|
|
653
|
-
csv_upload:
|
|
654
|
-
title: Upload uw CSV-bestand
|
|
655
|
-
destroy:
|
|
656
|
-
button: Verwijder alle privé deelnemers
|
|
657
|
-
empty: Je hebt geen privé deelnemers.
|
|
658
|
-
explanation: Je hebt %{count} privédeelnemers.
|
|
659
|
-
title: Verwijder privé deelnemer
|
|
660
625
|
reminders:
|
|
661
626
|
create:
|
|
662
627
|
error: Er is een probleem opgetreden bij het maken van herinneringen.
|
|
@@ -703,6 +668,11 @@ nl:
|
|
|
703
668
|
share_tokens:
|
|
704
669
|
actions:
|
|
705
670
|
destroy: Verwijderen
|
|
671
|
+
shared:
|
|
672
|
+
gallery:
|
|
673
|
+
add_images: Afbeeldingen toevoegen
|
|
674
|
+
edit_images: Bewerk afbeeldingen
|
|
675
|
+
gallery_legend: Voeg een afbeeldingsgalerij toe (optioneel)
|
|
706
676
|
static_page_topics:
|
|
707
677
|
create:
|
|
708
678
|
error: Er is een fout opgetreden bij het maken van een nieuw onderwerp.
|
|
@@ -714,7 +684,6 @@ nl:
|
|
|
714
684
|
title: Nieuw onderwerp
|
|
715
685
|
update:
|
|
716
686
|
error: Er is een fout opgetreden bij het bijwerken van dit onderwerp.
|
|
717
|
-
success: Onderwerp met succes bijgewerkt
|
|
718
687
|
static_pages:
|
|
719
688
|
create:
|
|
720
689
|
error: Er is een fout opgetreden bij het maken van een nieuwe pagina.
|
|
@@ -735,14 +704,9 @@ nl:
|
|
|
735
704
|
update:
|
|
736
705
|
error: Er is een fout opgetreden bij het bijwerken van deze pagina.
|
|
737
706
|
titles:
|
|
738
|
-
area_types: Pagina types
|
|
739
707
|
areas: Onderwerpen
|
|
740
708
|
authorization_workflows: Verificatiemethoden
|
|
741
|
-
impersonations: Beheer van deelnemers
|
|
742
|
-
pages: Pagina's
|
|
743
709
|
panel: Admin
|
|
744
|
-
participants: Deelnemers
|
|
745
|
-
scope_types: Scope types
|
|
746
710
|
scopes: Scopes
|
|
747
711
|
users:
|
|
748
712
|
create:
|