decidim-admin 0.23.0 → 0.24.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.
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 +2 -0
- 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/_buttons.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 +51 -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/participatory_space_private_user_csv_import_form.rb +4 -5
- data/app/forms/decidim/admin/participatory_space_private_user_form.rb +0 -5
- data/app/forms/decidim/admin/selective_newsletter_form.rb +6 -0
- 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/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/newsletter_recipients.rb +0 -7
- data/app/queries/decidim/admin/user_filter.rb +1 -2
- 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/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 +1 -0
- 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 +27 -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/_gallery.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 -9
- data/config/locales/bg.yml +0 -5
- data/config/locales/ca.yml +33 -9
- data/config/locales/cs.yml +193 -50
- data/config/locales/de.yml +172 -28
- data/config/locales/el.yml +62 -9
- data/config/locales/en.yml +152 -9
- data/config/locales/es-MX.yml +42 -9
- data/config/locales/es-PY.yml +42 -9
- data/config/locales/es.yml +42 -9
- data/config/locales/eu.yml +18 -21
- data/config/locales/fi-plain.yml +150 -7
- data/config/locales/fi.yml +150 -7
- data/config/locales/fr-CA.yml +141 -8
- data/config/locales/fr.yml +148 -15
- data/config/locales/gl.yml +225 -4
- data/config/locales/hu.yml +13 -9
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +36 -6
- data/config/locales/it.yml +74 -9
- data/config/locales/ja.yml +43 -12
- data/config/locales/lv.yml +0 -9
- data/config/locales/nl.yml +120 -11
- data/config/locales/no.yml +16 -9
- data/config/locales/pl.yml +159 -15
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -9
- data/config/locales/ro-RO.yml +8 -9
- data/config/locales/ru.yml +0 -7
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +0 -9
- data/config/locales/sl.yml +0 -5
- data/config/locales/sr-CS.yml +0 -7
- data/config/locales/sv.yml +59 -9
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +206 -11
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -9
- 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 +49 -4
- data/lib/decidim/admin/version.rb +1 -1
- metadata +78 -19
data/config/locales/pl.yml
CHANGED
@@ -24,14 +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
|
-
address: Nazwa hosta SMTP
|
34
35
|
alert_color: Powiadomienie
|
36
|
+
available_authorizations: Dostępne formy uwierzytelniania
|
35
37
|
badges_enabled: Włącz odznaki
|
36
38
|
comments_max_length: Maksymalna długość komentarza (pozostaw 0 dla wartości domyślnej)
|
37
39
|
cta_button_path: Ścieżka przycisku CTA
|
@@ -42,6 +44,8 @@ pl:
|
|
42
44
|
enable_omnipresent_banner: Pokaż stały banner
|
43
45
|
facebook_handler: Handler Facebooka
|
44
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
|
45
49
|
from: Z adresu e-mail
|
46
50
|
github_handler: Handler GitHuba
|
47
51
|
header_snippets: Fragmenty nagłówków
|
@@ -54,6 +58,7 @@ pl:
|
|
54
58
|
highlighted_content_banner_image: Obraz
|
55
59
|
highlighted_content_banner_short_description: Krótki opis
|
56
60
|
highlighted_content_banner_title: Tytuł
|
61
|
+
host: Host
|
57
62
|
instagram_handler: Handler Instagrama
|
58
63
|
logo: Logo
|
59
64
|
machine_translation_display_priority: Priorytet wyświetlania tłumaczeń
|
@@ -66,20 +71,21 @@ pl:
|
|
66
71
|
omnipresent_banner_short_description: Krótki opis
|
67
72
|
omnipresent_banner_title: Tytuł
|
68
73
|
omnipresent_banner_url: URL
|
69
|
-
|
70
|
-
|
74
|
+
organization_admin_email: Adres e-mail administratora organizacji
|
75
|
+
organization_admin_name: Imię administratora organizacji
|
76
|
+
organization_locales: Lokalizacje organizacji
|
71
77
|
primary_color: Podstawowy
|
72
78
|
reference_prefix: Prefiks referencyjny
|
73
79
|
rich_text_editor_in_public_views: Włącz edytor tekstu sformatowanego dla uczestników
|
74
80
|
secondary_color: Drugorzędny
|
81
|
+
secondary_hosts: Dodatkowy host
|
75
82
|
send_welcome_notification: Wyślij komunikat powitalny
|
76
|
-
show_statistics: Pokaż statystyki
|
77
83
|
success_color: Powodzenie
|
78
84
|
time_zone: Strefa czasowa
|
79
85
|
tos_version: Warunki korzystania z usługi
|
80
86
|
twitter_handler: Handler Twittera
|
81
87
|
user_groups_enabled: Włącz grupy użytkowników
|
82
|
-
|
88
|
+
users_registration_mode: Tryb rejestracji użytkowników
|
83
89
|
warning_color: Ostrzeżenie
|
84
90
|
welcome_notification_body: Treść komunikatu powitalnego
|
85
91
|
welcome_notification_subject: Tytuł komunikatu powitalnego
|
@@ -95,19 +101,22 @@ pl:
|
|
95
101
|
name: Nazwa
|
96
102
|
organization: Organizacja
|
97
103
|
plural: Liczba mnoga
|
104
|
+
settings:
|
105
|
+
scope_id: Zakres
|
98
106
|
static_page:
|
107
|
+
allow_public_access: Zezwalaj na dostęp bez uwierzytelniania
|
99
108
|
changed_notably: Nastąpiły zauważalne zmiany.
|
100
109
|
content: Zawartość
|
101
110
|
organization: Organizacja
|
102
111
|
show_in_footer: Pokaż w stopce
|
103
112
|
slug: URL slug
|
104
113
|
title: Tytuł
|
105
|
-
weight:
|
114
|
+
weight: Kolejność na stronie
|
106
115
|
static_page_topic:
|
107
116
|
description: Opis
|
108
117
|
show_in_footer: Pokaż w stopce
|
109
118
|
title: Tytuł
|
110
|
-
weight:
|
119
|
+
weight: Kolejność na stronie
|
111
120
|
user_group_csv_verification:
|
112
121
|
file: Plik
|
113
122
|
errors:
|
@@ -118,6 +127,10 @@ pl:
|
|
118
127
|
allowed_file_content_types: Nieprawidłowy plik obrazu
|
119
128
|
official_img_header:
|
120
129
|
allowed_file_content_types: Nieprawidłowy plik obrazu
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Niepoprawny format
|
121
134
|
activerecord:
|
122
135
|
attributes:
|
123
136
|
decidim/static_page:
|
@@ -136,21 +149,34 @@ pl:
|
|
136
149
|
admin:
|
137
150
|
actions:
|
138
151
|
add: Dodaj
|
152
|
+
attachment:
|
153
|
+
new: Nowy załącznik
|
154
|
+
attachment_collection:
|
155
|
+
new: Nowa kolekcja załączników
|
139
156
|
browse: Przeglądaj
|
157
|
+
category:
|
158
|
+
new: Nowa kategoria
|
140
159
|
export: Eksport
|
160
|
+
import: Importuj
|
141
161
|
manage: Zarządzanie
|
142
162
|
new: 'Nowy: %{name}'
|
163
|
+
newsletter:
|
164
|
+
new: Nowy newsletter
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Nowy prywatny użytkownik przestrzeni partycypacyjnej
|
143
167
|
per_page: Na stronę
|
144
168
|
permissions: Uprawnienia
|
145
169
|
reject: Odrzuć
|
146
170
|
share: Udostępnij
|
171
|
+
user:
|
172
|
+
new: Nowy użytkownik
|
147
173
|
verify: Zweryfikuj
|
148
174
|
admin_terms_of_use:
|
149
175
|
accept:
|
150
176
|
error: Wystąpił błąd podczas akceptowania warunków użytkowania dla administratorów.
|
151
177
|
success: Świetnie! Zaakceptowano warunki użytkowania dla administratorów.
|
152
178
|
actions:
|
153
|
-
accept:
|
179
|
+
accept: Zgadzam się z następującymi warunkami
|
154
180
|
are_you_sure: Czy na pewno chcesz odrzucić warunki dla administratorów?
|
155
181
|
refuse: Nie akceptuję warunków dla administratorów
|
156
182
|
title: Akceptuję warunki użytkowania
|
@@ -229,6 +255,12 @@ pl:
|
|
229
255
|
autocomplete:
|
230
256
|
no_results: Brak wyników
|
231
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}
|
232
264
|
categories:
|
233
265
|
create:
|
234
266
|
error: Podczas tworzenia tej kategorii wystąpił błąd.
|
@@ -284,6 +316,21 @@ pl:
|
|
284
316
|
update:
|
285
317
|
error: Wystąpił błąd podczas aktualizowania tego komponentu.
|
286
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
|
287
334
|
dashboard:
|
288
335
|
show:
|
289
336
|
view_more_logs: Zobacz więcej logów
|
@@ -300,6 +347,9 @@ pl:
|
|
300
347
|
category_id_eq:
|
301
348
|
label: Kategoria
|
302
349
|
filter_label: Filtr
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Typ
|
303
353
|
officialized_at_null:
|
304
354
|
label: Stan
|
305
355
|
values:
|
@@ -320,9 +370,16 @@ pl:
|
|
320
370
|
search_label: Szukaj
|
321
371
|
search_placeholder:
|
322
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.
|
323
374
|
title_cont: Przeszukaj %{collection} według tytułu.
|
324
375
|
state_eq:
|
325
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 (";")
|
326
383
|
help_sections:
|
327
384
|
error: Wystąpił błąd podczas aktualizowania sekcji pomocy
|
328
385
|
form:
|
@@ -341,7 +398,7 @@ pl:
|
|
341
398
|
name: Nazwa
|
342
399
|
needs_authorization_warning: Do tej organizacji potrzebna jest co najmniej jedna autoryzacja.
|
343
400
|
not_managed: Niezamknięte
|
344
|
-
promote:
|
401
|
+
promote: Awansuj
|
345
402
|
search: Szukaj
|
346
403
|
status: Status
|
347
404
|
view_logs: Wyświetl logi
|
@@ -361,6 +418,24 @@ pl:
|
|
361
418
|
impersonate_existing_managed_user: Zarządzaj użytkownikiem "%{name}"
|
362
419
|
impersonate_existing_user: Zarządzaj użytkownikiem "%{name}"
|
363
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}"
|
364
439
|
logs:
|
365
440
|
logs_list:
|
366
441
|
no_logs_yet: Nie ma jeszcze logów
|
@@ -372,7 +447,7 @@ pl:
|
|
372
447
|
new:
|
373
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.
|
374
449
|
new_managed_user_promotion: Nowa zarządzana promocja użytkowników
|
375
|
-
promote:
|
450
|
+
promote: Awansuj
|
376
451
|
menu:
|
377
452
|
admin_log: Logi aktywności administratora
|
378
453
|
admins: Administratorzy
|
@@ -384,8 +459,10 @@ pl:
|
|
384
459
|
help_sections: Sekcje pomocy
|
385
460
|
homepage: Strona główna
|
386
461
|
impersonations: Podszywanie się pod inne osoby
|
462
|
+
moderation: Globalne moderacje
|
387
463
|
newsletters: Newslettery
|
388
464
|
participants: Użytkownicy
|
465
|
+
reported_users: Zgłoszeni użytkownicy
|
389
466
|
scope_types: Typy zakresów
|
390
467
|
scopes: Zakresy
|
391
468
|
settings: Ustawienia
|
@@ -473,6 +550,26 @@ pl:
|
|
473
550
|
phone: Telefon
|
474
551
|
state: Stan
|
475
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: Ofensywny
|
569
|
+
spam: Spam
|
570
|
+
tabs:
|
571
|
+
blocked: Zablokowany
|
572
|
+
unblocked: Niezablokowany
|
476
573
|
moderations:
|
477
574
|
index:
|
478
575
|
title: Moderacje
|
@@ -481,6 +578,21 @@ pl:
|
|
481
578
|
does_not_belong: Nie należy
|
482
579
|
offensive: Ofensywa
|
483
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 ma zarejestrowane 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
|
484
596
|
newsletter_templates:
|
485
597
|
index:
|
486
598
|
preview_template: Podgląd
|
@@ -546,6 +658,9 @@ pl:
|
|
546
658
|
error: Podczas aktualizowania tego newslettera wystąpił błąd.
|
547
659
|
success: Newsletter został zaktualizowany. Przeczytaj go przed wysłaniem.
|
548
660
|
officializations:
|
661
|
+
block:
|
662
|
+
error: Wystąpił błąd blokowania użytkownika
|
663
|
+
success: Użytkownik został zablokowany
|
549
664
|
create:
|
550
665
|
success: Użytkownik oficjalnie z powodzeniem
|
551
666
|
destroy:
|
@@ -553,6 +668,7 @@ pl:
|
|
553
668
|
index:
|
554
669
|
actions: Działania
|
555
670
|
badge: Odznaka
|
671
|
+
block: Zablokuj użytkownika
|
556
672
|
created_at: Utworzono
|
557
673
|
name: Nazwa
|
558
674
|
nickname: Pseudonim
|
@@ -560,21 +676,26 @@ pl:
|
|
560
676
|
officialize: Oficjalizuj
|
561
677
|
officialized: Oficjalny
|
562
678
|
reofficialize: Reoficjalizuj
|
679
|
+
reports: Raporty
|
563
680
|
show_email: Pokaż adres e-mail
|
564
681
|
status: Status
|
682
|
+
unblock: Odblokuj użytkownika
|
565
683
|
unofficialize: Nieoficjalne
|
566
684
|
new:
|
567
685
|
badge: Odznaka oficjalności
|
568
686
|
officialize: Oficjalizuj
|
569
687
|
title: Oficjalizuj użytkownika "%{name}"
|
570
688
|
show_email_modal:
|
571
|
-
close_modal: Zamknij
|
689
|
+
close_modal: Zamknij okno
|
572
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.
|
573
691
|
email_address: Adres e-mail
|
574
692
|
full_name: Imię i nazwisko
|
575
693
|
hidden: ukryty
|
576
694
|
show: Pokaż
|
577
695
|
title: Pokaż adres e-mail użytkownika
|
696
|
+
unblock:
|
697
|
+
error: Wystąpił błąd podczas odblokowania użytkownika
|
698
|
+
success: Użytkownik odblokowany pomyślnie
|
578
699
|
organization:
|
579
700
|
edit:
|
580
701
|
title: Edytuj organizację
|
@@ -586,7 +707,7 @@ pl:
|
|
586
707
|
rich_text_editor_in_public_views_help: W niektórych polach tekstowych uczestnicy będą mogli wstawiać znaczniki HTML za pomocą edytora.
|
587
708
|
social_handlers: Profile społecznościowe
|
588
709
|
twitter: Twitter
|
589
|
-
url:
|
710
|
+
url: Adres URL
|
590
711
|
youtube: YouTube
|
591
712
|
update:
|
592
713
|
error: Podczas aktualizowania tej organizacji wystąpił błąd.
|
@@ -621,7 +742,7 @@ pl:
|
|
621
742
|
error: Wystąpił błąd podczas usuwania użytkownika prywatnego z tej przestrzeni partycypacyjnej.
|
622
743
|
success: Usunięto dostęp dla prywatnego użytkownika w tej przestrzeni partycypacyjnej.
|
623
744
|
index:
|
624
|
-
import_via_csv:
|
745
|
+
import_via_csv: Importuj przez CSV
|
625
746
|
title: Prywatny użytkownik przestrzeni partycypacyjnej
|
626
747
|
new:
|
627
748
|
create: Utwórz
|
@@ -631,6 +752,7 @@ pl:
|
|
631
752
|
invalid: Wystąpił błąd podczas odczytu pliku CSV.
|
632
753
|
success: Plik CSV został pomyślnie wgrany, wysyłamy e-mail z zaproszeniem do uczestników. To może zająć chwilę.
|
633
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.'
|
634
756
|
title: Prześlij swój plik CSV
|
635
757
|
upload: Prześlij
|
636
758
|
resource_permissions:
|
@@ -743,6 +865,7 @@ pl:
|
|
743
865
|
impersonatable_users: Zarządzaj użytkownikami
|
744
866
|
impersonations: Zarządzanie użytkownikami
|
745
867
|
metrics: Wskaźniki
|
868
|
+
panel: Administrator
|
746
869
|
participants: Użytkownicy
|
747
870
|
scope_types: Typy zakresów
|
748
871
|
scopes: Zakresy
|
@@ -806,8 +929,19 @@ pl:
|
|
806
929
|
errors:
|
807
930
|
impersonate_user:
|
808
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
|
809
942
|
moderations:
|
810
943
|
actions:
|
944
|
+
expand: Rozwiń
|
811
945
|
hidden: Ukryty
|
812
946
|
hide: Ukryj
|
813
947
|
not_hidden: Widoczny
|
@@ -828,18 +962,28 @@ pl:
|
|
828
962
|
models:
|
829
963
|
moderation:
|
830
964
|
fields:
|
965
|
+
created_at: Data utworzenia
|
831
966
|
hidden_at: Ukryto
|
967
|
+
participatory_space: Przestrzeń partycypacyjna
|
832
968
|
report_count: Liczba
|
833
|
-
|
969
|
+
reportable_id: Id
|
970
|
+
reportable_type: Typ
|
834
971
|
reported_content_url: Zgłoszony URL treści
|
835
972
|
reports: Raporty
|
836
973
|
visit_url: Odwiedź adres URL
|
974
|
+
report:
|
975
|
+
fields:
|
976
|
+
details: Szczegóły przyczyny
|
977
|
+
locale: Język
|
978
|
+
reason: Powód
|
837
979
|
errors:
|
838
980
|
messages:
|
839
981
|
invalid_json: Nieprawidłowy JSON
|
840
982
|
layouts:
|
841
983
|
decidim:
|
842
984
|
admin:
|
985
|
+
global_moderations:
|
986
|
+
title: Globalna moderacja
|
843
987
|
newsletters:
|
844
988
|
title: Newslettery
|
845
989
|
settings:
|
data/config/locales/pt-BR.yml
CHANGED
@@ -59,7 +59,6 @@ pt:
|
|
59
59
|
primary_color: Primário
|
60
60
|
reference_prefix: Prefixo de referência
|
61
61
|
secondary_color: Secundário
|
62
|
-
show_statistics: Exibir estatisticas
|
63
62
|
success_color: Sucesso
|
64
63
|
tos_version: Versão dos termos de serviço
|
65
64
|
twitter_handler: Manipulador do Twitter
|
@@ -471,7 +470,6 @@ pt:
|
|
471
470
|
instagram: Instagram
|
472
471
|
social_handlers: Social
|
473
472
|
twitter: Twitter
|
474
|
-
url: Url
|
475
473
|
youtube: YouTube
|
476
474
|
update:
|
477
475
|
error: Ocorreu um erro ao atualizar essa organização.
|
@@ -678,7 +676,6 @@ pt:
|
|
678
676
|
fields:
|
679
677
|
hidden_at: Escondido em
|
680
678
|
report_count: Contagem
|
681
|
-
reportable: Reportable
|
682
679
|
reported_content_url: URL de conteúdo relatado
|
683
680
|
reports: Denúncias
|
684
681
|
visit_url: URL de visita
|
data/config/locales/pt.yml
CHANGED
@@ -30,7 +30,6 @@ pt:
|
|
30
30
|
body: Corpo
|
31
31
|
subject: Assunto
|
32
32
|
organization:
|
33
|
-
address: Nome do anfitrião SMTP
|
34
33
|
alert_color: Alerta
|
35
34
|
badges_enabled: Ativar distintivos
|
36
35
|
comments_max_length: Comprimento máximo dos comentários (Deixar 0 para o valor predefinido)
|
@@ -63,20 +62,16 @@ pt:
|
|
63
62
|
omnipresent_banner_short_description: Pequena descrição
|
64
63
|
omnipresent_banner_title: Título
|
65
64
|
omnipresent_banner_url: URL
|
66
|
-
password: Palavra-passe
|
67
|
-
port: Porta
|
68
65
|
primary_color: Primário
|
69
66
|
reference_prefix: Prefixo de referência
|
70
67
|
rich_text_editor_in_public_views: Ativar o editor de texto avançado para os participantes
|
71
68
|
secondary_color: Secundário
|
72
69
|
send_welcome_notification: Enviar notificação de boas-vindas
|
73
|
-
show_statistics: Mostrar estatísticas
|
74
70
|
success_color: Sucesso
|
75
71
|
time_zone: Fuso Horário
|
76
72
|
tos_version: Versão dos termos de serviço
|
77
73
|
twitter_handler: Manipulador do Twitter
|
78
74
|
user_groups_enabled: Ativar grupos
|
79
|
-
user_name: Nome do utilizador
|
80
75
|
warning_color: Aviso
|
81
76
|
welcome_notification_body: Corpo da notificação de boas-vindas
|
82
77
|
welcome_notification_subject: Assunto da notificação de boas-vindas
|
@@ -146,7 +141,6 @@ pt:
|
|
146
141
|
error: Ocorreu um erro ao aceitar os termos de utilização de administrador.
|
147
142
|
success: Excelente! Aceitou os termos de utilização de administrador.
|
148
143
|
actions:
|
149
|
-
accept: Concordo com estes termos de administrador
|
150
144
|
are_you_sure: Tem a certeza de que pretende recusar os termos de administrador?
|
151
145
|
refuse: Recusar os termos de administrador
|
152
146
|
title: Concordar com os termos e condições de utilização
|
@@ -573,7 +567,6 @@ pt:
|
|
573
567
|
rich_text_editor_in_public_views_help: Em algumas áreas de texto, os participantes serão capazes de inserir algumas etiquetas HTML utilizando o editor de texto avançado.
|
574
568
|
social_handlers: Social
|
575
569
|
twitter: Twitter
|
576
|
-
url: Url
|
577
570
|
youtube: Youtube
|
578
571
|
update:
|
579
572
|
error: Ocorreu um problema ao atualizar esta organização.
|
@@ -608,7 +601,6 @@ pt:
|
|
608
601
|
error: Houve um problema ao eliminar um participante privado deste espaço participativo.
|
609
602
|
success: Espaço participativo acesso de usuário privado destruído com sucesso.
|
610
603
|
index:
|
611
|
-
import_via_csv: Importar através de csv
|
612
604
|
title: Espaço participativo de participante privado
|
613
605
|
new:
|
614
606
|
create: Criar
|
@@ -801,7 +793,6 @@ pt:
|
|
801
793
|
fields:
|
802
794
|
hidden_at: Escondido em
|
803
795
|
report_count: Contagem
|
804
|
-
reportable: Reportável
|
805
796
|
reported_content_url: URL de conteúdo reportado
|
806
797
|
reports: Relatórios
|
807
798
|
visit_url: URL de visita
|