decidim-admin 0.29.2 → 0.30.0.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/admin/multi_select_picker/show.erb +10 -0
- data/app/cells/decidim/admin/multi_select_picker_cell.rb +38 -0
- data/app/commands/decidim/admin/bulk_action.rb +92 -0
- data/app/commands/decidim/admin/bulk_block_users.rb +75 -0
- data/app/commands/decidim/admin/bulk_unblock_users.rb +66 -0
- data/app/commands/decidim/admin/bulk_unreport_users.rb +69 -0
- data/app/commands/decidim/admin/content_blocks/update_content_block.rb +1 -1
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +3 -1
- data/app/commands/decidim/admin/create_share_token.rb +39 -0
- data/app/commands/decidim/admin/create_taxonomy.rb +23 -0
- data/app/commands/decidim/admin/create_taxonomy_filter.rb +24 -0
- data/app/commands/decidim/admin/destroy_share_token.rb +22 -0
- data/app/commands/decidim/admin/destroy_taxonomy.rb +18 -0
- data/app/commands/decidim/admin/destroy_taxonomy_filter.rb +20 -0
- data/app/commands/decidim/admin/hide_menu_component.rb +37 -0
- data/app/commands/decidim/admin/hide_resource.rb +4 -3
- data/app/commands/decidim/admin/publish_all_participatory_space_private_users.rb +50 -0
- data/app/commands/decidim/admin/publish_component.rb +3 -0
- data/app/commands/decidim/admin/reorder_components.rb +47 -0
- data/app/commands/decidim/admin/reorder_taxonomies.rb +76 -0
- data/app/commands/decidim/admin/unhide_resource.rb +11 -3
- data/app/commands/decidim/admin/unpublish_all_participatory_space_private_users.rb +50 -0
- data/app/commands/decidim/admin/unreport_resource.rb +11 -3
- data/app/commands/decidim/admin/update_component_permissions.rb +53 -13
- data/app/commands/decidim/admin/update_participatory_space_private_user.rb +11 -0
- data/app/commands/decidim/admin/update_share_token.rb +24 -0
- data/app/commands/decidim/admin/update_taxonomy.rb +20 -0
- data/app/commands/decidim/admin/update_taxonomy_filter.rb +28 -0
- data/app/controllers/concerns/decidim/admin/component_taxonomies_helper.rb +19 -0
- data/app/controllers/concerns/decidim/admin/filterable.rb +15 -18
- data/app/controllers/concerns/decidim/admin/has_trashable_resources.rb +170 -0
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +2 -29
- data/app/controllers/concerns/decidim/admin/participatory_space_admin_context.rb +12 -2
- data/app/controllers/concerns/decidim/admin/taxonomies/filterable.rb +27 -0
- data/app/controllers/decidim/admin/application_controller.rb +1 -2
- data/app/controllers/decidim/admin/areas_controller.rb +1 -0
- data/app/controllers/decidim/admin/block_user_controller.rb +42 -0
- data/app/controllers/decidim/admin/component_permissions_controller.rb +2 -4
- data/app/controllers/decidim/admin/components_controller.rb +50 -9
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +59 -2
- data/app/controllers/decidim/admin/global_moderations_controller.rb +4 -0
- data/app/controllers/decidim/admin/moderated_users_controller.rb +26 -0
- data/app/controllers/decidim/admin/moderations_controller.rb +18 -0
- data/app/controllers/decidim/admin/newsletters_controller.rb +50 -7
- data/app/controllers/decidim/admin/resource_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -0
- data/app/controllers/decidim/admin/share_tokens_controller.rb +109 -7
- data/app/controllers/decidim/admin/taxonomies_controller.rb +129 -0
- data/app/controllers/decidim/admin/taxonomy_filters_controller.rb +112 -0
- data/app/controllers/decidim/admin/taxonomy_filters_selector_controller.rb +81 -0
- data/app/controllers/decidim/admin/taxonomy_items_controller.rb +91 -0
- data/app/forms/concerns/decidim/has_taxonomy_form_attributes.rb +57 -0
- data/app/forms/decidim/admin/block_users_form.rb +21 -0
- data/app/forms/decidim/admin/import_example_form.rb +1 -1
- data/app/forms/decidim/admin/newsletter_form.rb +1 -1
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +5 -0
- data/app/forms/decidim/admin/selective_newsletter_form.rb +46 -11
- data/app/forms/decidim/admin/share_token_form.rb +55 -0
- data/app/forms/decidim/admin/taxonomy_filter_form.rb +85 -0
- data/app/forms/decidim/admin/taxonomy_form.rb +20 -0
- data/app/forms/decidim/admin/taxonomy_item_form.rb +54 -0
- data/app/helpers/decidim/admin/application_helper.rb +0 -1
- data/app/helpers/decidim/admin/bulk_actions_helper.rb +0 -31
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +1 -1
- data/app/helpers/decidim/admin/moderations_helper.rb +1 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +57 -27
- data/app/helpers/decidim/admin/scopes_helper.rb +0 -6
- data/app/helpers/decidim/admin/search_form_helper.rb +1 -1
- data/app/helpers/decidim/admin/settings_helper.rb +85 -11
- data/app/jobs/decidim/admin/newsletter_job.rb +3 -1
- data/app/packs/entrypoints/decidim_admin.js +4 -0
- data/app/packs/src/decidim/admin/application.js +2 -0
- data/app/packs/src/decidim/admin/draggable-table.js +33 -0
- data/app/packs/src/decidim/admin/form.js +0 -1
- data/app/packs/src/decidim/admin/global_moderations.js +186 -0
- data/app/packs/src/decidim/admin/managed_moderated_users.js +186 -0
- data/app/packs/src/decidim/admin/newsletters.js +164 -82
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +3 -6
- data/app/packs/src/decidim/admin/sortable.js +28 -16
- data/app/packs/src/decidim/admin/taxonomy_filters.js +93 -0
- data/app/packs/stylesheets/decidim/admin/_component-show.scss +66 -5
- data/app/packs/stylesheets/decidim/admin/_legacy_foundation.scss +13 -0
- data/app/packs/stylesheets/decidim/admin/_select_picker.scss +20 -0
- data/app/packs/stylesheets/decidim/admin/_table-list.scss +22 -0
- data/app/packs/stylesheets/decidim/admin/_taxonomies.scss +74 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +3 -0
- data/app/permissions/decidim/admin/permissions.rb +32 -1
- data/app/queries/decidim/admin/newsletter_recipients.rb +50 -14
- data/app/views/decidim/admin/areas/index.html.erb +3 -0
- data/app/views/decidim/admin/block_user/bulk_new.html.erb +45 -0
- data/app/views/decidim/admin/components/_actions.html.erb +50 -33
- data/app/views/decidim/admin/components/{_component.html.erb → _component_row.html.erb} +10 -5
- data/app/views/decidim/admin/components/_components_table.html.erb +18 -0
- data/app/views/decidim/admin/components/_form.html.erb +0 -12
- data/app/views/decidim/admin/components/_taxonomy_filters_drawer.html.erb +2 -0
- data/app/views/decidim/admin/components/_visibility_label.html.erb +9 -0
- data/app/views/decidim/admin/components/index.html.erb +12 -14
- data/app/views/decidim/admin/components/manage_trash.html.erb +11 -0
- data/app/views/decidim/admin/moderated_users/_bulk-actions.html.erb +6 -0
- data/app/views/decidim/admin/moderated_users/bulk_actions/_block.html.erb +20 -0
- data/app/views/decidim/admin/moderated_users/bulk_actions/_dropdown.html.erb +40 -0
- data/app/views/decidim/admin/moderated_users/bulk_actions/_unblock.html.erb +20 -0
- data/app/views/decidim/admin/moderated_users/bulk_actions/_unreport.html.erb +20 -0
- data/app/views/decidim/admin/moderated_users/index.html.erb +14 -6
- data/app/views/decidim/admin/moderations/_bulk-actions.html.erb +7 -0
- data/app/views/decidim/admin/moderations/_moderation-tr.html.erb +50 -0
- data/app/views/decidim/admin/moderations/_moderations-thead.html.erb +18 -0
- data/app/views/decidim/admin/moderations/bulk_actions/_dropdown.html.erb +43 -0
- data/app/views/decidim/admin/moderations/bulk_actions/_hide.html.erb +20 -0
- data/app/views/decidim/admin/moderations/bulk_actions/_unhide.html.erb +20 -0
- data/app/views/decidim/admin/moderations/bulk_actions/_unreport.html.erb +20 -0
- data/app/views/decidim/admin/moderations/index.html.erb +13 -81
- data/app/views/decidim/admin/newsletters/confirm_recipients.html.erb +64 -0
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +44 -20
- data/app/views/decidim/admin/participatory_space_private_users/_form.html.erb +6 -0
- data/app/views/decidim/admin/participatory_space_private_users/edit.html.erb +19 -0
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +15 -1
- data/app/views/decidim/admin/resource_permissions/_options_form.html.erb +5 -0
- data/app/views/decidim/admin/resource_permissions/edit.html.erb +2 -2
- data/app/views/decidim/admin/scope_types/index.html.erb +3 -0
- data/app/views/decidim/admin/scopes/index.html.erb +3 -0
- data/app/views/decidim/admin/share_tokens/_form.html.erb +52 -0
- data/app/views/decidim/admin/share_tokens/edit.html.erb +33 -0
- data/app/views/decidim/admin/share_tokens/index.html.erb +47 -0
- data/app/views/decidim/admin/share_tokens/new.html.erb +69 -0
- data/app/views/decidim/admin/taxonomies/_filters.html.erb +19 -0
- data/app/views/decidim/admin/taxonomies/_form.html.erb +5 -0
- data/app/views/decidim/admin/taxonomies/_row.html.erb +40 -0
- data/app/views/decidim/admin/taxonomies/_row_children.html.erb +8 -0
- data/app/views/decidim/admin/taxonomies/_table.html.erb +86 -0
- data/app/views/decidim/admin/taxonomies/_taxonomy_actions.html.erb +15 -0
- data/app/views/decidim/admin/taxonomies/edit.html.erb +87 -0
- data/app/views/decidim/admin/taxonomies/index.html.erb +28 -0
- data/app/views/decidim/admin/taxonomies/new.html.erb +16 -0
- data/app/views/decidim/admin/taxonomy_filters/_check_boxes.html.erb +10 -0
- data/app/views/decidim/admin/taxonomy_filters/_form.html.erb +96 -0
- data/app/views/decidim/admin/taxonomy_filters/_table.html.erb +33 -0
- data/app/views/decidim/admin/taxonomy_filters/edit.html.erb +22 -0
- data/app/views/decidim/admin/taxonomy_filters/index.html.erb +26 -0
- data/app/views/decidim/admin/taxonomy_filters/new.html.erb +32 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/_check_boxes.html.erb +7 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/_component_table.html.erb +25 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/_taxonomies_select.html.erb +16 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/index.html.erb +1 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/new.html.erb +27 -0
- data/app/views/decidim/admin/taxonomy_filters_selector/show.html.erb +18 -0
- data/app/views/decidim/admin/taxonomy_items/_form.html.erb +8 -0
- data/app/views/decidim/admin/taxonomy_items/edit.html.erb +12 -0
- data/app/views/decidim/admin/taxonomy_items/new.html.erb +12 -0
- data/app/views/layouts/decidim/admin/taxonomy_filters.html.erb +17 -0
- data/app/views/layouts/decidim/admin/taxonomy_filters_selector.html.erb +10 -0
- data/config/locales/ar.yml +45 -37
- data/config/locales/bg.yml +48 -51
- data/config/locales/bs-BA.yml +1 -27
- data/config/locales/ca.yml +301 -50
- data/config/locales/cs.yml +299 -46
- data/config/locales/de.yml +301 -50
- data/config/locales/el.yml +1 -50
- data/config/locales/en.yml +301 -50
- data/config/locales/es-MX.yml +298 -47
- data/config/locales/es-PY.yml +298 -47
- data/config/locales/es.yml +298 -47
- data/config/locales/eu.yml +302 -51
- data/config/locales/fi-plain.yml +298 -47
- data/config/locales/fi.yml +298 -47
- data/config/locales/fr-CA.yml +184 -47
- data/config/locales/fr.yml +184 -47
- data/config/locales/ga-IE.yml +0 -23
- data/config/locales/gl.yml +1 -46
- data/config/locales/hu.yml +1 -51
- data/config/locales/id-ID.yml +0 -24
- data/config/locales/is-IS.yml +0 -30
- data/config/locales/it.yml +2 -46
- data/config/locales/ja.yml +299 -50
- data/config/locales/kaa.yml +0 -7
- data/config/locales/ko.yml +0 -50
- data/config/locales/lb.yml +1 -46
- data/config/locales/lt.yml +1 -50
- data/config/locales/lv.yml +1 -28
- data/config/locales/nl.yml +1 -46
- data/config/locales/no.yml +1 -46
- data/config/locales/pl.yml +3 -51
- data/config/locales/pt-BR.yml +38 -50
- data/config/locales/pt.yml +29 -49
- data/config/locales/ro-RO.yml +38 -52
- data/config/locales/ru.yml +1 -24
- data/config/locales/sk.yml +1 -28
- data/config/locales/sl.yml +0 -5
- data/config/locales/sq-AL.yml +0 -22
- data/config/locales/sr-CS.yml +1 -27
- data/config/locales/sv.yml +296 -46
- data/config/locales/th-TH.yml +0 -10
- data/config/locales/tr-TR.yml +1 -44
- data/config/locales/uk.yml +0 -23
- data/config/locales/zh-CN.yml +0 -38
- data/config/locales/zh-TW.yml +1 -50
- data/config/routes.rb +13 -12
- data/decidim-admin.gemspec +1 -1
- data/lib/decidim/admin/engine.rb +2 -1
- data/lib/decidim/admin/import/creator.rb +2 -6
- data/lib/decidim/admin/import/readers/json.rb +1 -1
- data/lib/decidim/admin/menu.rb +9 -1
- data/lib/decidim/admin/search_form_builder.rb +1 -1
- data/lib/decidim/admin/test/destroy_admin_examples.rb +2 -2
- data/lib/decidim/admin/test/filterable_examples.rb +100 -9
- data/lib/decidim/admin/test/forms/attachment_collection_form_examples.rb +1 -1
- data/lib/decidim/admin/test/forms/attachment_form_examples.rb +1 -1
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +2 -4
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +0 -1
- data/lib/decidim/admin/test/manage_moderations_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_resource_soft_deletion_examples.rb +113 -0
- data/lib/decidim/admin/test/manage_taxonomy_filters_examples.rb +127 -0
- data/lib/decidim/admin/test/taxonomy_filters_examples.rb +32 -0
- data/lib/decidim/admin/test.rb +3 -1
- data/lib/decidim/admin/version.rb +1 -1
- metadata +103 -29
- data/app/commands/decidim/admin/create_category.rb +0 -15
- data/app/commands/decidim/admin/destroy_category.rb +0 -15
- data/app/commands/decidim/admin/destroy_component.rb +0 -19
- data/app/commands/decidim/admin/update_category.rb +0 -11
- data/app/controllers/decidim/admin/categories_controller.rb +0 -98
- data/app/forms/decidim/admin/category_form.rb +0 -32
- data/app/helpers/decidim/admin/resource_scope_helper.rb +0 -52
- data/app/packs/src/decidim/admin/scope_picker_enabler.component.js +0 -12
- data/app/views/decidim/admin/categories/_form.html.erb +0 -18
- data/app/views/decidim/admin/categories/edit.html.erb +0 -19
- data/app/views/decidim/admin/categories/index.html.erb +0 -65
- data/app/views/decidim/admin/categories/new.html.erb +0 -19
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +0 -45
- data/lib/decidim/admin/test/commands/create_category_examples.rb +0 -74
- data/lib/decidim/admin/test/commands/destroy_category_examples.rb +0 -83
- data/lib/decidim/admin/test/commands/update_category_examples.rb +0 -76
- data/lib/decidim/admin/test/forms/category_form_examples.rb +0 -70
- data/lib/decidim/admin/test/manage_categories_examples.rb +0 -128
data/config/locales/no.yml
CHANGED
@@ -146,8 +146,6 @@
|
|
146
146
|
attachment:
|
147
147
|
new: Nytt vedlegg
|
148
148
|
browse: Bla gjennom
|
149
|
-
category:
|
150
|
-
new: Ny kategori
|
151
149
|
export: Eksporter alt
|
152
150
|
export-selection: Eksporter valg
|
153
151
|
import: Importer
|
@@ -235,23 +233,8 @@
|
|
235
233
|
justification: Begrunnelse
|
236
234
|
title: Blokker bruker %{name}
|
237
235
|
categories:
|
238
|
-
create:
|
239
|
-
error: Det oppstod et problem med å oppdatere denne kategorien.
|
240
|
-
success: Kategorien opprettet.
|
241
|
-
destroy:
|
242
|
-
error: Det oppstod et problem med å slette denne kategorien. Vennligst slett alle underkategorier først, sørg for at ingen andre enheter hører til denne kategorien, og prøv igjen.
|
243
|
-
success: Kategorien slettet.
|
244
|
-
edit:
|
245
|
-
title: Rediger kategori
|
246
|
-
update: Oppdater
|
247
236
|
index:
|
248
237
|
categories_title: Kategorier
|
249
|
-
new:
|
250
|
-
create: Opprett kategori
|
251
|
-
title: Ny kategori
|
252
|
-
update:
|
253
|
-
error: Det oppstod et problem med å oppdatere denne kategorien.
|
254
|
-
success: Kategorien oppdatert.
|
255
238
|
component_permissions:
|
256
239
|
update:
|
257
240
|
error: Det oppstod et problem med å oppdatere tillatelsene til denne komponenten.
|
@@ -260,9 +243,6 @@
|
|
260
243
|
create:
|
261
244
|
error: Det oppstod et problem med å opprette denne komponenten.
|
262
245
|
success: Komponent ble opprettet.
|
263
|
-
destroy:
|
264
|
-
error: Det oppstod et problem med å ødelegge denne komponenten.
|
265
|
-
success: Komponent ble slettet.
|
266
246
|
edit:
|
267
247
|
title: Rediger komponent
|
268
248
|
update: Oppdater
|
@@ -275,7 +255,6 @@
|
|
275
255
|
headers:
|
276
256
|
actions: Handlinger
|
277
257
|
name: Komponentnavn
|
278
|
-
scope: Komponenttype
|
279
258
|
type: Komponenttype
|
280
259
|
new:
|
281
260
|
add: Legg til komponent
|
@@ -325,8 +304,6 @@
|
|
325
304
|
FormPDF: PDF
|
326
305
|
JSON: JSON
|
327
306
|
filters:
|
328
|
-
category_id_eq:
|
329
|
-
label: Kategori
|
330
307
|
filter_label: Filter
|
331
308
|
invitation_accepted_at_present:
|
332
309
|
label: Invitasjonen er akseptert
|
@@ -374,8 +351,6 @@
|
|
374
351
|
values:
|
375
352
|
'false': Publisert
|
376
353
|
'true': Avpublisert
|
377
|
-
scope_id_eq:
|
378
|
-
label: Tema
|
379
354
|
search_label: Søk
|
380
355
|
search_placeholder:
|
381
356
|
name_or_nickname_or_email_cont: Søk %{collection} via email, navn eller kallenavn.
|
@@ -546,12 +521,8 @@
|
|
546
521
|
plural: Flertall
|
547
522
|
share_token:
|
548
523
|
fields:
|
549
|
-
created_at: Opprettet på
|
550
524
|
expires_at: Utløper
|
551
|
-
last_used_at: Sist brukt
|
552
525
|
times_used: Ganger brukt
|
553
|
-
token: Token
|
554
|
-
user: Opprettet av
|
555
526
|
static_page:
|
556
527
|
fields:
|
557
528
|
created_at: Opprettet på
|
@@ -643,7 +614,6 @@
|
|
643
614
|
confirm_delete: Er du sikker på at du vil slette dette nyhetsbrevet?
|
644
615
|
followers: 'følgere '
|
645
616
|
has_been_sent_to: 'Har blitt sendt til: '
|
646
|
-
no_scopes: Ingen tema
|
647
617
|
not_sent: Ikke sendt
|
648
618
|
participants: 'deltakere '
|
649
619
|
segmented_to: 'Segmentert til %{subject}: '
|
@@ -658,13 +628,10 @@
|
|
658
628
|
confirm_deliver: Er du sikker på at du vil levere dette nyhetsbrevet? Denne handlingen kan ikke angres.
|
659
629
|
deliver: Lever nyhetsbrev
|
660
630
|
followers_help: Sender nyhetsbrev til alle bekreftede brukere som følger noen av de valgte deltakerområdene på listen.
|
661
|
-
none: Ingen
|
662
631
|
participants_help: Sender nyhetsbrev til alle bekreftede brukere som har deltatt i noen av de valgte deltakerområdene på listen.
|
663
632
|
recipients_count: Dette nyhetsbrevet vil bli sendt til <strong id='recipients_count'>%{count}</strong> brukere.
|
664
|
-
scopes_help: Sender nyhetsbrev til brukere som har noen av de valgte temaene aktivert i kontoens "Mine interesser" innstillinger.
|
665
|
-
select_scopes: Filtrer for brukere som har aktivert et valgt tema i innstillingene for Mine interesser.
|
666
633
|
select_spaces: Velg rom for å segmentere nyhetsbrevet
|
667
|
-
|
634
|
+
send_to_all_users: Send til alle brukere
|
668
635
|
title: Velg mottakere som skal leveres
|
669
636
|
warning: "<strong>Oppmerksomhet:</strong> Dette nyhetsbrevet vil bare bli sendt til brukere som har aktivert <em>Jeg ønsker å motta nyhetsbrev</em> i varslingsinnstillingene."
|
670
637
|
show:
|
@@ -766,10 +733,6 @@
|
|
766
733
|
title: Endre tillatelser
|
767
734
|
update:
|
768
735
|
success: Tillatelsene ble oppdatert.
|
769
|
-
resources:
|
770
|
-
index:
|
771
|
-
headers:
|
772
|
-
scope: Tema
|
773
736
|
scope_types:
|
774
737
|
create:
|
775
738
|
error: Det oppstod et problem med å lage en ny tematype.
|
@@ -801,15 +764,7 @@
|
|
801
764
|
success: Temaet ble oppdatert
|
802
765
|
share_tokens:
|
803
766
|
actions:
|
804
|
-
confirm_destroy: Er du sikker på at du vil slette denne token?
|
805
767
|
destroy: Slett
|
806
|
-
share: Del
|
807
|
-
destroy:
|
808
|
-
error: Et problem oppstod under ødelggelsen av token.
|
809
|
-
success: Token ble ødelagt.
|
810
|
-
share_tokens:
|
811
|
-
help: Disse tokenene brukes til å dele denne upubliserte ressursen til hvilken som helst bruker. De vil bli skjult når ressursen publiseres. Klikk på tokenenes deleikon for å besøke den delte URL-en.
|
812
|
-
title: Del tokener
|
813
768
|
shared:
|
814
769
|
gallery:
|
815
770
|
add_images: Legg til bilder
|
data/config/locales/pl.yml
CHANGED
@@ -183,8 +183,6 @@ pl:
|
|
183
183
|
attachment_collection:
|
184
184
|
new: Nowy folder załącznika
|
185
185
|
browse: Przeglądaj
|
186
|
-
category:
|
187
|
-
new: Nowa kategoria
|
188
186
|
export: Eksportuj wszystko
|
189
187
|
export-selection: Eksportuj wybrane
|
190
188
|
import: Importuj
|
@@ -203,7 +201,6 @@ pl:
|
|
203
201
|
verify: Zweryfikuj
|
204
202
|
admin_terms_of_service:
|
205
203
|
accept:
|
206
|
-
error: Wystąpił błąd podczas akceptacji warunków użytkowania administratora.
|
207
204
|
success: Świetnie! Zaakceptowano warunki użytkowania administratora.
|
208
205
|
actions:
|
209
206
|
accept: Zgadzam się z warunkami
|
@@ -294,23 +291,8 @@ pl:
|
|
294
291
|
justification: Uzasadnienie
|
295
292
|
title: Zablokuj użytkownika %{name}
|
296
293
|
categories:
|
297
|
-
create:
|
298
|
-
error: Podczas tworzenia tej kategorii wystąpił błąd.
|
299
|
-
success: Utworzono kategorię.
|
300
|
-
destroy:
|
301
|
-
error: Podczas usuwania tej kategorii wystąpił błąd. Usuń najpierw podkategorię, upewnij się, że żaden element nie należy do tej kategorii i spróbuj ponownie.
|
302
|
-
success: Kategoria została usunięta.
|
303
|
-
edit:
|
304
|
-
title: Edytuj kategorię
|
305
|
-
update: Aktualizuj
|
306
294
|
index:
|
307
295
|
categories_title: Kategorie
|
308
|
-
new:
|
309
|
-
create: Utwórz kategorię
|
310
|
-
title: Nowa kategoria
|
311
|
-
update:
|
312
|
-
error: Podczas aktualizowania tej kategorii wystąpił błąd.
|
313
|
-
success: Kategoria została zaktualizowana.
|
314
296
|
component_permissions:
|
315
297
|
update:
|
316
298
|
error: Wystąpił błąd podczas aktualizowania uprawnień dla tego komponentu.
|
@@ -320,9 +302,6 @@ pl:
|
|
320
302
|
error: Wystąpił błąd podczas tworzenia tego komponentu.
|
321
303
|
success: Komponent został pomyślnie utworzony.
|
322
304
|
success_landing_page: Komponent został pomyślnie utworzony. Możesz dodać blok zawartości dla tego komponentu w domu przestrzeni. Przejdź do <a href="%{landing_page_path}">strony startowej</a>, aby ją skonfigurować.
|
323
|
-
destroy:
|
324
|
-
error: Wystąpił błąd podczas usuwania tego komponentu.
|
325
|
-
success: Komponent został pomyślnie usunięty.
|
326
305
|
edit:
|
327
306
|
title: Edytuj komponent
|
328
307
|
update: Aktualizuj
|
@@ -335,7 +314,6 @@ pl:
|
|
335
314
|
headers:
|
336
315
|
actions: Działania
|
337
316
|
name: Nazwa komponentu
|
338
|
-
scope: Zakres komponentu
|
339
317
|
type: Typ komponentu
|
340
318
|
new:
|
341
319
|
add: Dodaj komponent
|
@@ -365,7 +343,6 @@ pl:
|
|
365
343
|
user_name: Użytkownik
|
366
344
|
content_blocks:
|
367
345
|
create:
|
368
|
-
error: Wystąpił błąd podczas tworzenia bloku treści.
|
369
346
|
success: Blok treści został utworzony.
|
370
347
|
destroy:
|
371
348
|
error: Wystąpił problem podczas próby usunięcia tego bloku treści.
|
@@ -399,8 +376,6 @@ pl:
|
|
399
376
|
JSON: JSON
|
400
377
|
notice: Trwa eksportowanie. Po zakończeniu otrzymasz wiadomość e-mail.
|
401
378
|
filters:
|
402
|
-
category_id_eq:
|
403
|
-
label: Kategoria
|
404
379
|
filter_label: Filtr
|
405
380
|
invitation_accepted_at_present:
|
406
381
|
label: Zaproszenie zaakceptowane
|
@@ -449,8 +424,6 @@ pl:
|
|
449
424
|
'false': Opublikowany
|
450
425
|
'true': Nieopublikowany
|
451
426
|
remove_all: Usuń wszystkie
|
452
|
-
scope_id_eq:
|
453
|
-
label: Zakres
|
454
427
|
search_label: Szukaj
|
455
428
|
search_placeholder:
|
456
429
|
name_or_nickname_or_email_cont: Przeszukaj %{collection} według adresu e-mail, nazwiska lub nazwy użytkownika.
|
@@ -648,12 +621,8 @@ pl:
|
|
648
621
|
plural: Liczba mnoga
|
649
622
|
share_token:
|
650
623
|
fields:
|
651
|
-
created_at: Utworzono
|
652
624
|
expires_at: Wygasa
|
653
|
-
last_used_at: Ostatnio używane
|
654
625
|
times_used: Ilość użyć
|
655
|
-
token: Token
|
656
|
-
user: Utworzony przez
|
657
626
|
static_page:
|
658
627
|
fields:
|
659
628
|
created_at: Utworzono
|
@@ -751,7 +720,6 @@ pl:
|
|
751
720
|
confirm_delete: Czy na pewno chcesz usunąć ten newsletter?
|
752
721
|
followers: 'obserwujący '
|
753
722
|
has_been_sent_to: 'Wysłano do: '
|
754
|
-
no_scopes: Brak zakresów
|
755
723
|
not_sent: Nie wysłano
|
756
724
|
participants: 'użytkownicy '
|
757
725
|
segmented_to: 'Podzielone na %{subject}: '
|
@@ -766,13 +734,10 @@ pl:
|
|
766
734
|
confirm_deliver: Czy na pewno chcesz dostarczyć ten newsletter? Nie można cofnąć tej czynności.
|
767
735
|
deliver: Dostarcz newsletter
|
768
736
|
followers_help: Wysyła newsletter do wszystkich potwierdzonych użytkowników, którzy obserwują dowolne przestrzenie partycypacyjne z tej listy.
|
769
|
-
none: Bez tematu
|
770
737
|
participants_help: Wysyła newsletter do wszystkich potwierdzonych użytkowników, którzy uczestniczyli w którejkolwiek z przestrzeni partycypacyjnych z tej listy.
|
771
738
|
recipients_count: Ten newsletter zostanie wysłany do <strong id='recipients_count'>%{count}</strong> użytkowników.
|
772
|
-
scopes_help: Wysyła newsletter do użytkowników, którzy mają dowolny z wybranych zakresów ustawiony jako aktywny w zakładce konta „Moje zainteresowania”.
|
773
|
-
select_scopes: Filtruj według użytkowników, którzy mają dowolny z wybranych zakresów ustawiony jako aktywny w zakładce konta „Moje zainteresowania”.
|
774
739
|
select_spaces: Wybierz przestrzenie, aby podzielić newsletter
|
775
|
-
|
740
|
+
send_to_all_users: Wyślij do wszystkich użytkowników
|
776
741
|
title: Wybierz odbiorców
|
777
742
|
warning: "<strong>Uwaga:</strong> Ten newsletter zostanie wysyłany tylko do użytkowników, którzy w ustawieniach powiadomień aktywowali opcję <em>Chcę otrzymywać newsletter</em>."
|
778
743
|
send:
|
@@ -789,7 +754,6 @@ pl:
|
|
789
754
|
success: Newsletter został zaktualizowany. Przeczytaj go przed wysłaniem.
|
790
755
|
officializations:
|
791
756
|
block:
|
792
|
-
error: Wystąpił błąd podczas blokowania uczestnika.
|
793
757
|
success: Uczestnik został zablokowany.
|
794
758
|
create:
|
795
759
|
success: Potwierdzenie autentyczności uczestnika powiodło się.
|
@@ -823,7 +787,6 @@ pl:
|
|
823
787
|
show: Pokaż
|
824
788
|
title: Pokaż adres e-mail uczestnika
|
825
789
|
unblock:
|
826
|
-
error: Wystąpił błąd podczas odblokowywania użytkownika.
|
827
790
|
success: Odblokowanie uczestnika powiodło się.
|
828
791
|
organization:
|
829
792
|
edit:
|
@@ -923,12 +886,10 @@ pl:
|
|
923
886
|
edit:
|
924
887
|
submit: Zatwierdź
|
925
888
|
title: Edytuj uprawnienia
|
889
|
+
options_form:
|
890
|
+
ephemeral_warning: Aby włączyć tę metodę autoryzacji, należy <a href="%{path}">odwołać</a> wszystkie istniejące uprawnienia. Minimalizuje to ryzyko konfliktów weryfikacji. Wszystkie autoryzacje tego typu zostaną automatycznie cofnięte w organizacji w przypadku wprowadzenia zmian dodających tę metodę lub modyfikujących jej konfigurację po dodaniu.
|
926
891
|
update:
|
927
892
|
success: Uprawnienia zostały pomyślnie zaktualizowane.
|
928
|
-
resources:
|
929
|
-
index:
|
930
|
-
headers:
|
931
|
-
scope: Zakres
|
932
893
|
scope_types:
|
933
894
|
create:
|
934
895
|
error: Podczas tworzenia nowego typu zakresu wystąpił błąd.
|
@@ -962,16 +923,7 @@ pl:
|
|
962
923
|
success: Zakres został zaktualizowany
|
963
924
|
share_tokens:
|
964
925
|
actions:
|
965
|
-
confirm_destroy: Czy jesteś pewien, że chcesz usunąć ten token?
|
966
926
|
destroy: Usuń
|
967
|
-
share: Udostępnij
|
968
|
-
destroy:
|
969
|
-
error: Wystąpił błąd podczas usuwania tokenu.
|
970
|
-
success: Token został usunięty.
|
971
|
-
share_tokens:
|
972
|
-
empty: Brak aktywnych tokenów.
|
973
|
-
help: Te tokeny są używane do publicznego udostępniania nieopublikowanego zasobu każdemu użytkownikowi. Zostaną one ukryte, gdy zasób zostanie opublikowany. Kliknij na ikonę udostępniania tokenu aby odwiedzić udostępniany adres URL.
|
974
|
-
title: Udostępnij tokeny
|
975
927
|
shared:
|
976
928
|
adjacent_navigation:
|
977
929
|
next: Następny
|
data/config/locales/pt-BR.yml
CHANGED
@@ -183,8 +183,6 @@ pt-BR:
|
|
183
183
|
attachment_collection:
|
184
184
|
new: Nova pasta de anexos
|
185
185
|
browse: Navegar
|
186
|
-
category:
|
187
|
-
new: Nova categoria
|
188
186
|
export: Exportar tudo
|
189
187
|
export-selection: Exportar selecionado
|
190
188
|
import: Importar
|
@@ -294,23 +292,8 @@ pt-BR:
|
|
294
292
|
justification: Justificativa
|
295
293
|
title: Bloquear usuário %{name}
|
296
294
|
categories:
|
297
|
-
create:
|
298
|
-
error: Ocorreu um erro ao criar esta categoria.
|
299
|
-
success: Categoria criada com sucesso.
|
300
|
-
destroy:
|
301
|
-
error: Ocorreu um erro ao apagar esta categoria. Por favor apague qualquer subcategoria primeiro, certifique-se de que nenhuma outra entidade pertence a esta categoria e tente novamente.
|
302
|
-
success: Categoria excluída com sucesso.
|
303
|
-
edit:
|
304
|
-
title: Editar categoria
|
305
|
-
update: Atualizar
|
306
295
|
index:
|
307
296
|
categories_title: Categorias
|
308
|
-
new:
|
309
|
-
create: Criar categoria
|
310
|
-
title: Nova categoria
|
311
|
-
update:
|
312
|
-
error: Ocorreu um erro ao atualizar esta categoria.
|
313
|
-
success: Categoria atualizada com sucesso.
|
314
297
|
component_permissions:
|
315
298
|
update:
|
316
299
|
error: Ocorreu um erro ao atualizar as permissões deste componente.
|
@@ -320,9 +303,6 @@ pt-BR:
|
|
320
303
|
error: Ocorreu um erro ao criar esse componente.
|
321
304
|
success: Componente criado com sucesso.
|
322
305
|
success_landing_page: Componente criado com sucesso. Você pode adicionar um bloco de conteúdo para este componente na página inicial do espaço. Acesse <a href="%{landing_page_path}">Página inicial</a> para configurá-la.
|
323
|
-
destroy:
|
324
|
-
error: Ocorreu um erro ao destruir esse componente.
|
325
|
-
success: Componente excluído com sucesso.
|
326
306
|
edit:
|
327
307
|
title: Editar componente
|
328
308
|
update: Atualizar
|
@@ -330,13 +310,15 @@ pt-BR:
|
|
330
310
|
default_step_settings: Configurações de etapa padrão
|
331
311
|
global_settings: Configurações globais
|
332
312
|
step_settings: Configurações de etapa
|
313
|
+
hide:
|
314
|
+
success: O componente foi escondido do menu com sucesso.
|
333
315
|
index:
|
334
316
|
add: Adicionar componente
|
335
317
|
headers:
|
336
318
|
actions: Ações
|
337
319
|
name: Nome do componente
|
338
|
-
scope: Escopo de componente
|
339
320
|
type: Tipo de componente
|
321
|
+
visibility: Visibilidade
|
340
322
|
new:
|
341
323
|
add: Adicionar componente
|
342
324
|
title: 'Adicionar componente: %{name}'
|
@@ -348,6 +330,10 @@ pt-BR:
|
|
348
330
|
update:
|
349
331
|
error: Ocorreu um erro ao atualizar este componente.
|
350
332
|
success: O componente foi atualizado com sucesso.
|
333
|
+
visibility_label:
|
334
|
+
menu_hidden: Menu escondido
|
335
|
+
published: Publicado
|
336
|
+
unpublished: Não publicado
|
351
337
|
conflicts:
|
352
338
|
attempts: Tentativas
|
353
339
|
'false': 'Não'
|
@@ -366,7 +352,6 @@ pt-BR:
|
|
366
352
|
user_name: Usuário
|
367
353
|
content_blocks:
|
368
354
|
create:
|
369
|
-
error: Ocorreu um erro ao criar o bloco de conteúdo.
|
370
355
|
success: Bloco de conteúdo criado com sucesso.
|
371
356
|
destroy:
|
372
357
|
error: Ocorreu um problema ao tentar excluir esse bloco de conteúdo.
|
@@ -400,8 +385,6 @@ pt-BR:
|
|
400
385
|
JSON: JSON
|
401
386
|
notice: Sua exportação está atualmente em progresso. Você receberá um e-mail quando estiver completa.
|
402
387
|
filters:
|
403
|
-
category_id_eq:
|
404
|
-
label: Categoria
|
405
388
|
filter_label: Filtro
|
406
389
|
invitation_accepted_at_present:
|
407
390
|
label: Convite aceito
|
@@ -449,8 +432,6 @@ pt-BR:
|
|
449
432
|
values:
|
450
433
|
'false': Publicado
|
451
434
|
'true': Não publicado
|
452
|
-
scope_id_eq:
|
453
|
-
label: Escopo
|
454
435
|
search_label: Buscar
|
455
436
|
search_placeholder:
|
456
437
|
name_or_nickname_or_email_cont: Pesquise %{collection} por e-mail, nome ou apelido.
|
@@ -636,12 +617,8 @@ pt-BR:
|
|
636
617
|
plural: Plural
|
637
618
|
share_token:
|
638
619
|
fields:
|
639
|
-
created_at: Criado em
|
640
620
|
expires_at: Expira em
|
641
|
-
last_used_at: Última uso
|
642
621
|
times_used: Tempo Usado
|
643
|
-
token: Token
|
644
|
-
user: Criado por
|
645
622
|
static_page:
|
646
623
|
fields:
|
647
624
|
created_at: Criado em
|
@@ -739,7 +716,6 @@ pt-BR:
|
|
739
716
|
confirm_delete: Deseja mesmo excluir esta newsletter?
|
740
717
|
followers: 'seguidores '
|
741
718
|
has_been_sent_to: 'Foi enviado para: '
|
742
|
-
no_scopes: Nenhum escopo
|
743
719
|
not_sent: Não enviado
|
744
720
|
participants: 'participantes '
|
745
721
|
segmented_to: 'Segmentado para %{subject}: '
|
@@ -754,13 +730,10 @@ pt-BR:
|
|
754
730
|
confirm_deliver: Deseja mesmo enviar este boletim informativo? Essa ação não pode ser desfeita.
|
755
731
|
deliver: Entregar boletim informativo
|
756
732
|
followers_help: Enviar newsletter para todos os usuários confirmados que seguem quaisquer espaços participativos selecionados na lista.
|
757
|
-
none: Nenhum
|
758
733
|
participants_help: Enviar newsletter para todos os usuários confirmados que participaram de qualquer um dos espaços participativos selecionados na lista.
|
759
734
|
recipients_count: Esta newsletter será enviada para <strong id='recipients_count'>%{count}</strong> usuários.
|
760
|
-
scopes_help: Enviar newsletter para os usuários que tenham qualquer um dos escopos selecionados nas configurações "Meus Interesses" de sua conta.
|
761
|
-
select_scopes: Filtrar por usuários que ativaram qualquer escopo selecionado nas configurações de meus interesses em sua conta.
|
762
735
|
select_spaces: Selecionar espaços para segmentar a newsletter
|
763
|
-
|
736
|
+
send_to_all_users: Enviar para todos os usuários
|
764
737
|
title: Selecionar destinatários para entregar
|
765
738
|
warning: "<strong>Atenção:</strong> Esta newsletter será enviada apenas para usuários que ativaram <em>quero receber newsletters</em> nas configurações de notificação."
|
766
739
|
send:
|
@@ -777,7 +750,6 @@ pt-BR:
|
|
777
750
|
success: Newsletter atualizada com sucesso. Por favor, reveja-o antes de enviar.
|
778
751
|
officializations:
|
779
752
|
block:
|
780
|
-
error: Houve um erro ao bloquear o usuário.
|
781
753
|
success: Participante bloqueado com sucesso.
|
782
754
|
create:
|
783
755
|
success: Participante oficializado com sucesso.
|
@@ -811,7 +783,6 @@ pt-BR:
|
|
811
783
|
show: Mostrar
|
812
784
|
title: Mostrar endereço de e-mail do participante
|
813
785
|
unblock:
|
814
|
-
error: Ocorreu um erro ao desbloquear o participante.
|
815
786
|
success: Participante desbloqueado com sucesso.
|
816
787
|
organization:
|
817
788
|
edit:
|
@@ -911,10 +882,6 @@ pt-BR:
|
|
911
882
|
title: Editar permissões
|
912
883
|
update:
|
913
884
|
success: Permissões atualizadas com sucesso.
|
914
|
-
resources:
|
915
|
-
index:
|
916
|
-
headers:
|
917
|
-
scope: Escopo
|
918
885
|
scope_types:
|
919
886
|
create:
|
920
887
|
error: Ocorreu um erro ao criar um novo tipo de âmbito.
|
@@ -948,16 +915,7 @@ pt-BR:
|
|
948
915
|
success: Âmbito atualizado com sucesso
|
949
916
|
share_tokens:
|
950
917
|
actions:
|
951
|
-
confirm_destroy: Você tem certeza que quer excluir este token?
|
952
918
|
destroy: Excluir
|
953
|
-
share: Compartilhar
|
954
|
-
destroy:
|
955
|
-
error: Houve um problema ao destruir o token.
|
956
|
-
success: Token excluído com sucesso.
|
957
|
-
share_tokens:
|
958
|
-
empty: Não há tokens ativos.
|
959
|
-
help: Esses tokens são usados para compartilhar publicamente esse recurso não publicado para qualquer usuário. Eles estarão ocultos quando o recurso estiver publicado. Clique no ícone de compartilhamento do token para visitar a URL compartilhável.
|
960
|
-
title: Compartilhar tokens
|
961
919
|
shared:
|
962
920
|
gallery:
|
963
921
|
add_images: Adicione imagens
|
@@ -1005,6 +963,36 @@ pt-BR:
|
|
1005
963
|
update:
|
1006
964
|
error: Ocorreu um erro ao atualizar esta página.
|
1007
965
|
success: Página atualizada com sucesso.
|
966
|
+
taxonomies:
|
967
|
+
edit:
|
968
|
+
back: Retornar
|
969
|
+
new_item: Novo item
|
970
|
+
table:
|
971
|
+
to_next_page: Arraste para a próxima página
|
972
|
+
to_prev_page: Arraste sobre a página anterior
|
973
|
+
taxonomy_filters:
|
974
|
+
actions:
|
975
|
+
new_taxonomy_filter: Novo filtro de taxonomia
|
976
|
+
create:
|
977
|
+
success: Filtro de taxonomia criado com sucesso.
|
978
|
+
edit:
|
979
|
+
back: Retornar
|
980
|
+
new:
|
981
|
+
back: Voltar
|
982
|
+
create: Criar filtro de taxonomia
|
983
|
+
title: Novo filtro de taxonomia
|
984
|
+
table:
|
985
|
+
actions: Ações
|
986
|
+
destroy: Deletar
|
987
|
+
edit: Editar
|
988
|
+
taxonomy_items:
|
989
|
+
edit:
|
990
|
+
title: Editar item em %{taxonomy}
|
991
|
+
update: Atualizar item
|
992
|
+
new:
|
993
|
+
create: Criar item
|
994
|
+
none: Nenhum
|
995
|
+
title: Novo item em %{taxonomy}
|
1008
996
|
titles:
|
1009
997
|
admin_log: Log de administração
|
1010
998
|
area_types: Tipos de área
|