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/no.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
"no":
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -34,11 +33,11 @@
|
|
|
34
33
|
alert_color: Varsel
|
|
35
34
|
available_authorizations: Tilgjengelige autorisasjoner
|
|
36
35
|
badges_enabled: Aktiver utmerkelse
|
|
36
|
+
comments_max_length: Maks lengde på kommentarer (Sett 0 for standardverdi)
|
|
37
37
|
customize_welcome_notification: Tilpass dine velkomstvarsler
|
|
38
38
|
default_locale: Standardspråk
|
|
39
39
|
description: Beskrivelse
|
|
40
40
|
enable_omnipresent_banner: Vis overstyrende banner
|
|
41
|
-
enable_participatory_space_filters: Aktive filtere for bruk av medvirkningsrommene
|
|
42
41
|
facebook_handler: Facebook brukernavn
|
|
43
42
|
favicon: Ikon
|
|
44
43
|
force_authentication: Tving godkjenning
|
|
@@ -77,11 +76,6 @@
|
|
|
77
76
|
welcome_notification_body: Velkomst varslings tekst
|
|
78
77
|
welcome_notification_subject: Velkomst varslings emne
|
|
79
78
|
youtube_handler: YouTube brukernavn
|
|
80
|
-
participatory_space_private_user:
|
|
81
|
-
email: Epost
|
|
82
|
-
name: Navn
|
|
83
|
-
participatory_space_private_user_csv_import:
|
|
84
|
-
file: Fil
|
|
85
79
|
scope:
|
|
86
80
|
code: Kode
|
|
87
81
|
name: Navn
|
|
@@ -144,8 +138,6 @@
|
|
|
144
138
|
import: Importer
|
|
145
139
|
newsletter:
|
|
146
140
|
new: Nytt nyhetsbrev
|
|
147
|
-
participatory_space_private_user:
|
|
148
|
-
new: Nytt deltakerområde for privat bruker
|
|
149
141
|
per_page: Per side
|
|
150
142
|
share: Del
|
|
151
143
|
user:
|
|
@@ -313,10 +305,6 @@
|
|
|
313
305
|
values:
|
|
314
306
|
'false': Offisialisert
|
|
315
307
|
'true': Ikke offisialisert
|
|
316
|
-
participatory_space_private_users:
|
|
317
|
-
user_invitation_sent_at_not_null:
|
|
318
|
-
values:
|
|
319
|
-
'false': Ikke sendt
|
|
320
308
|
private_space_eq:
|
|
321
309
|
label: Privat
|
|
322
310
|
values:
|
|
@@ -377,7 +365,6 @@
|
|
|
377
365
|
impersonate: Etterligne
|
|
378
366
|
impersonate_existing_managed_user: Administrer deltaker "%{name}"
|
|
379
367
|
impersonate_existing_user: Administrer deltaker "%{name}"
|
|
380
|
-
impersonate_new_managed_user: Administrer ny deltaker
|
|
381
368
|
imports:
|
|
382
369
|
and: og
|
|
383
370
|
data_errors:
|
|
@@ -421,6 +408,10 @@
|
|
|
421
408
|
new:
|
|
422
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.
|
|
423
410
|
promote: Promoter
|
|
411
|
+
members_csv_imports:
|
|
412
|
+
new:
|
|
413
|
+
csv_upload:
|
|
414
|
+
title: Last opp din CSV fil
|
|
424
415
|
menu:
|
|
425
416
|
admin_log: Admin aktivitet logg
|
|
426
417
|
admins: Adminer
|
|
@@ -475,8 +466,6 @@
|
|
|
475
466
|
sent_to: Send til
|
|
476
467
|
subject: Emne
|
|
477
468
|
name: Nyhetsbrev
|
|
478
|
-
participatory_space_private_user:
|
|
479
|
-
name: Deltakerområdets private deltaker
|
|
480
469
|
scope:
|
|
481
470
|
fields:
|
|
482
471
|
name: Navn
|
|
@@ -593,7 +582,6 @@
|
|
|
593
582
|
title: Velg mottakere som skal leveres
|
|
594
583
|
warning: "<strong>Oppmerksomhet:</strong> Dette nyhetsbrevet vil bare bli sendt til brukere som har aktivert <em>Jeg ønsker å motta nyhetsbrev</em> i varslingsinnstillingene."
|
|
595
584
|
show:
|
|
596
|
-
preview: Forhåndsvis
|
|
597
585
|
select_recipients_to_deliver: Velg mottakere som skal leveres
|
|
598
586
|
subject: Emne
|
|
599
587
|
update:
|
|
@@ -639,29 +627,6 @@
|
|
|
639
627
|
update:
|
|
640
628
|
error: Det oppstod et problem med å oppdatere denne organisasjon.
|
|
641
629
|
success: Organisasjonen ble oppdatert.
|
|
642
|
-
participatory_space_private_users:
|
|
643
|
-
create:
|
|
644
|
-
error: Det oppstod et problem med å legge til en privat deltaker for dette deltakerområdet.
|
|
645
|
-
success: Deltakerområde privat deltaker tilgang opprettet.
|
|
646
|
-
destroy:
|
|
647
|
-
error: Det oppstod et problem med å slette en privat deltaker for dette deltakerområdet.
|
|
648
|
-
success: Deltakerområde privat deltaker tilgang ødelagt.
|
|
649
|
-
edit:
|
|
650
|
-
update: Oppdater
|
|
651
|
-
index:
|
|
652
|
-
title: Deltakerområdets private deltaker
|
|
653
|
-
new:
|
|
654
|
-
create: Opprett
|
|
655
|
-
title: Ny deltaker område privat deltaker.
|
|
656
|
-
participatory_space_private_users_csv_imports:
|
|
657
|
-
new:
|
|
658
|
-
csv_upload:
|
|
659
|
-
title: Last opp din CSV fil
|
|
660
|
-
destroy:
|
|
661
|
-
button: Slett alle private deltakere
|
|
662
|
-
empty: Du har ingen private deltakere.
|
|
663
|
-
explanation: Du har %{count} private deltakere.
|
|
664
|
-
title: Slett private deltakere
|
|
665
630
|
reminders:
|
|
666
631
|
create:
|
|
667
632
|
error: Det oppsto et problem med å opprette påminnelser.
|
|
@@ -708,6 +673,11 @@
|
|
|
708
673
|
share_tokens:
|
|
709
674
|
actions:
|
|
710
675
|
destroy: Slett
|
|
676
|
+
shared:
|
|
677
|
+
gallery:
|
|
678
|
+
add_images: Legg til bilder
|
|
679
|
+
edit_images: Rediger bilder
|
|
680
|
+
gallery_legend: Legg til et bildegalleri (valgfritt)
|
|
711
681
|
static_page_topics:
|
|
712
682
|
create:
|
|
713
683
|
error: Det oppstod et problem med å opprette et nytt emne.
|
|
@@ -719,7 +689,6 @@
|
|
|
719
689
|
title: Nytt emne
|
|
720
690
|
update:
|
|
721
691
|
error: Det oppstod et problem med å oppdatere dette emnet.
|
|
722
|
-
success: Emnet ble oppdatert
|
|
723
692
|
static_pages:
|
|
724
693
|
create:
|
|
725
694
|
error: Det oppstod et problem med å opprette en ny side.
|
|
@@ -740,15 +709,10 @@
|
|
|
740
709
|
update:
|
|
741
710
|
error: Det oppstod et problem med å oppdatere denne siden.
|
|
742
711
|
titles:
|
|
743
|
-
area_types: Områdetyper
|
|
744
712
|
areas: Områder
|
|
745
713
|
authorization_workflows: Verifiseringsmetoder
|
|
746
|
-
impersonations: Deltakernes administrasjon
|
|
747
714
|
menu: Meny
|
|
748
|
-
pages: Sider
|
|
749
715
|
panel: Administrator
|
|
750
|
-
participants: Deltakere
|
|
751
|
-
scope_types: Tematyper
|
|
752
716
|
scopes: Tema
|
|
753
717
|
users:
|
|
754
718
|
create:
|
data/config/locales/pl.yml
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
---
|
|
2
1
|
pl:
|
|
3
2
|
activemodel:
|
|
4
3
|
attributes:
|
|
@@ -45,11 +44,11 @@ pl:
|
|
|
45
44
|
alert_color: Powiadomienie
|
|
46
45
|
available_authorizations: Dostępne formy uwierzytelniania
|
|
47
46
|
badges_enabled: Włącz odznaki
|
|
47
|
+
comments_max_length: Maksymalna długość komentarza (pozostaw 0 dla wartości domyślnej)
|
|
48
48
|
customize_welcome_notification: Dostosuj treść komunikatu powitalnego
|
|
49
49
|
default_locale: Domyślny język
|
|
50
50
|
description: Opis
|
|
51
51
|
enable_omnipresent_banner: Pokaż stały banner
|
|
52
|
-
enable_participatory_space_filters: Włącz filtry przestrzeni partycypacyjnej
|
|
53
52
|
facebook_handler: Handler Facebooka
|
|
54
53
|
favicon: Ikona
|
|
55
54
|
force_authentication: Wymuś uwierzytelnianie
|
|
@@ -90,11 +89,6 @@ pl:
|
|
|
90
89
|
welcome_notification_body: Treść komunikatu powitalnego
|
|
91
90
|
welcome_notification_subject: Tytuł komunikatu powitalnego
|
|
92
91
|
youtube_handler: Handler YouTube
|
|
93
|
-
participatory_space_private_user:
|
|
94
|
-
email: E-mail
|
|
95
|
-
name: Nazwa
|
|
96
|
-
participatory_space_private_user_csv_import:
|
|
97
|
-
file: Plik
|
|
98
92
|
scope:
|
|
99
93
|
code: Kod
|
|
100
94
|
name: Nazwa
|
|
@@ -136,10 +130,6 @@ pl:
|
|
|
136
130
|
attributes:
|
|
137
131
|
official_img_footer:
|
|
138
132
|
allowed_file_content_types: Nieprawidłowy plik obrazu
|
|
139
|
-
participatory_space_private_user_csv_import:
|
|
140
|
-
attributes:
|
|
141
|
-
file:
|
|
142
|
-
malformed: Nieprawidłowy plik importu, przeczytaj uważnie instrukcję i upewnij się, że plik jest kodowany w UTF-8.
|
|
143
133
|
user_group_csv_verification:
|
|
144
134
|
attributes:
|
|
145
135
|
file:
|
|
@@ -178,8 +168,6 @@ pl:
|
|
|
178
168
|
import: Importuj
|
|
179
169
|
newsletter:
|
|
180
170
|
new: Nowy newsletter
|
|
181
|
-
participatory_space_private_user:
|
|
182
|
-
new: Nowy użytkownik prywatny
|
|
183
171
|
per_page: Na stronę
|
|
184
172
|
send_me_a_test_email: Wyślij mi testowego e-maila
|
|
185
173
|
share: Udostępnij
|
|
@@ -303,7 +291,6 @@ pl:
|
|
|
303
291
|
title: 'Dodaj komponent: %{name}'
|
|
304
292
|
publish:
|
|
305
293
|
success: Komponent został pomyślnie opublikowany.
|
|
306
|
-
title: Komponenty
|
|
307
294
|
unpublish:
|
|
308
295
|
success: Publikacja komponentu została pomyślnie cofnięta.
|
|
309
296
|
update:
|
|
@@ -384,10 +371,6 @@ pl:
|
|
|
384
371
|
values:
|
|
385
372
|
'false': Oficjalny
|
|
386
373
|
'true': Nieoficjalny
|
|
387
|
-
participatory_space_private_users:
|
|
388
|
-
user_invitation_sent_at_not_null:
|
|
389
|
-
values:
|
|
390
|
-
'false': Nie wysłano
|
|
391
374
|
private_space_eq:
|
|
392
375
|
label: Prywatny
|
|
393
376
|
values:
|
|
@@ -453,7 +436,6 @@ pl:
|
|
|
453
436
|
impersonate: Podszywać się
|
|
454
437
|
impersonate_existing_managed_user: Zarządzaj użytkownikiem "%{name}"
|
|
455
438
|
impersonate_existing_user: Zarządzaj użytkownikiem "%{name}"
|
|
456
|
-
impersonate_new_managed_user: Zarządzaj nowym uczestnikiem
|
|
457
439
|
imports:
|
|
458
440
|
and: i
|
|
459
441
|
data_errors:
|
|
@@ -515,6 +497,10 @@ pl:
|
|
|
515
497
|
new:
|
|
516
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.
|
|
517
499
|
promote: Awansuj
|
|
500
|
+
members_csv_imports:
|
|
501
|
+
new:
|
|
502
|
+
csv_upload:
|
|
503
|
+
title: Prześlij swój plik CSV
|
|
518
504
|
menu:
|
|
519
505
|
admin_log: Logi aktywności administratora
|
|
520
506
|
admins: Administratorzy
|
|
@@ -575,8 +561,6 @@ pl:
|
|
|
575
561
|
sent_to: Wysłano do
|
|
576
562
|
subject: Temat
|
|
577
563
|
name: Newsletter
|
|
578
|
-
participatory_space_private_user:
|
|
579
|
-
name: Użytkownik prywatnej przestrzeni partycypacyjnej
|
|
580
564
|
scope:
|
|
581
565
|
fields:
|
|
582
566
|
name: Nazwa
|
|
@@ -702,7 +686,6 @@ pl:
|
|
|
702
686
|
send_to_user:
|
|
703
687
|
sent_successfully: Newsletter został pomyślnie wysłany do %{email}
|
|
704
688
|
show:
|
|
705
|
-
preview: Podgląd
|
|
706
689
|
select_recipients_to_deliver: Wybierz odbiorców
|
|
707
690
|
send_me_a_test_email: Wyślij mi testowego e-maila
|
|
708
691
|
subject: Temat
|
|
@@ -768,31 +751,6 @@ pl:
|
|
|
768
751
|
up: Do góry
|
|
769
752
|
form:
|
|
770
753
|
add: Dodaj do listy dozwolonych
|
|
771
|
-
participatory_space_private_users:
|
|
772
|
-
create:
|
|
773
|
-
error: Wystąpił błąd podczas dodawania użytkownika prywatnego do tej przestrzeni partycypacyjnej.
|
|
774
|
-
success: Dodano dostęp dla prywatnego użytkownika przestrzeni partycypacyjnej.
|
|
775
|
-
destroy:
|
|
776
|
-
error: Wystąpił błąd podczas usuwania użytkownika prywatnego z tej przestrzeni partycypacyjnej.
|
|
777
|
-
success: Usunięto dostęp dla prywatnego użytkownika w tej przestrzeni partycypacyjnej.
|
|
778
|
-
edit:
|
|
779
|
-
update: Aktualizuj
|
|
780
|
-
index:
|
|
781
|
-
title: Prywatny użytkownik przestrzeni partycypacyjnej
|
|
782
|
-
new:
|
|
783
|
-
create: Utwórz
|
|
784
|
-
title: Nowy prywatny użytkownik przestrzeni partycypacyjnej.
|
|
785
|
-
participatory_space_private_users_csv_imports:
|
|
786
|
-
new:
|
|
787
|
-
csv_upload:
|
|
788
|
-
title: Prześlij swój plik CSV
|
|
789
|
-
destroy:
|
|
790
|
-
button: Usuń wszystkich prywatnych uczestników
|
|
791
|
-
confirm: Czy na pewno chcesz usunąć wszystkich uczestników prywatnych? Tej akcji nie można cofnąć, nie będziesz w stanie odzyskać danych.
|
|
792
|
-
empty: Nie masz żadnych uczestników prywatnych.
|
|
793
|
-
explanation: Masz %{count} uczestników prywatnych.
|
|
794
|
-
title: Usuń prywatnych uczestników
|
|
795
|
-
title: Importuj uczestników prywatnych przez CSV
|
|
796
754
|
reminders:
|
|
797
755
|
create:
|
|
798
756
|
error: Wystąpił błąd podczas tworzenia przypomnień.
|
|
@@ -851,6 +809,10 @@ pl:
|
|
|
851
809
|
next_title: Następny element
|
|
852
810
|
previous: Poprzedni
|
|
853
811
|
previous_title: Poprzedni element
|
|
812
|
+
gallery:
|
|
813
|
+
add_images: Dodaj obrazy
|
|
814
|
+
edit_images: Edytuj obrazy
|
|
815
|
+
gallery_legend: Dodaj galerię obrazów (opcjonalnie)
|
|
854
816
|
static_page_topics:
|
|
855
817
|
create:
|
|
856
818
|
error: Wystąpił błąd podczas tworzenia nowego tematu.
|
|
@@ -864,7 +826,6 @@ pl:
|
|
|
864
826
|
title: Nowy temat
|
|
865
827
|
update:
|
|
866
828
|
error: Wystąpił błąd podczas aktualizowania tego tematu.
|
|
867
|
-
success: Temat został zaktualizowany pomyślnie
|
|
868
829
|
static_pages:
|
|
869
830
|
create:
|
|
870
831
|
error: Podczas tworzenia nowej strony wystąpił błąd.
|
|
@@ -890,16 +851,10 @@ pl:
|
|
|
890
851
|
error: Podczas aktualizowania tej strony wystąpił błąd.
|
|
891
852
|
success: Strona została zaktualizowana.
|
|
892
853
|
titles:
|
|
893
|
-
area_types: Typy kategorii
|
|
894
854
|
areas: Kategorie
|
|
895
855
|
authorization_workflows: Metody weryfikacji
|
|
896
|
-
impersonations: Zarządzanie użytkownikami
|
|
897
856
|
menu: Menu
|
|
898
|
-
page_topics: Tematy
|
|
899
|
-
pages: Strony
|
|
900
857
|
panel: Administrator
|
|
901
|
-
participants: Użytkownicy
|
|
902
|
-
scope_types: Typy zakresów
|
|
903
858
|
scopes: Zakresy
|
|
904
859
|
users:
|
|
905
860
|
create:
|