decidim-admin 0.23.2 → 0.24.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_admin_manifest.js +1 -0
- data/app/assets/javascripts/decidim/admin/application.js.es6 +3 -1
- data/app/assets/javascripts/decidim/admin/budget_rule_toggler.component.js.es6 +23 -20
- data/app/assets/javascripts/decidim/admin/bundle.js +10 -17
- data/app/assets/javascripts/decidim/admin/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/admin/form.js.es6 +1 -0
- data/app/assets/javascripts/decidim/admin/import_guidance.js.es6 +29 -0
- data/app/assets/javascripts/decidim/admin/moderations.js.es6 +24 -0
- data/app/assets/javascripts/decidim/admin/proposal_infinite_edit.js.es6 +20 -0
- data/app/assets/javascripts/decidim/admin/subform_multi_toggler.component.js.es6 +2 -2
- data/app/assets/javascripts/decidim/admin/subform_toggler.component.js.es6 +2 -2
- data/app/assets/javascripts/decidim/admin/user_moderations.js +2 -0
- data/app/assets/stylesheets/decidim/admin/_variables.scss +9 -0
- data/app/assets/stylesheets/decidim/admin/components/_dropdown-menu.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +13 -0
- data/app/assets/stylesheets/decidim/admin/extra/_block_user.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_moderations.scss +39 -0
- data/app/assets/stylesheets/decidim/admin/modules/_modules.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/modules/_reveal.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +6 -3
- data/app/assets/stylesheets/decidim/admin/modules/_user-login.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/user_moderations.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +1 -0
- data/app/cells/decidim/admin/content_block/show.erb +1 -1
- data/app/cells/decidim/admin/content_block_cell.rb +4 -0
- data/app/commands/decidim/admin/block_user.rb +70 -0
- data/app/commands/decidim/admin/create_import.rb +29 -0
- data/app/commands/decidim/admin/create_participatory_space_admin_user_actions.rb +98 -0
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/create_static_page.rb +2 -1
- data/app/commands/decidim/admin/hide_resource.rb +21 -0
- data/app/commands/decidim/admin/impersonate_user.rb +17 -1
- data/app/commands/decidim/admin/promote_managed_user.rb +10 -0
- data/app/commands/decidim/admin/reorder_content_blocks.rb +6 -3
- data/app/commands/decidim/admin/transfer_user.rb +78 -0
- data/app/commands/decidim/admin/unblock_user.rb +48 -0
- data/app/commands/decidim/admin/unreport_user.rb +46 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +12 -4
- data/app/commands/decidim/admin/update_static_page.rb +2 -1
- data/app/commands/decidim/admin/verify_user_group.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +47 -0
- data/app/controllers/concerns/decidim/admin/landing_page.rb +105 -0
- data/app/controllers/concerns/decidim/admin/landing_page_content_blocks.rb +118 -0
- data/app/controllers/concerns/decidim/moderations/admin/filterable.rb +54 -0
- data/app/controllers/decidim/admin/block_user_controller.rb +60 -0
- data/app/controllers/decidim/admin/components/base_controller.rb +1 -0
- data/app/controllers/decidim/admin/conflicts_controller.rb +46 -0
- data/app/controllers/decidim/admin/exports_controller.rb +1 -2
- data/app/controllers/decidim/admin/global_moderations/reports_controller.rb +18 -0
- data/app/controllers/decidim/admin/global_moderations_controller.rb +32 -0
- data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/imports_controller.rb +52 -0
- data/app/controllers/decidim/admin/moderated_users_controller.rb +44 -0
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +39 -0
- data/app/controllers/decidim/admin/moderations_controller.rb +31 -7
- data/app/controllers/decidim/admin/officializations_controller.rb +3 -3
- data/app/controllers/decidim/admin/organization_homepage_controller.rb +6 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +7 -0
- data/app/events/decidim/resource_hidden_event.rb +37 -0
- data/app/forms/decidim/admin/block_user_form.rb +25 -0
- data/app/forms/decidim/admin/import_form.rb +85 -0
- data/app/forms/decidim/admin/organization_appearance_form.rb +1 -2
- data/app/forms/decidim/admin/static_page_form.rb +6 -1
- data/app/forms/decidim/admin/transfer_user_form.rb +19 -0
- data/app/helpers/decidim/admin/admin_terms_helper.rb +0 -7
- data/app/helpers/decidim/admin/application_helper.rb +5 -4
- data/app/helpers/decidim/admin/exports_helper.rb +2 -2
- data/app/helpers/decidim/admin/filterable_helper.rb +3 -2
- data/app/helpers/decidim/admin/imports_helper.rb +43 -0
- data/app/helpers/decidim/admin/menu_helper.rb +10 -0
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +40 -0
- data/app/helpers/decidim/admin/moderations_helper.rb +36 -0
- data/app/helpers/decidim/admin/newsletters_helper.rb +4 -10
- data/app/helpers/decidim/admin/settings_helper.rb +2 -1
- data/app/helpers/decidim/admin/sidebar_menu_helper.rb +13 -0
- data/app/helpers/decidim/admin/user_moderations_helper.rb +6 -0
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +1 -1
- data/app/jobs/decidim/admin/verify_user_group_from_csv_job.rb +1 -1
- data/app/permissions/decidim/admin/permissions.rb +7 -6
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +1 -1
- data/app/presenters/decidim/admin/secondary_menu_presenter.rb +26 -0
- data/app/queries/decidim/admin/active_users_counter.rb +1 -2
- data/app/queries/decidim/admin/user_filter.rb +1 -2
- data/app/views/decidim/admin/admin_terms/show.html.erb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/index.html.erb +1 -1
- data/app/views/decidim/admin/block_user/new.html.erb +22 -0
- data/app/views/decidim/admin/categories/index.html.erb +1 -1
- data/app/views/decidim/admin/components/_component.html.erb +12 -0
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/conflicts/edit.html.erb +46 -0
- data/app/views/decidim/admin/conflicts/index.html.erb +34 -0
- data/app/views/decidim/admin/dashboard/show.html.erb +2 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/_dropdown.html.erb +9 -0
- data/app/views/decidim/admin/imports/new.html.erb +57 -0
- data/app/views/decidim/admin/moderated_users/_report.html.erb +10 -0
- data/app/views/decidim/admin/moderated_users/index.html.erb +78 -0
- data/app/views/decidim/admin/moderations/_report.html.erb +1 -1
- data/app/views/decidim/admin/moderations/index.html.erb +28 -9
- data/app/views/decidim/admin/moderations/reports/index.html.erb +102 -0
- data/app/views/decidim/admin/moderations/reports/show.html.erb +62 -0
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +2 -2
- data/app/views/decidim/admin/officializations/index.html.erb +13 -4
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +0 -4
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +1 -1
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +4 -4
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/shared/landing_page/edit.html.erb +47 -0
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +15 -0
- data/app/views/decidim/admin/static_pages/_form.html.erb +6 -0
- data/app/views/decidim/admin/users/index.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_application.html.erb +5 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/global_moderations.html.erb +7 -0
- data/app/views/layouts/decidim/admin/newsletters.erb +1 -1
- data/app/views/layouts/decidim/admin/settings.html.erb +2 -33
- data/app/views/layouts/decidim/admin/users.html.erb +11 -0
- data/config/locales/ar.yml +0 -5
- data/config/locales/bg.yml +0 -1
- data/config/locales/ca.yml +149 -4
- data/config/locales/cs.yml +151 -6
- data/config/locales/de.yml +150 -5
- data/config/locales/el.yml +62 -5
- data/config/locales/en.yml +150 -5
- data/config/locales/es-MX.yml +148 -3
- data/config/locales/es-PY.yml +148 -3
- data/config/locales/es.yml +148 -3
- data/config/locales/eu.yml +0 -3
- data/config/locales/fi-plain.yml +148 -3
- data/config/locales/fi.yml +148 -3
- data/config/locales/fr-CA.yml +139 -4
- data/config/locales/fr.yml +139 -4
- data/config/locales/gl.yml +121 -5
- data/config/locales/hu.yml +13 -5
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +36 -3
- data/config/locales/it.yml +59 -5
- data/config/locales/ja.yml +41 -8
- data/config/locales/lv.yml +0 -5
- data/config/locales/nl.yml +120 -7
- data/config/locales/no.yml +11 -5
- data/config/locales/pl.yml +166 -20
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +21 -5
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -5
- data/config/locales/sl.yml +0 -1
- data/config/locales/sr-CS.yml +0 -3
- data/config/locales/sv.yml +50 -4
- data/config/locales/tr-TR.yml +81 -4
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -5
- data/config/routes.rb +21 -1
- data/lib/decidim/admin.rb +6 -0
- data/lib/decidim/admin/engine.rb +76 -1
- data/lib/decidim/admin/import.rb +12 -0
- data/lib/decidim/admin/import/creator.rb +82 -0
- data/lib/decidim/admin/import/importer.rb +82 -0
- data/lib/decidim/admin/import/importer_factory.rb +17 -0
- data/lib/decidim/admin/import/readers.rb +39 -0
- data/lib/decidim/admin/import/readers/base.rb +31 -0
- data/lib/decidim/admin/import/readers/csv.rb +23 -0
- data/lib/decidim/admin/import/readers/json.rb +25 -0
- data/lib/decidim/admin/import/readers/xls.rb +25 -0
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +6 -6
- data/lib/decidim/admin/test/commands/create_category_examples.rb +6 -6
- data/lib/decidim/admin/test/filterable_examples.rb +1 -8
- data/lib/decidim/admin/test/manage_moderations_examples.rb +68 -4
- data/lib/decidim/admin/version.rb +1 -1
- metadata +71 -15
- data/app/assets/javascripts/decidim/admin/gallery.js.es6 +0 -5
data/config/locales/lv.yml
CHANGED
@@ -61,7 +61,6 @@ lv:
|
|
61
61
|
rich_text_editor_in_public_views: Iespējot bagātinātā teksta redaktoru dalībniekiem
|
62
62
|
secondary_color: Sekundārais
|
63
63
|
send_welcome_notification: Nosūtīt sveiciena paziņojumu
|
64
|
-
show_statistics: Rādīt statistiku
|
65
64
|
success_color: Panākumi
|
66
65
|
time_zone: Laika josla
|
67
66
|
tos_version: Pakalpojumu sniegšanas noteikumu versija
|
@@ -136,7 +135,6 @@ lv:
|
|
136
135
|
error: Piekrītot administratora lietošanas noteikumiem, radās kļūda.
|
137
136
|
success: Lieliski! Jūs esat piekritis administratora lietošanas noteikumiem.
|
138
137
|
actions:
|
139
|
-
accept: Es piekrītu šiem administratora noteikumiem
|
140
138
|
are_you_sure: Vai tiešām nepiekrītat administratora noteikumiem?
|
141
139
|
refuse: Nepiekrist administratora noteikumiem
|
142
140
|
title: Piekrist lietošanas noteikumiem
|
@@ -550,7 +548,6 @@ lv:
|
|
550
548
|
form:
|
551
549
|
rich_text_editor_in_public_views_help: Atsevišķos teksta laukos, izmantojot bagātinātā teksta redaktoru, dalībnieki varēs ievietot dažus HTML tagus.
|
552
550
|
social_handlers: Sociālie plašsaziņas līdzekļi
|
553
|
-
url: URL
|
554
551
|
update:
|
555
552
|
error: Šīs organizācijas atjaunināšanas laikā radās problēma.
|
556
553
|
success: Organizācija ir veiksmīgi atjaunināta.
|
@@ -584,7 +581,6 @@ lv:
|
|
584
581
|
error: Dzēšot privāto dalībnieku no šīs līdzdalības telpas, radās problēma.
|
585
582
|
success: Privāto dalībnieku piekļuve līdzdalības telpai ir veiksmīgi dzēsta.
|
586
583
|
index:
|
587
|
-
import_via_csv: Importēt no CSV
|
588
584
|
title: Līdzdalības telpas privāts dalībnieks
|
589
585
|
new:
|
590
586
|
create: Izveidot
|
@@ -777,7 +773,6 @@ lv:
|
|
777
773
|
fields:
|
778
774
|
hidden_at: Paslēpts plkst.
|
779
775
|
report_count: Skaits
|
780
|
-
reportable: Jāziņo
|
781
776
|
reported_content_url: Paziņotā satura URL
|
782
777
|
reports: Ziņojumi
|
783
778
|
visit_url: Apmeklēt URL
|
data/config/locales/nl.yml
CHANGED
@@ -26,11 +26,14 @@ nl:
|
|
26
26
|
published_at: Gepubliceerd op
|
27
27
|
weight: Gewicht
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Import maken als
|
29
31
|
newsletter:
|
30
32
|
body: Body
|
31
33
|
subject: Onderwerp
|
32
34
|
organization:
|
33
35
|
alert_color: Alarm
|
36
|
+
available_authorizations: Beschikbare autorisaties
|
34
37
|
badges_enabled: Schakel badges in
|
35
38
|
comments_max_length: Commentaar maximale lengte (laat 0 voor standaard waarde)
|
36
39
|
cta_button_path: actieknop pad
|
@@ -41,11 +44,13 @@ nl:
|
|
41
44
|
enable_omnipresent_banner: Toon permanente header
|
42
45
|
facebook_handler: Facebook naam
|
43
46
|
favicon: Pictogram
|
47
|
+
force_authentication: Verplicht aanmelden
|
48
|
+
force_users_to_authenticate_before_access_organization: Verplicht gebruikers om zich aan te melden voor toegang tot de organisatie
|
44
49
|
from: Afzender van de e-mail
|
45
50
|
github_handler: GitHub gebruikersnaam
|
46
51
|
header_snippets: Elementen om toe te voegen tussen HTML-tags
|
47
|
-
highlight_alternative_color:
|
48
|
-
highlight_color:
|
52
|
+
highlight_alternative_color: In de kijker, alternatief
|
53
|
+
highlight_color: In de kijker zetten
|
49
54
|
highlighted_content_banner_action_subtitle: Ondertitel actieknop
|
50
55
|
highlighted_content_banner_action_title: Titel actieknop
|
51
56
|
highlighted_content_banner_action_url: URL actieknop
|
@@ -53,6 +58,7 @@ nl:
|
|
53
58
|
highlighted_content_banner_image: Beeld
|
54
59
|
highlighted_content_banner_short_description: Korte beschrijving
|
55
60
|
highlighted_content_banner_title: Titel
|
61
|
+
host: Host
|
56
62
|
instagram_handler: Instagram gebruikersnaam
|
57
63
|
logo: Logo
|
58
64
|
name: Naam
|
@@ -62,17 +68,21 @@ nl:
|
|
62
68
|
omnipresent_banner_short_description: Korte beschrijving
|
63
69
|
omnipresent_banner_title: Titel
|
64
70
|
omnipresent_banner_url: URL
|
71
|
+
organization_admin_email: E-mailadres beheerder organisatie
|
72
|
+
organization_admin_name: Naam beheerder organisatie
|
73
|
+
organization_locales: Lokalisaties organisatie
|
65
74
|
primary_color: Primaire
|
66
75
|
reference_prefix: Referentievoorvoegsel
|
67
76
|
rich_text_editor_in_public_views: Gebruik de tekst editor voor deelnemers
|
68
77
|
secondary_color: Tweede
|
78
|
+
secondary_hosts: Secundaire hosts
|
69
79
|
send_welcome_notification: Stuur welkomstmelding
|
70
|
-
show_statistics: Toon statistieken
|
71
80
|
success_color: Succes
|
72
81
|
time_zone: Tijdszone
|
73
82
|
tos_version: Servicevoorwaarden versie
|
74
83
|
twitter_handler: Twitter gebruikersnaam
|
75
84
|
user_groups_enabled: Groepen inschakelen
|
85
|
+
users_registration_mode: Gebruikers registratiemodus
|
76
86
|
warning_color: Waarschuwing
|
77
87
|
welcome_notification_body: Tekst van de welkomstmelding
|
78
88
|
welcome_notification_subject: Welkomstmelding onderwerp
|
@@ -89,6 +99,7 @@ nl:
|
|
89
99
|
organization: Organisatie
|
90
100
|
plural: Meervoud
|
91
101
|
static_page:
|
102
|
+
allow_public_access: Toegang zonder authenticatie toestaan
|
92
103
|
changed_notably: Er zijn merkbare veranderingen geweest.
|
93
104
|
content: Inhoud
|
94
105
|
organization: Organisatie
|
@@ -111,6 +122,10 @@ nl:
|
|
111
122
|
allowed_file_content_types: Ongeldig afbeeldingsbestand
|
112
123
|
official_img_header:
|
113
124
|
allowed_file_content_types: Ongeldig afbeeldingsbestand
|
125
|
+
new_import:
|
126
|
+
attributes:
|
127
|
+
file:
|
128
|
+
invalid_mime_type: Ongeldig mime-type
|
114
129
|
activerecord:
|
115
130
|
attributes:
|
116
131
|
decidim/static_page:
|
@@ -129,20 +144,33 @@ nl:
|
|
129
144
|
admin:
|
130
145
|
actions:
|
131
146
|
add: Toevoegen
|
147
|
+
attachment:
|
148
|
+
new: Nieuwe bijlage
|
149
|
+
attachment_collection:
|
150
|
+
new: Nieuwe groep bijlagen
|
132
151
|
browse: Browsen
|
152
|
+
category:
|
153
|
+
new: Nieuwe categorie
|
133
154
|
export: Exporteren
|
155
|
+
import: Importeren
|
134
156
|
manage: Beheer
|
135
157
|
new: Nieuwe %{name}
|
158
|
+
newsletter:
|
159
|
+
new: Nieuwe nieuwsbrief
|
160
|
+
participatory_space_private_user:
|
161
|
+
new: Nieuwe privégebruiker van de inspraakruimte
|
136
162
|
per_page: Per pagina
|
137
163
|
permissions: Permissies
|
138
164
|
reject: Weigeren
|
165
|
+
user:
|
166
|
+
new: Nieuwe gebruiker
|
139
167
|
verify: Verifiëren
|
140
168
|
admin_terms_of_use:
|
141
169
|
accept:
|
142
170
|
error: Er is een fout opgetreden bij het accepteren van de admin gebruiksvoorwaarden.
|
143
171
|
success: Geweldig! Je hebt de admin gebruiksvoorwaarden geaccepteerd.
|
144
172
|
actions:
|
145
|
-
accept: Ik ga akkoord met
|
173
|
+
accept: Ik ga akkoord met de volgende voorwaarden
|
146
174
|
are_you_sure: Weet u zeker dat u de admin gebruiksvoorwaarden wilt weigeren?
|
147
175
|
refuse: Weiger de admin gebruiksvoorwaarden
|
148
176
|
title: Ga akkoord met de gebruiksvoorwaarden
|
@@ -221,6 +249,12 @@ nl:
|
|
221
249
|
autocomplete:
|
222
250
|
no_results: geen resultaten gevonden
|
223
251
|
search_prompt: Typ minimaal drie tekens om te zoeken
|
252
|
+
block_user:
|
253
|
+
new:
|
254
|
+
action: Blokkeer account en verzend reden
|
255
|
+
description: Een gebruiker blokkeren zal zijn account onbruikbaar maken, je kan in de toelichting en de criteria aangeven wanneer deblokkeren van de gebruiker wordt overwogen.
|
256
|
+
justification: Toelichting
|
257
|
+
title: Gebruiker %{name} blokkeren
|
224
258
|
categories:
|
225
259
|
create:
|
226
260
|
error: Er is een fout opgetreden bij het maken van deze categorie.
|
@@ -292,6 +326,9 @@ nl:
|
|
292
326
|
category_id_eq:
|
293
327
|
label: Categorie
|
294
328
|
filter_label: Filteren
|
329
|
+
moderations:
|
330
|
+
reportable_type_string_eq:
|
331
|
+
label: Type
|
295
332
|
officialized_at_null:
|
296
333
|
label: Staat
|
297
334
|
values:
|
@@ -312,9 +349,16 @@ nl:
|
|
312
349
|
search_label: Zoeken
|
313
350
|
search_placeholder:
|
314
351
|
name_or_nickname_or_email_cont: Zoek %{collection} op e-mail, naam of bijnaam.
|
352
|
+
reported_id_string_or_reported_content_cont: Zoek %{collection} op rapporteerbaar id of op inhoud.
|
315
353
|
title_cont: Zoek %{collection} op titel.
|
316
354
|
state_eq:
|
317
355
|
label: Provincie
|
356
|
+
forms:
|
357
|
+
file_help:
|
358
|
+
import:
|
359
|
+
explanation: 'Eigenschappen bestand:'
|
360
|
+
message_1: CSV, JSON en Excel (.xls) bestanden worden ondersteund
|
361
|
+
message_2: Voor CSV-bestanden moet het scheidingsteken tussen kolommen een puntkomma (";") zijn
|
318
362
|
help_sections:
|
319
363
|
error: Er is een fout opgetreden bij het bijwerken van de Help-gedeelten
|
320
364
|
form:
|
@@ -353,6 +397,24 @@ nl:
|
|
353
397
|
impersonate_existing_managed_user: Beheer deelnemer "%{name}"
|
354
398
|
impersonate_existing_user: Beheer deelnemer "%{name}"
|
355
399
|
impersonate_new_managed_user: Beheer nieuwe deelnemer
|
400
|
+
imports:
|
401
|
+
creators:
|
402
|
+
proposalcreator: Maker van het voorstel
|
403
|
+
error: Er zijn fouten opgetreden bij het importeren
|
404
|
+
help:
|
405
|
+
proposalcreator: Het bestand moet kolomnamen titel/nl en body/en bevatten (of een andere locale die jij verkiest, bijv. title/ca en body/ca). Ook scope/id en category/id kolommen worden ondersteund.
|
406
|
+
import_from_file: Uit een bestand importeren
|
407
|
+
invalid_lines: Fout gevonden in bronnummer %{invalid_lines}
|
408
|
+
new:
|
409
|
+
accepted_mime_types:
|
410
|
+
csv: csv
|
411
|
+
json: json
|
412
|
+
xls: xls
|
413
|
+
actions:
|
414
|
+
back: Terug
|
415
|
+
file_legend: Een importbestand toevoegen dat zal worden verwerkt.
|
416
|
+
import: Importeren
|
417
|
+
notice: "%{number} %{resource_name} succesvol geïmporteerd"
|
356
418
|
logs:
|
357
419
|
logs_list:
|
358
420
|
no_logs_yet: Er zijn nog geen logs
|
@@ -457,6 +519,9 @@ nl:
|
|
457
519
|
phone: Telefoon
|
458
520
|
state: Staat
|
459
521
|
users_count: Aantal deelnemers
|
522
|
+
moderated_users:
|
523
|
+
tabs:
|
524
|
+
blocked: Geblokkeerd
|
460
525
|
moderations:
|
461
526
|
index:
|
462
527
|
title: Moderaties
|
@@ -465,6 +530,21 @@ nl:
|
|
465
530
|
does_not_belong: Hoort niet
|
466
531
|
offensive: Aanvallend
|
467
532
|
spam: Spam
|
533
|
+
reports:
|
534
|
+
index:
|
535
|
+
author: Auteur(s)
|
536
|
+
callout_html: Een inhoud verschijnt in het moderatiescherm als die is gerapporteerd door een gebruiker (kan iedereen met een geregistreerde account zijn) door op de vlag %{icon} te klikken naast het item.
|
537
|
+
content_original_language: Oorspronkelijke taal inhoud
|
538
|
+
participatory_space: Participatieve ruimte
|
539
|
+
reported_content: Gerapporteerde inhoud
|
540
|
+
see_current: Bekijk huidige
|
541
|
+
see_original: Bekijk origineel
|
542
|
+
title: Moderatierapporten
|
543
|
+
show:
|
544
|
+
report_details: Reden details
|
545
|
+
report_language: Taal melden
|
546
|
+
report_reason: Reden
|
547
|
+
title: Rapport details
|
468
548
|
newsletter_templates:
|
469
549
|
index:
|
470
550
|
preview_template: Voorbeeld
|
@@ -530,6 +610,9 @@ nl:
|
|
530
610
|
error: Er is een fout opgetreden bij het bijwerken van deze nieuwsbrief.
|
531
611
|
success: Nieuwsbrief is succesvol bijgewerkt. Controleer het voordat u verzendt.
|
532
612
|
officializations:
|
613
|
+
block:
|
614
|
+
error: Er was een probleem bij het blokkeren van de deelnemer
|
615
|
+
success: Deelnemer met succes geblokkeerd
|
533
616
|
create:
|
534
617
|
success: Deelnemer met succes officieel gemaakt
|
535
618
|
destroy:
|
@@ -537,6 +620,7 @@ nl:
|
|
537
620
|
index:
|
538
621
|
actions: acties
|
539
622
|
badge: badge
|
623
|
+
block: Gebruiker blokkeren
|
540
624
|
created_at: Aangemaakt op
|
541
625
|
name: Naam
|
542
626
|
nickname: Gebruikersnaam
|
@@ -546,6 +630,7 @@ nl:
|
|
546
630
|
reofficialize: Hervalideren
|
547
631
|
show_email: Toon e-mailadres
|
548
632
|
status: status
|
633
|
+
unblock: Deblokkeer gebruiker
|
549
634
|
unofficialize: Ingetrokken
|
550
635
|
new:
|
551
636
|
badge: Bevestigings badge
|
@@ -559,6 +644,9 @@ nl:
|
|
559
644
|
hidden: hidden
|
560
645
|
show: Weergeven
|
561
646
|
title: Toon e-mailadres van gebruiker
|
647
|
+
unblock:
|
648
|
+
error: Er was een probleem bij het deblokkeren van de deelnemer
|
649
|
+
success: Deelnemer met succes gedeblokkeerd
|
562
650
|
organization:
|
563
651
|
edit:
|
564
652
|
title: Organisatie bewerken
|
@@ -570,7 +658,7 @@ nl:
|
|
570
658
|
rich_text_editor_in_public_views_help: In bepaalde teksten kunnen deelnemers enkele HTML-tags toevoegen door gebruik te maken van de rich text-editor.
|
571
659
|
social_handlers: Sociaal
|
572
660
|
twitter: Twitter
|
573
|
-
url:
|
661
|
+
url: URL
|
574
662
|
youtube: YouTube
|
575
663
|
update:
|
576
664
|
error: Er is een fout opgetreden bij het bijwerken van deze organisatie.
|
@@ -658,6 +746,13 @@ nl:
|
|
658
746
|
update:
|
659
747
|
error: Er is een fout opgetreden bij het bijwerken van deze scope.
|
660
748
|
success: Scope is succesvol bijgewerkt
|
749
|
+
share_tokens:
|
750
|
+
actions:
|
751
|
+
confirm_destroy: Weet je zeker dat je deze token wil verwijderen?
|
752
|
+
destroy: Verwijderen
|
753
|
+
share: Deel
|
754
|
+
destroy:
|
755
|
+
error: Er is een fout opgetreden bij het vernietigen van de token.
|
661
756
|
shared:
|
662
757
|
gallery:
|
663
758
|
add_images: Afbeeldingen toevoegen
|
@@ -714,7 +809,7 @@ nl:
|
|
714
809
|
dashboard: Dashboard
|
715
810
|
impersonatable_users: Beheersbare deelnemers
|
716
811
|
impersonations: Beheer van deelnemers
|
717
|
-
metrics:
|
812
|
+
metrics: Cijfers
|
718
813
|
participants: Deelnemers
|
719
814
|
scope_types: Scope types
|
720
815
|
scopes: Scopes
|
@@ -778,8 +873,16 @@ nl:
|
|
778
873
|
errors:
|
779
874
|
impersonate_user:
|
780
875
|
reason: U moet een reden opgeven voor het beheer van een niet-beheerde deelnemer
|
876
|
+
metrics:
|
877
|
+
reported_users:
|
878
|
+
object: gerapporteerde gebruikers
|
879
|
+
title: Gerapporteerde gebruikers
|
880
|
+
user_reports:
|
881
|
+
object: gebruikersrapporten
|
882
|
+
title: Gebruikersrapporten
|
781
883
|
moderations:
|
782
884
|
actions:
|
885
|
+
expand: Tonen
|
783
886
|
hidden: Verborgen
|
784
887
|
hide: Verbergen
|
785
888
|
not_hidden: niet verstopt
|
@@ -800,18 +903,28 @@ nl:
|
|
800
903
|
models:
|
801
904
|
moderation:
|
802
905
|
fields:
|
906
|
+
created_at: Aanmaakdatum
|
803
907
|
hidden_at: Verborgen op
|
908
|
+
participatory_space: Participatieve ruimte
|
804
909
|
report_count: Aantal
|
805
|
-
|
910
|
+
reportable_id: Id
|
911
|
+
reportable_type: Type
|
806
912
|
reported_content_url: Gerapporteerde inhouds-URL
|
807
913
|
reports: Meldingen
|
808
914
|
visit_url: Bezoek URL
|
915
|
+
report:
|
916
|
+
fields:
|
917
|
+
details: Reden details
|
918
|
+
locale: Taal
|
919
|
+
reason: Reden
|
809
920
|
errors:
|
810
921
|
messages:
|
811
922
|
invalid_json: Ongeldige JSON
|
812
923
|
layouts:
|
813
924
|
decidim:
|
814
925
|
admin:
|
926
|
+
global_moderations:
|
927
|
+
title: Algemene moderatie
|
815
928
|
newsletters:
|
816
929
|
title: Nieuwsbrieven
|
817
930
|
settings:
|
data/config/locales/no.yml
CHANGED
@@ -26,11 +26,14 @@
|
|
26
26
|
published_at: Publisert den
|
27
27
|
weight: Vekt
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Opprett importer som
|
29
31
|
newsletter:
|
30
32
|
body: Tekst
|
31
33
|
subject: Emne
|
32
34
|
organization:
|
33
35
|
alert_color: Varsel
|
36
|
+
available_authorizations: Tilgjengelige autorisasjoner
|
34
37
|
badges_enabled: Aktiver utmerkelse
|
35
38
|
comments_max_length: Maks lengde på kommentarer (Sett 0 for standardverdi)
|
36
39
|
cta_button_path: Sti for handlingsknapp
|
@@ -41,6 +44,7 @@
|
|
41
44
|
enable_omnipresent_banner: Vis overstyrende banner
|
42
45
|
facebook_handler: Facebook brukernavn
|
43
46
|
favicon: Ikon
|
47
|
+
force_authentication: Tving godkjenning
|
44
48
|
from: Fra e-postadresse
|
45
49
|
github_handler: GitHub brukernavn
|
46
50
|
header_snippets: Utdrag topptekst
|
@@ -53,6 +57,7 @@
|
|
53
57
|
highlighted_content_banner_image: Bilde
|
54
58
|
highlighted_content_banner_short_description: Kort beskrivelse
|
55
59
|
highlighted_content_banner_title: Tittel
|
60
|
+
host: Vert
|
56
61
|
instagram_handler: Instagram brukernavn
|
57
62
|
logo: Logo
|
58
63
|
machine_translation_display_priority: Maskinoversettelse viser prioritet
|
@@ -69,8 +74,8 @@
|
|
69
74
|
reference_prefix: Referanse prefiks
|
70
75
|
rich_text_editor_in_public_views: Aktiver rik-tekst-redigering for deltakere
|
71
76
|
secondary_color: Sekundær
|
77
|
+
secondary_hosts: Sekundære verter
|
72
78
|
send_welcome_notification: Send velkomst varsel
|
73
|
-
show_statistics: Vis statistikk
|
74
79
|
success_color: Vellykket
|
75
80
|
time_zone: Tidssone
|
76
81
|
tos_version: Vilkår for tjenester versjon
|
@@ -146,7 +151,6 @@
|
|
146
151
|
error: Det oppstod et problem med å godkjenne administrator vilkårene.
|
147
152
|
success: Flott! Du har godtatt administratorenes vilkår for bruk.
|
148
153
|
actions:
|
149
|
-
accept: Jeg er enig med disse administrasjonsvilkårene
|
150
154
|
are_you_sure: Er du sikker på å nekte administrasjons vilkårene?
|
151
155
|
refuse: Avslå administratorvilkårene
|
152
156
|
title: Godta vilkårene for bruk
|
@@ -467,6 +471,9 @@
|
|
467
471
|
phone: Telefon
|
468
472
|
state: Stat
|
469
473
|
users_count: Deltakere teller
|
474
|
+
moderated_users:
|
475
|
+
index:
|
476
|
+
nickname: Kallenavn
|
470
477
|
moderations:
|
471
478
|
index:
|
472
479
|
title: Moderering
|
@@ -580,7 +587,7 @@
|
|
580
587
|
rich_text_editor_in_public_views_help: I noen tekstområder vil deltakerne kunne sette inn noen HTML-tagger med å bruke den rike tekst redigereren.
|
581
588
|
social_handlers: Sosial
|
582
589
|
twitter: Twitter
|
583
|
-
url:
|
590
|
+
url: URL
|
584
591
|
youtube: YouTube
|
585
592
|
update:
|
586
593
|
error: Det oppstod et problem med å oppdatere denne organisasjon.
|
@@ -615,7 +622,6 @@
|
|
615
622
|
error: Det oppstod et problem med å slette en privat deltaker for dette deltakerområdet.
|
616
623
|
success: Deltakerområde privat deltaker tilgang ødelagt.
|
617
624
|
index:
|
618
|
-
import_via_csv: Improter via csv
|
619
625
|
title: Deltakerområdets private deltaker
|
620
626
|
new:
|
621
627
|
create: Opprett
|
@@ -816,7 +822,7 @@
|
|
816
822
|
fields:
|
817
823
|
hidden_at: Skjult på
|
818
824
|
report_count: Antall
|
819
|
-
|
825
|
+
reportable_id: Id
|
820
826
|
reported_content_url: Rapportert innholds URL
|
821
827
|
reports: Rapporter
|
822
828
|
visit_url: Besøk URL
|
data/config/locales/pl.yml
CHANGED
@@ -24,13 +24,16 @@ pl:
|
|
24
24
|
component:
|
25
25
|
name: Nazwa
|
26
26
|
published_at: Opublikowano
|
27
|
-
weight:
|
27
|
+
weight: Kolejność na stronie
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Utwórz import jako
|
29
31
|
newsletter:
|
30
32
|
body: Treść
|
31
33
|
subject: Temat
|
32
34
|
organization:
|
33
35
|
alert_color: Powiadomienie
|
36
|
+
available_authorizations: Dostępne formy uwierzytelniania
|
34
37
|
badges_enabled: Włącz odznaki
|
35
38
|
comments_max_length: Maksymalna długość komentarza (pozostaw 0 dla wartości domyślnej)
|
36
39
|
cta_button_path: Ścieżka przycisku CTA
|
@@ -41,11 +44,13 @@ pl:
|
|
41
44
|
enable_omnipresent_banner: Pokaż stały banner
|
42
45
|
facebook_handler: Handler Facebooka
|
43
46
|
favicon: Ikona
|
47
|
+
force_authentication: Wymuś uwierzytelnianie
|
48
|
+
force_users_to_authenticate_before_access_organization: Wymuś uwierzytelnianie użytkowników przed dołączeniem do organizacji
|
44
49
|
from: Z adresu e-mail
|
45
50
|
github_handler: Handler GitHuba
|
46
51
|
header_snippets: Fragmenty nagłówków
|
47
|
-
highlight_alternative_color:
|
48
|
-
highlight_color:
|
52
|
+
highlight_alternative_color: Wyróżnij (alternatywny kolor)
|
53
|
+
highlight_color: Wyróżniony kolor
|
49
54
|
highlighted_content_banner_action_subtitle: Podtytuł przycisku akcji
|
50
55
|
highlighted_content_banner_action_title: Tytuł przycisku akcji
|
51
56
|
highlighted_content_banner_action_url: URL przycisku akcji
|
@@ -53,6 +58,7 @@ pl:
|
|
53
58
|
highlighted_content_banner_image: Obraz
|
54
59
|
highlighted_content_banner_short_description: Krótki opis
|
55
60
|
highlighted_content_banner_title: Tytuł
|
61
|
+
host: Host
|
56
62
|
instagram_handler: Handler Instagrama
|
57
63
|
logo: Logo
|
58
64
|
machine_translation_display_priority: Priorytet wyświetlania tłumaczeń
|
@@ -65,17 +71,21 @@ pl:
|
|
65
71
|
omnipresent_banner_short_description: Krótki opis
|
66
72
|
omnipresent_banner_title: Tytuł
|
67
73
|
omnipresent_banner_url: URL
|
74
|
+
organization_admin_email: Adres e-mail administratora organizacji
|
75
|
+
organization_admin_name: Imię administratora organizacji
|
76
|
+
organization_locales: Lokalizacje organizacji
|
68
77
|
primary_color: Podstawowy
|
69
78
|
reference_prefix: Prefiks referencyjny
|
70
79
|
rich_text_editor_in_public_views: Włącz edytor tekstu sformatowanego dla uczestników
|
71
80
|
secondary_color: Drugorzędny
|
81
|
+
secondary_hosts: Dodatkowy host
|
72
82
|
send_welcome_notification: Wyślij komunikat powitalny
|
73
|
-
show_statistics: Pokaż statystyki
|
74
83
|
success_color: Powodzenie
|
75
84
|
time_zone: Strefa czasowa
|
76
85
|
tos_version: Warunki korzystania z usługi
|
77
86
|
twitter_handler: Handler Twittera
|
78
87
|
user_groups_enabled: Włącz grupy użytkowników
|
88
|
+
users_registration_mode: Tryb rejestracji użytkowników
|
79
89
|
warning_color: Ostrzeżenie
|
80
90
|
welcome_notification_body: Treść komunikatu powitalnego
|
81
91
|
welcome_notification_subject: Tytuł komunikatu powitalnego
|
@@ -94,18 +104,19 @@ pl:
|
|
94
104
|
settings:
|
95
105
|
scope_id: Zakres
|
96
106
|
static_page:
|
107
|
+
allow_public_access: Zezwalaj na dostęp bez uwierzytelniania
|
97
108
|
changed_notably: Nastąpiły zauważalne zmiany.
|
98
109
|
content: Zawartość
|
99
110
|
organization: Organizacja
|
100
111
|
show_in_footer: Pokaż w stopce
|
101
112
|
slug: URL slug
|
102
113
|
title: Tytuł
|
103
|
-
weight:
|
114
|
+
weight: Kolejność na stronie
|
104
115
|
static_page_topic:
|
105
116
|
description: Opis
|
106
117
|
show_in_footer: Pokaż w stopce
|
107
118
|
title: Tytuł
|
108
|
-
weight:
|
119
|
+
weight: Kolejność na stronie
|
109
120
|
user_group_csv_verification:
|
110
121
|
file: Plik
|
111
122
|
errors:
|
@@ -116,6 +127,10 @@ pl:
|
|
116
127
|
allowed_file_content_types: Nieprawidłowy plik obrazu
|
117
128
|
official_img_header:
|
118
129
|
allowed_file_content_types: Nieprawidłowy plik obrazu
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Niepoprawny format
|
119
134
|
activerecord:
|
120
135
|
attributes:
|
121
136
|
decidim/static_page:
|
@@ -134,21 +149,34 @@ pl:
|
|
134
149
|
admin:
|
135
150
|
actions:
|
136
151
|
add: Dodaj
|
152
|
+
attachment:
|
153
|
+
new: Nowy załącznik
|
154
|
+
attachment_collection:
|
155
|
+
new: Nowa kolekcja załączników
|
137
156
|
browse: Przeglądaj
|
157
|
+
category:
|
158
|
+
new: Nowa kategoria
|
138
159
|
export: Eksport
|
160
|
+
import: Importuj
|
139
161
|
manage: Zarządzanie
|
140
162
|
new: 'Nowy: %{name}'
|
163
|
+
newsletter:
|
164
|
+
new: Nowy newsletter
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Nowy prywatny użytkownik przestrzeni partycypacyjnej
|
141
167
|
per_page: Na stronę
|
142
168
|
permissions: Uprawnienia
|
143
169
|
reject: Odrzuć
|
144
170
|
share: Udostępnij
|
171
|
+
user:
|
172
|
+
new: Nowy użytkownik
|
145
173
|
verify: Zweryfikuj
|
146
174
|
admin_terms_of_use:
|
147
175
|
accept:
|
148
176
|
error: Wystąpił błąd podczas akceptowania warunków użytkowania dla administratorów.
|
149
177
|
success: Świetnie! Zaakceptowano warunki użytkowania dla administratorów.
|
150
178
|
actions:
|
151
|
-
accept:
|
179
|
+
accept: Zgadzam się z warunkami użytkowania
|
152
180
|
are_you_sure: Czy na pewno chcesz odrzucić warunki dla administratorów?
|
153
181
|
refuse: Nie akceptuję warunków dla administratorów
|
154
182
|
title: Akceptuję warunki użytkowania
|
@@ -227,6 +255,12 @@ pl:
|
|
227
255
|
autocomplete:
|
228
256
|
no_results: Brak wyników
|
229
257
|
search_prompt: Wpisz co najmniej trzy znaki żeby wyszukać
|
258
|
+
block_user:
|
259
|
+
new:
|
260
|
+
action: Zablokuj konto i wyślij uzasadnienie
|
261
|
+
description: Zablokowanie użytkownika spowoduje że jego konto nie będzie mogło być użytkowane, możesz podać w swoim uzasadnieniu i wytycznych opis działań, które pozwolą na odblokowanie użytkownika.
|
262
|
+
justification: Uzasadnienie
|
263
|
+
title: Zablokuj użytkownika %{name}
|
230
264
|
categories:
|
231
265
|
create:
|
232
266
|
error: Podczas tworzenia tej kategorii wystąpił błąd.
|
@@ -282,6 +316,21 @@ pl:
|
|
282
316
|
update:
|
283
317
|
error: Wystąpił błąd podczas aktualizowania tego komponentu.
|
284
318
|
success: Komponent został pomyślnie zaktualizowany.
|
319
|
+
conflicts:
|
320
|
+
attempts: Próby
|
321
|
+
'false': 'Nie'
|
322
|
+
managed_user_name: Zarządzany użytkownik
|
323
|
+
solved: Rozwiązane
|
324
|
+
title: Konflikty weryfikacji
|
325
|
+
transfer:
|
326
|
+
email: Adres e-mail
|
327
|
+
error: Podczas transferu bieżącego użytkownika do zarządzanego użytkownika wystąpił błąd.
|
328
|
+
name: Nazwa
|
329
|
+
reason: Powód
|
330
|
+
success: Bieżący transfer został pomyślnie zakończony.
|
331
|
+
title: Transfer
|
332
|
+
'true': 'Tak'
|
333
|
+
user_name: Użytkownik
|
285
334
|
dashboard:
|
286
335
|
show:
|
287
336
|
view_more_logs: Zobacz więcej logów
|
@@ -298,6 +347,9 @@ pl:
|
|
298
347
|
category_id_eq:
|
299
348
|
label: Kategoria
|
300
349
|
filter_label: Filtr
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Typ
|
301
353
|
officialized_at_null:
|
302
354
|
label: Stan
|
303
355
|
values:
|
@@ -318,9 +370,16 @@ pl:
|
|
318
370
|
search_label: Szukaj
|
319
371
|
search_placeholder:
|
320
372
|
name_or_nickname_or_email_cont: Przeszukaj %{collection} według adresu e-mail, nazwiska lub nazwy użytkownika.
|
373
|
+
reported_id_string_or_reported_content_cont: Szukaj %{collection} według identyfikatora lub treści raportu.
|
321
374
|
title_cont: Przeszukaj %{collection} według tytułu.
|
322
375
|
state_eq:
|
323
376
|
label: Stan
|
377
|
+
forms:
|
378
|
+
file_help:
|
379
|
+
import:
|
380
|
+
explanation: 'Wytyczne dotyczące pliku:'
|
381
|
+
message_1: 'Wspierane formaty: CSV, JSON i Exel (.xls)'
|
382
|
+
message_2: Dla plików w formacie CSV separatorem kolumn musi być średnik (";")
|
324
383
|
help_sections:
|
325
384
|
error: Wystąpił błąd podczas aktualizowania sekcji pomocy
|
326
385
|
form:
|
@@ -339,7 +398,7 @@ pl:
|
|
339
398
|
name: Nazwa
|
340
399
|
needs_authorization_warning: Do tej organizacji potrzebna jest co najmniej jedna autoryzacja.
|
341
400
|
not_managed: Niezamknięte
|
342
|
-
promote:
|
401
|
+
promote: Awansuj
|
343
402
|
search: Szukaj
|
344
403
|
status: Status
|
345
404
|
view_logs: Wyświetl logi
|
@@ -359,6 +418,24 @@ pl:
|
|
359
418
|
impersonate_existing_managed_user: Zarządzaj użytkownikiem "%{name}"
|
360
419
|
impersonate_existing_user: Zarządzaj użytkownikiem "%{name}"
|
361
420
|
impersonate_new_managed_user: Zarządzaj nowym uczestnikiem
|
421
|
+
imports:
|
422
|
+
creators:
|
423
|
+
proposalcreator: Twórca propozycji
|
424
|
+
error: Podczas importowania wystąpił błąd
|
425
|
+
help:
|
426
|
+
proposalcreator: Plik musi mieć nazwy kolumn title/pl i body/pl (lub inny język, który wybierzesz, np. title/ca i body/ca). Wspierane są również kolumny scope/id i category/id.
|
427
|
+
import_from_file: Importuj z pliku
|
428
|
+
invalid_lines: Znaleziono błąd w numerze zasobu %{invalid_lines}
|
429
|
+
new:
|
430
|
+
accepted_mime_types:
|
431
|
+
csv: csv
|
432
|
+
json: json
|
433
|
+
xls: xls
|
434
|
+
actions:
|
435
|
+
back: Wróć
|
436
|
+
file_legend: Zaimportuj plik, który zostanie przetworzony.
|
437
|
+
import: Importuj
|
438
|
+
notice: "Zaimportowano %{resource_name} %{number}"
|
362
439
|
logs:
|
363
440
|
logs_list:
|
364
441
|
no_logs_yet: Nie ma jeszcze logów
|
@@ -370,7 +447,7 @@ pl:
|
|
370
447
|
new:
|
371
448
|
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.
|
372
449
|
new_managed_user_promotion: Nowa zarządzana promocja użytkowników
|
373
|
-
promote:
|
450
|
+
promote: Awansuj
|
374
451
|
menu:
|
375
452
|
admin_log: Logi aktywności administratora
|
376
453
|
admins: Administratorzy
|
@@ -382,8 +459,10 @@ pl:
|
|
382
459
|
help_sections: Sekcje pomocy
|
383
460
|
homepage: Strona główna
|
384
461
|
impersonations: Podszywanie się pod inne osoby
|
462
|
+
moderation: Globalne moderacje
|
385
463
|
newsletters: Newslettery
|
386
464
|
participants: Użytkownicy
|
465
|
+
reported_users: Zgłoszeni użytkownicy
|
387
466
|
scope_types: Typy zakresów
|
388
467
|
scopes: Zakresy
|
389
468
|
settings: Ustawienia
|
@@ -471,6 +550,26 @@ pl:
|
|
471
550
|
phone: Telefon
|
472
551
|
state: Stan
|
473
552
|
users_count: Liczba użytkowników
|
553
|
+
moderated_users:
|
554
|
+
index:
|
555
|
+
actions:
|
556
|
+
block: Zablokuj użytkownika
|
557
|
+
title: Działania
|
558
|
+
unblock: Odblokuj użytkownika
|
559
|
+
unreport: Cofnij zgłoszenie
|
560
|
+
name: Imię
|
561
|
+
nickname: Pseudonim
|
562
|
+
reason: Powód
|
563
|
+
reports: Liczba zgłoszeń
|
564
|
+
title: Lista zgłoszonych użytkowników
|
565
|
+
report:
|
566
|
+
reasons:
|
567
|
+
does_not_belong: Nie należy
|
568
|
+
offensive: Obraźliwy
|
569
|
+
spam: Spam
|
570
|
+
tabs:
|
571
|
+
blocked: Zablokowany
|
572
|
+
unblocked: Niezablokowany
|
474
573
|
moderations:
|
475
574
|
index:
|
476
575
|
title: Moderacje
|
@@ -479,13 +578,28 @@ pl:
|
|
479
578
|
does_not_belong: Nie należy
|
480
579
|
offensive: Ofensywa
|
481
580
|
spam: Spam
|
581
|
+
reports:
|
582
|
+
index:
|
583
|
+
author: Autorzy
|
584
|
+
callout_html: Zawartość pojawia się w panelu moderacji, gdy została zasygnalizowana przez użytkownika (może to być każdy, kto zarejestrował konto) poprzez kliknięcie na flagę %{icon} obok elementu.
|
585
|
+
content_original_language: Oryginalny język treści
|
586
|
+
participatory_space: Przestrzeń partycypacyjna
|
587
|
+
reported_content: Zgłoszona zawartość
|
588
|
+
see_current: Zobacz bieżący
|
589
|
+
see_original: Zobacz oryginał
|
590
|
+
title: Raporty moderacyjne
|
591
|
+
show:
|
592
|
+
report_details: Szczegóły przyczyny
|
593
|
+
report_language: Zgłoś język
|
594
|
+
report_reason: Powód
|
595
|
+
title: Szczegóły raportu
|
482
596
|
newsletter_templates:
|
483
597
|
index:
|
484
598
|
preview_template: Podgląd
|
485
599
|
title: Szablony newslettera
|
486
600
|
use_template: Użyj tego szablonu
|
487
601
|
show:
|
488
|
-
preview: 'Podgląd szablonu
|
602
|
+
preview: 'Podgląd szablonu: %{template_name}'
|
489
603
|
use_template: Użyj tego szablonu
|
490
604
|
newsletters:
|
491
605
|
create:
|
@@ -544,6 +658,9 @@ pl:
|
|
544
658
|
error: Podczas aktualizowania tego newslettera wystąpił błąd.
|
545
659
|
success: Newsletter został zaktualizowany. Przeczytaj go przed wysłaniem.
|
546
660
|
officializations:
|
661
|
+
block:
|
662
|
+
error: Wystąpił błąd blokowania użytkownika
|
663
|
+
success: Użytkownik został zablokowany
|
547
664
|
create:
|
548
665
|
success: Użytkownik oficjalnie z powodzeniem
|
549
666
|
destroy:
|
@@ -551,6 +668,7 @@ pl:
|
|
551
668
|
index:
|
552
669
|
actions: Działania
|
553
670
|
badge: Odznaka
|
671
|
+
block: Zablokuj użytkownika
|
554
672
|
created_at: Utworzono
|
555
673
|
name: Nazwa
|
556
674
|
nickname: Pseudonim
|
@@ -558,21 +676,26 @@ pl:
|
|
558
676
|
officialize: Oficjalizuj
|
559
677
|
officialized: Oficjalny
|
560
678
|
reofficialize: Reoficjalizuj
|
679
|
+
reports: Raporty
|
561
680
|
show_email: Pokaż adres e-mail
|
562
681
|
status: Status
|
682
|
+
unblock: Odblokuj użytkownika
|
563
683
|
unofficialize: Nieoficjalne
|
564
684
|
new:
|
565
685
|
badge: Odznaka oficjalności
|
566
686
|
officialize: Oficjalizuj
|
567
687
|
title: Oficjalizuj użytkownika "%{name}"
|
568
688
|
show_email_modal:
|
569
|
-
close_modal: Zamknij
|
689
|
+
close_modal: Zamknij okno
|
570
690
|
description: Jeśli chcesz się bezpośrednio skontaktować z użytkownikiem, możesz kliknąć przycisk Pokaż, aby wyświetlić adres e-mail. Ta akcja zostanie zarejestrowana.
|
571
691
|
email_address: Adres e-mail
|
572
692
|
full_name: Imię i nazwisko
|
573
693
|
hidden: ukryty
|
574
694
|
show: Pokaż
|
575
695
|
title: Pokaż adres e-mail użytkownika
|
696
|
+
unblock:
|
697
|
+
error: Wystąpił błąd podczas odblokowywania użytkownika
|
698
|
+
success: Użytkownik został odblokowany
|
576
699
|
organization:
|
577
700
|
edit:
|
578
701
|
title: Edytuj organizację
|
@@ -584,7 +707,7 @@ pl:
|
|
584
707
|
rich_text_editor_in_public_views_help: W niektórych polach tekstowych uczestnicy będą mogli wstawiać znaczniki HTML za pomocą edytora.
|
585
708
|
social_handlers: Profile społecznościowe
|
586
709
|
twitter: Twitter
|
587
|
-
url:
|
710
|
+
url: Adres URL
|
588
711
|
youtube: YouTube
|
589
712
|
update:
|
590
713
|
error: Podczas aktualizowania tej organizacji wystąpił błąd.
|
@@ -596,7 +719,7 @@ pl:
|
|
596
719
|
colors:
|
597
720
|
colors_title: Kolory organizacji
|
598
721
|
header_snippets_help: Użyj tego pola, aby dodać elementy do nagłówka kodu HTML. Najczęstszym zastosowaniem jest zintegrowanie usług innych firm, które wymagają dodatkowego kodu JavaScript lub CSS. Można również użyć go do dodawania dodatkowych meta tagów do HTML. Zauważ, że będzie to widoczne tylko na stronach publicznych, a nie w sekcji administracyjnej.
|
599
|
-
cta_button_path_help: 'Możesz nadpisać adres do jakiego kieruje przycisk CTA na stronie głównej.
|
722
|
+
cta_button_path_help: 'Możesz nadpisać adres do jakiego kieruje przycisk CTA na stronie głównej. Należy wpisać tylko to, co ma znaleźć się na końcu po znaku „/”, a nie pełen adres. Można użyć liter, cyfr, myślników i ukośników. Musi zaczynać się od litery. Przycisk CTA zostanie wyświetlony na stronie głównej między tekstem powitalnym a opisem. Przykład: %{url}'
|
600
723
|
cta_button_text_help: Można nadpisać tekst przycisku CTA na stronie głównej dla każdego dostępnego języka organizacji. Jeśli to pole nie zostanie wypełnione, zostanie użyta wartość domyślna. Przycisk CTA zostanie wyświetlony na stronie głównej między tekstem powitalnym a opisem.
|
601
724
|
homepage_appearance_title: Edytuj wygląd strony głównej
|
602
725
|
homepage_highlighted_content_banner_title: Wyróżniony baner tekstowy
|
@@ -619,7 +742,7 @@ pl:
|
|
619
742
|
error: Wystąpił błąd podczas usuwania użytkownika prywatnego z tej przestrzeni partycypacyjnej.
|
620
743
|
success: Usunięto dostęp dla prywatnego użytkownika w tej przestrzeni partycypacyjnej.
|
621
744
|
index:
|
622
|
-
import_via_csv:
|
745
|
+
import_via_csv: Importuj z CSV
|
623
746
|
title: Prywatny użytkownik przestrzeni partycypacyjnej
|
624
747
|
new:
|
625
748
|
create: Utwórz
|
@@ -629,6 +752,7 @@ pl:
|
|
629
752
|
invalid: Wystąpił błąd podczas odczytu pliku CSV.
|
630
753
|
success: Plik CSV został pomyślnie wgrany, wysyłamy e-mail z zaproszeniem do uczestników. To może zająć chwilę.
|
631
754
|
new:
|
755
|
+
explanation: 'Prześlij swój plik CSV. Plik musi składać się z dwóch kolumn: w pierwszej kolumnie adresy e-mail, w drugiej kolumnie imiona (adres e-mail, imię) użytkowników, których chcesz dodać do przestrzeni partycypacyjnej; bez nagłówków. Unikaj używania niepoprawnych znaków takich jak `<>?%&^*#@()[]=+:;"{}\|` w imieniu użytkownika.'
|
632
756
|
title: Prześlij swój plik CSV
|
633
757
|
upload: Prześlij
|
634
758
|
resource_permissions:
|
@@ -718,7 +842,7 @@ pl:
|
|
718
842
|
update: Aktualizuj
|
719
843
|
form:
|
720
844
|
none: Żadna
|
721
|
-
slug_help: '
|
845
|
+
slug_help: 'Wpisz tutaj tylko to, co ma znaleźć się na końcu po znaku „/”, a nie pełny adres URL. Można użyć liter, cyfr i myślników. Musi zaczynać się od litery. Przykład: %{url}'
|
722
846
|
index:
|
723
847
|
last_notable_change: Ostatnia istotna zmiana
|
724
848
|
new:
|
@@ -740,7 +864,8 @@ pl:
|
|
740
864
|
dashboard: Panel
|
741
865
|
impersonatable_users: Zarządzaj użytkownikami
|
742
866
|
impersonations: Zarządzanie użytkownikami
|
743
|
-
metrics:
|
867
|
+
metrics: Partycypacja w liczbach
|
868
|
+
panel: Administrator
|
744
869
|
participants: Użytkownicy
|
745
870
|
scope_types: Typy zakresów
|
746
871
|
scopes: Zakresy
|
@@ -804,8 +929,19 @@ pl:
|
|
804
929
|
errors:
|
805
930
|
impersonate_user:
|
806
931
|
reason: Musisz podać powód podszywania się pod niezarządzanego użytkownika
|
932
|
+
metrics:
|
933
|
+
blocked_users:
|
934
|
+
object: zablokowani użytkownicy
|
935
|
+
title: Zablokowani użytkownicy
|
936
|
+
reported_users:
|
937
|
+
object: zgłoszeni użytkownicy
|
938
|
+
title: Zgłoszeni użytkownicy
|
939
|
+
user_reports:
|
940
|
+
object: zgłoszenia użytkownika
|
941
|
+
title: Zgłoszenia użytkownika
|
807
942
|
moderations:
|
808
943
|
actions:
|
944
|
+
expand: Rozwiń
|
809
945
|
hidden: Ukryty
|
810
946
|
hide: Ukryj
|
811
947
|
not_hidden: Widoczny
|
@@ -815,29 +951,39 @@ pl:
|
|
815
951
|
admin:
|
816
952
|
reportable:
|
817
953
|
hide:
|
818
|
-
invalid:
|
954
|
+
invalid: W trakcie ukrywania zasobu wystąpił błąd.
|
819
955
|
success: Zasób został ukryty.
|
820
956
|
unhide:
|
821
|
-
invalid:
|
957
|
+
invalid: W trakcie publikowania zasobu wystąpił błąd.
|
822
958
|
success: Zasoby zostały pomyślnie pokazane.
|
823
959
|
unreport:
|
824
|
-
invalid:
|
960
|
+
invalid: W trakcie usuwania zgłoszenia zasobu wystąpił błąd.
|
825
961
|
success: Zasób został pomyślnie nieudokumentowany.
|
826
962
|
models:
|
827
963
|
moderation:
|
828
964
|
fields:
|
965
|
+
created_at: Data utworzenia
|
829
966
|
hidden_at: Ukryto
|
967
|
+
participatory_space: Przestrzeń partycypacyjna
|
830
968
|
report_count: Liczba
|
831
|
-
|
969
|
+
reportable_id: Id
|
970
|
+
reportable_type: Typ
|
832
971
|
reported_content_url: Zgłoszony URL treści
|
833
972
|
reports: Raporty
|
834
973
|
visit_url: Odwiedź adres URL
|
974
|
+
report:
|
975
|
+
fields:
|
976
|
+
details: Szczegóły przyczyny
|
977
|
+
locale: Język
|
978
|
+
reason: Powód
|
835
979
|
errors:
|
836
980
|
messages:
|
837
981
|
invalid_json: Nieprawidłowy JSON
|
838
982
|
layouts:
|
839
983
|
decidim:
|
840
984
|
admin:
|
985
|
+
global_moderations:
|
986
|
+
title: Globalne moderacje
|
841
987
|
newsletters:
|
842
988
|
title: Newslettery
|
843
989
|
settings:
|