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/no.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
"no":
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -39,7 +38,6 @@
|
|
|
39
38
|
default_locale: Standardspråk
|
|
40
39
|
description: Beskrivelse
|
|
41
40
|
enable_omnipresent_banner: Vis overstyrende banner
|
|
42
|
-
enable_participatory_space_filters: Aktive filtere for bruk av medvirkningsrommene
|
|
43
41
|
facebook_handler: Facebook brukernavn
|
|
44
42
|
favicon: Ikon
|
|
45
43
|
force_authentication: Tving godkjenning
|
|
@@ -78,11 +76,6 @@
|
|
|
78
76
|
welcome_notification_body: Velkomst varslings tekst
|
|
79
77
|
welcome_notification_subject: Velkomst varslings emne
|
|
80
78
|
youtube_handler: YouTube brukernavn
|
|
81
|
-
participatory_space_private_user:
|
|
82
|
-
email: Epost
|
|
83
|
-
name: Navn
|
|
84
|
-
participatory_space_private_user_csv_import:
|
|
85
|
-
file: Fil
|
|
86
79
|
scope:
|
|
87
80
|
code: Kode
|
|
88
81
|
name: Navn
|
|
@@ -145,8 +138,6 @@
|
|
|
145
138
|
import: Importer
|
|
146
139
|
newsletter:
|
|
147
140
|
new: Nytt nyhetsbrev
|
|
148
|
-
participatory_space_private_user:
|
|
149
|
-
new: Nytt deltakerområde for privat bruker
|
|
150
141
|
per_page: Per side
|
|
151
142
|
share: Del
|
|
152
143
|
user:
|
|
@@ -314,10 +305,6 @@
|
|
|
314
305
|
values:
|
|
315
306
|
'false': Offisialisert
|
|
316
307
|
'true': Ikke offisialisert
|
|
317
|
-
participatory_space_private_users:
|
|
318
|
-
user_invitation_sent_at_not_null:
|
|
319
|
-
values:
|
|
320
|
-
'false': Ikke sendt
|
|
321
308
|
private_space_eq:
|
|
322
309
|
label: Privat
|
|
323
310
|
values:
|
|
@@ -378,7 +365,6 @@
|
|
|
378
365
|
impersonate: Etterligne
|
|
379
366
|
impersonate_existing_managed_user: Administrer deltaker "%{name}"
|
|
380
367
|
impersonate_existing_user: Administrer deltaker "%{name}"
|
|
381
|
-
impersonate_new_managed_user: Administrer ny deltaker
|
|
382
368
|
imports:
|
|
383
369
|
and: og
|
|
384
370
|
data_errors:
|
|
@@ -422,6 +408,10 @@
|
|
|
422
408
|
new:
|
|
423
409
|
explanation: Styrte deltakere kan bli promotert til standard deltakere. Dette betyr at de vil bli invitert til applikasjonen og du vil ikke kunne administrere dem lenger. De inviterte deltakerene vil motta en email så de kan akseptere invitasjonen.
|
|
424
410
|
promote: Promoter
|
|
411
|
+
members_csv_imports:
|
|
412
|
+
new:
|
|
413
|
+
csv_upload:
|
|
414
|
+
title: Last opp din CSV fil
|
|
425
415
|
menu:
|
|
426
416
|
admin_log: Admin aktivitet logg
|
|
427
417
|
admins: Adminer
|
|
@@ -476,8 +466,6 @@
|
|
|
476
466
|
sent_to: Send til
|
|
477
467
|
subject: Emne
|
|
478
468
|
name: Nyhetsbrev
|
|
479
|
-
participatory_space_private_user:
|
|
480
|
-
name: Deltakerområdets private deltaker
|
|
481
469
|
scope:
|
|
482
470
|
fields:
|
|
483
471
|
name: Navn
|
|
@@ -594,7 +582,6 @@
|
|
|
594
582
|
title: Velg mottakere som skal leveres
|
|
595
583
|
warning: "<strong>Oppmerksomhet:</strong> Dette nyhetsbrevet vil bare bli sendt til brukere som har aktivert <em>Jeg ønsker å motta nyhetsbrev</em> i varslingsinnstillingene."
|
|
596
584
|
show:
|
|
597
|
-
preview: Forhåndsvis
|
|
598
585
|
select_recipients_to_deliver: Velg mottakere som skal leveres
|
|
599
586
|
subject: Emne
|
|
600
587
|
update:
|
|
@@ -640,29 +627,6 @@
|
|
|
640
627
|
update:
|
|
641
628
|
error: Det oppstod et problem med å oppdatere denne organisasjon.
|
|
642
629
|
success: Organisasjonen ble oppdatert.
|
|
643
|
-
participatory_space_private_users:
|
|
644
|
-
create:
|
|
645
|
-
error: Det oppstod et problem med å legge til en privat deltaker for dette deltakerområdet.
|
|
646
|
-
success: Deltakerområde privat deltaker tilgang opprettet.
|
|
647
|
-
destroy:
|
|
648
|
-
error: Det oppstod et problem med å slette en privat deltaker for dette deltakerområdet.
|
|
649
|
-
success: Deltakerområde privat deltaker tilgang ødelagt.
|
|
650
|
-
edit:
|
|
651
|
-
update: Oppdater
|
|
652
|
-
index:
|
|
653
|
-
title: Deltakerområdets private deltaker
|
|
654
|
-
new:
|
|
655
|
-
create: Opprett
|
|
656
|
-
title: Ny deltaker område privat deltaker.
|
|
657
|
-
participatory_space_private_users_csv_imports:
|
|
658
|
-
new:
|
|
659
|
-
csv_upload:
|
|
660
|
-
title: Last opp din CSV fil
|
|
661
|
-
destroy:
|
|
662
|
-
button: Slett alle private deltakere
|
|
663
|
-
empty: Du har ingen private deltakere.
|
|
664
|
-
explanation: Du har %{count} private deltakere.
|
|
665
|
-
title: Slett private deltakere
|
|
666
630
|
reminders:
|
|
667
631
|
create:
|
|
668
632
|
error: Det oppsto et problem med å opprette påminnelser.
|
|
@@ -725,7 +689,6 @@
|
|
|
725
689
|
title: Nytt emne
|
|
726
690
|
update:
|
|
727
691
|
error: Det oppstod et problem med å oppdatere dette emnet.
|
|
728
|
-
success: Emnet ble oppdatert
|
|
729
692
|
static_pages:
|
|
730
693
|
create:
|
|
731
694
|
error: Det oppstod et problem med å opprette en ny side.
|
|
@@ -746,15 +709,10 @@
|
|
|
746
709
|
update:
|
|
747
710
|
error: Det oppstod et problem med å oppdatere denne siden.
|
|
748
711
|
titles:
|
|
749
|
-
area_types: Områdetyper
|
|
750
712
|
areas: Områder
|
|
751
713
|
authorization_workflows: Verifiseringsmetoder
|
|
752
|
-
impersonations: Deltakernes administrasjon
|
|
753
714
|
menu: Meny
|
|
754
|
-
pages: Sider
|
|
755
715
|
panel: Administrator
|
|
756
|
-
participants: Deltakere
|
|
757
|
-
scope_types: Tematyper
|
|
758
716
|
scopes: Tema
|
|
759
717
|
users:
|
|
760
718
|
create:
|
data/config/locales/pl.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
pl:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -50,7 +49,6 @@ pl:
|
|
|
50
49
|
default_locale: Domyślny język
|
|
51
50
|
description: Opis
|
|
52
51
|
enable_omnipresent_banner: Pokaż stały banner
|
|
53
|
-
enable_participatory_space_filters: Włącz filtry przestrzeni partycypacyjnej
|
|
54
52
|
facebook_handler: Handler Facebooka
|
|
55
53
|
favicon: Ikona
|
|
56
54
|
force_authentication: Wymuś uwierzytelnianie
|
|
@@ -91,11 +89,6 @@ pl:
|
|
|
91
89
|
welcome_notification_body: Treść komunikatu powitalnego
|
|
92
90
|
welcome_notification_subject: Tytuł komunikatu powitalnego
|
|
93
91
|
youtube_handler: Handler YouTube
|
|
94
|
-
participatory_space_private_user:
|
|
95
|
-
email: E-mail
|
|
96
|
-
name: Nazwa
|
|
97
|
-
participatory_space_private_user_csv_import:
|
|
98
|
-
file: Plik
|
|
99
92
|
scope:
|
|
100
93
|
code: Kod
|
|
101
94
|
name: Nazwa
|
|
@@ -137,10 +130,6 @@ pl:
|
|
|
137
130
|
attributes:
|
|
138
131
|
official_img_footer:
|
|
139
132
|
allowed_file_content_types: Nieprawidłowy plik obrazu
|
|
140
|
-
participatory_space_private_user_csv_import:
|
|
141
|
-
attributes:
|
|
142
|
-
file:
|
|
143
|
-
malformed: Nieprawidłowy plik importu, przeczytaj uważnie instrukcję i upewnij się, że plik jest kodowany w UTF-8.
|
|
144
133
|
user_group_csv_verification:
|
|
145
134
|
attributes:
|
|
146
135
|
file:
|
|
@@ -179,8 +168,6 @@ pl:
|
|
|
179
168
|
import: Importuj
|
|
180
169
|
newsletter:
|
|
181
170
|
new: Nowy newsletter
|
|
182
|
-
participatory_space_private_user:
|
|
183
|
-
new: Nowy użytkownik prywatny
|
|
184
171
|
per_page: Na stronę
|
|
185
172
|
send_me_a_test_email: Wyślij mi testowego e-maila
|
|
186
173
|
share: Udostępnij
|
|
@@ -304,7 +291,6 @@ pl:
|
|
|
304
291
|
title: 'Dodaj komponent: %{name}'
|
|
305
292
|
publish:
|
|
306
293
|
success: Komponent został pomyślnie opublikowany.
|
|
307
|
-
title: Komponenty
|
|
308
294
|
unpublish:
|
|
309
295
|
success: Publikacja komponentu została pomyślnie cofnięta.
|
|
310
296
|
update:
|
|
@@ -385,10 +371,6 @@ pl:
|
|
|
385
371
|
values:
|
|
386
372
|
'false': Oficjalny
|
|
387
373
|
'true': Nieoficjalny
|
|
388
|
-
participatory_space_private_users:
|
|
389
|
-
user_invitation_sent_at_not_null:
|
|
390
|
-
values:
|
|
391
|
-
'false': Nie wysłano
|
|
392
374
|
private_space_eq:
|
|
393
375
|
label: Prywatny
|
|
394
376
|
values:
|
|
@@ -454,7 +436,6 @@ pl:
|
|
|
454
436
|
impersonate: Podszywać się
|
|
455
437
|
impersonate_existing_managed_user: Zarządzaj użytkownikiem "%{name}"
|
|
456
438
|
impersonate_existing_user: Zarządzaj użytkownikiem "%{name}"
|
|
457
|
-
impersonate_new_managed_user: Zarządzaj nowym uczestnikiem
|
|
458
439
|
imports:
|
|
459
440
|
and: i
|
|
460
441
|
data_errors:
|
|
@@ -516,6 +497,10 @@ pl:
|
|
|
516
497
|
new:
|
|
517
498
|
explanation: Zarządzani użytkownicy mogą być promowani do standardowych użytkowników. Oznacza to, że zostaną zaproszeni do udziału w aplikacji i nie będą mogli podszywać się pod inne osoby. Zaproszony użytkownik otrzyma wiadomość e-mail, aby zaakceptować zaproszenie.
|
|
518
499
|
promote: Awansuj
|
|
500
|
+
members_csv_imports:
|
|
501
|
+
new:
|
|
502
|
+
csv_upload:
|
|
503
|
+
title: Prześlij swój plik CSV
|
|
519
504
|
menu:
|
|
520
505
|
admin_log: Logi aktywności administratora
|
|
521
506
|
admins: Administratorzy
|
|
@@ -576,8 +561,6 @@ pl:
|
|
|
576
561
|
sent_to: Wysłano do
|
|
577
562
|
subject: Temat
|
|
578
563
|
name: Newsletter
|
|
579
|
-
participatory_space_private_user:
|
|
580
|
-
name: Użytkownik prywatnej przestrzeni partycypacyjnej
|
|
581
564
|
scope:
|
|
582
565
|
fields:
|
|
583
566
|
name: Nazwa
|
|
@@ -703,7 +686,6 @@ pl:
|
|
|
703
686
|
send_to_user:
|
|
704
687
|
sent_successfully: Newsletter został pomyślnie wysłany do %{email}
|
|
705
688
|
show:
|
|
706
|
-
preview: Podgląd
|
|
707
689
|
select_recipients_to_deliver: Wybierz odbiorców
|
|
708
690
|
send_me_a_test_email: Wyślij mi testowego e-maila
|
|
709
691
|
subject: Temat
|
|
@@ -769,31 +751,6 @@ pl:
|
|
|
769
751
|
up: Do góry
|
|
770
752
|
form:
|
|
771
753
|
add: Dodaj do listy dozwolonych
|
|
772
|
-
participatory_space_private_users:
|
|
773
|
-
create:
|
|
774
|
-
error: Wystąpił błąd podczas dodawania użytkownika prywatnego do tej przestrzeni partycypacyjnej.
|
|
775
|
-
success: Dodano dostęp dla prywatnego użytkownika przestrzeni partycypacyjnej.
|
|
776
|
-
destroy:
|
|
777
|
-
error: Wystąpił błąd podczas usuwania użytkownika prywatnego z tej przestrzeni partycypacyjnej.
|
|
778
|
-
success: Usunięto dostęp dla prywatnego użytkownika w tej przestrzeni partycypacyjnej.
|
|
779
|
-
edit:
|
|
780
|
-
update: Aktualizuj
|
|
781
|
-
index:
|
|
782
|
-
title: Prywatny użytkownik przestrzeni partycypacyjnej
|
|
783
|
-
new:
|
|
784
|
-
create: Utwórz
|
|
785
|
-
title: Nowy prywatny użytkownik przestrzeni partycypacyjnej.
|
|
786
|
-
participatory_space_private_users_csv_imports:
|
|
787
|
-
new:
|
|
788
|
-
csv_upload:
|
|
789
|
-
title: Prześlij swój plik CSV
|
|
790
|
-
destroy:
|
|
791
|
-
button: Usuń wszystkich prywatnych uczestników
|
|
792
|
-
confirm: Czy na pewno chcesz usunąć wszystkich uczestników prywatnych? Tej akcji nie można cofnąć, nie będziesz w stanie odzyskać danych.
|
|
793
|
-
empty: Nie masz żadnych uczestników prywatnych.
|
|
794
|
-
explanation: Masz %{count} uczestników prywatnych.
|
|
795
|
-
title: Usuń prywatnych uczestników
|
|
796
|
-
title: Importuj uczestników prywatnych przez CSV
|
|
797
754
|
reminders:
|
|
798
755
|
create:
|
|
799
756
|
error: Wystąpił błąd podczas tworzenia przypomnień.
|
|
@@ -869,7 +826,6 @@ pl:
|
|
|
869
826
|
title: Nowy temat
|
|
870
827
|
update:
|
|
871
828
|
error: Wystąpił błąd podczas aktualizowania tego tematu.
|
|
872
|
-
success: Temat został zaktualizowany pomyślnie
|
|
873
829
|
static_pages:
|
|
874
830
|
create:
|
|
875
831
|
error: Podczas tworzenia nowej strony wystąpił błąd.
|
|
@@ -895,16 +851,10 @@ pl:
|
|
|
895
851
|
error: Podczas aktualizowania tej strony wystąpił błąd.
|
|
896
852
|
success: Strona została zaktualizowana.
|
|
897
853
|
titles:
|
|
898
|
-
area_types: Typy kategorii
|
|
899
854
|
areas: Kategorie
|
|
900
855
|
authorization_workflows: Metody weryfikacji
|
|
901
|
-
impersonations: Zarządzanie użytkownikami
|
|
902
856
|
menu: Menu
|
|
903
|
-
page_topics: Tematy
|
|
904
|
-
pages: Strony
|
|
905
857
|
panel: Administrator
|
|
906
|
-
participants: Użytkownicy
|
|
907
|
-
scope_types: Typy zakresów
|
|
908
858
|
scopes: Zakresy
|
|
909
859
|
users:
|
|
910
860
|
create:
|