decidim-admin 0.23.2 → 0.24.0
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 +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/cs.yml
CHANGED
@@ -26,11 +26,14 @@ cs:
|
|
26
26
|
published_at: Publikováno v
|
27
27
|
weight: Váha
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Vytvořit importy jako
|
29
31
|
newsletter:
|
30
32
|
body: Tělo
|
31
33
|
subject: Předmět
|
32
34
|
organization:
|
33
35
|
alert_color: Upozornění
|
36
|
+
available_authorizations: Dostupná oprávnění
|
34
37
|
badges_enabled: Povolit odznaky
|
35
38
|
comments_max_length: Maximální délka komentáře (ponechte 0 pro výchozí hodnotu)
|
36
39
|
cta_button_path: Cesta tlačítka Výzvy k akci
|
@@ -41,6 +44,8 @@ cs:
|
|
41
44
|
enable_omnipresent_banner: Zobrazit všudypřítomný banner
|
42
45
|
facebook_handler: Facebook handler
|
43
46
|
favicon: Ikona
|
47
|
+
force_authentication: Vynutit ověření
|
48
|
+
force_users_to_authenticate_before_access_organization: Vynutit uživateli autentizaci před přístupem do organizace
|
44
49
|
from: Z e-mailové adresy
|
45
50
|
github_handler: GitHub handler
|
46
51
|
header_snippets: Úryvky záhlaví
|
@@ -53,6 +58,7 @@ cs:
|
|
53
58
|
highlighted_content_banner_image: Obrázek
|
54
59
|
highlighted_content_banner_short_description: Stručný popis
|
55
60
|
highlighted_content_banner_title: Titul
|
61
|
+
host: Hostitel
|
56
62
|
instagram_handler: Instagram handler
|
57
63
|
logo: Logo
|
58
64
|
machine_translation_display_priority: Priorita zobrazení strojového překladu
|
@@ -65,17 +71,21 @@ cs:
|
|
65
71
|
omnipresent_banner_short_description: Stručný popis
|
66
72
|
omnipresent_banner_title: Název
|
67
73
|
omnipresent_banner_url: URL
|
74
|
+
organization_admin_email: E-mail správce organizace
|
75
|
+
organization_admin_name: Název správce organizace
|
76
|
+
organization_locales: Místa organizace
|
68
77
|
primary_color: Hlavní
|
69
78
|
reference_prefix: Referenční předpona
|
70
79
|
rich_text_editor_in_public_views: Povolit plnohodnotný textový editor pro účastníky
|
71
80
|
secondary_color: Sekundární
|
81
|
+
secondary_hosts: Sekundární hostitelé
|
72
82
|
send_welcome_notification: Odeslat uvítací oznámení
|
73
|
-
show_statistics: Zobrazit statistiky
|
74
83
|
success_color: Úspěch
|
75
84
|
time_zone: Časové pásmo
|
76
85
|
tos_version: Verze podmínek služby
|
77
86
|
twitter_handler: Twitter handler
|
78
87
|
user_groups_enabled: Povolit skupiny
|
88
|
+
users_registration_mode: Režim registrace uživatelů
|
79
89
|
warning_color: Varování
|
80
90
|
welcome_notification_body: Tělo uvítacího oznámení
|
81
91
|
welcome_notification_subject: Předmět uvítacího oznámení
|
@@ -94,6 +104,7 @@ cs:
|
|
94
104
|
settings:
|
95
105
|
scope_id: Oblast působnosti
|
96
106
|
static_page:
|
107
|
+
allow_public_access: Povolit přístup bez autentizace
|
97
108
|
changed_notably: Došlo ke znatelným změnám.
|
98
109
|
content: Obsah
|
99
110
|
organization: Organizace
|
@@ -116,6 +127,10 @@ cs:
|
|
116
127
|
allowed_file_content_types: Neplatný soubor s obrázkem
|
117
128
|
official_img_header:
|
118
129
|
allowed_file_content_types: Neplatný soubor s obrázkem
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Neplatný typ mime
|
119
134
|
activerecord:
|
120
135
|
attributes:
|
121
136
|
decidim/static_page:
|
@@ -134,21 +149,34 @@ cs:
|
|
134
149
|
admin:
|
135
150
|
actions:
|
136
151
|
add: Přidat
|
152
|
+
attachment:
|
153
|
+
new: Nová příloha
|
154
|
+
attachment_collection:
|
155
|
+
new: Nová sbírka příloh
|
137
156
|
browse: Procházet
|
157
|
+
category:
|
158
|
+
new: Nová kategorie
|
138
159
|
export: Exportovat
|
160
|
+
import: Importovat
|
139
161
|
manage: Spravovat
|
140
162
|
new: Nová %{name}
|
163
|
+
newsletter:
|
164
|
+
new: Nový zpravodaj
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Nový soukromý uživatel participačního prostoru
|
141
167
|
per_page: Na stránku
|
142
168
|
permissions: Oprávnění
|
143
169
|
reject: Odmítnout
|
144
170
|
share: Sdílet
|
171
|
+
user:
|
172
|
+
new: Nový uživatel
|
145
173
|
verify: Ověřit
|
146
174
|
admin_terms_of_use:
|
147
175
|
accept:
|
148
176
|
error: Při přijímání správcovských podmínek použití došlo k chybě.
|
149
177
|
success: Skvělé! Přijali jste administrátorské podmínky použití.
|
150
178
|
actions:
|
151
|
-
accept: Souhlasím s
|
179
|
+
accept: Souhlasím s následujícími podmínkami
|
152
180
|
are_you_sure: Opravdu chcete odmítnout administrátorské podmínky?
|
153
181
|
refuse: Odmítnout administrátorské podmínky
|
154
182
|
title: Souhlasit s podmínkami používání
|
@@ -227,6 +255,12 @@ cs:
|
|
227
255
|
autocomplete:
|
228
256
|
no_results: Nenalezeny žádné výsledky
|
229
257
|
search_prompt: Zadejte nejméně tři znaky, které chcete vyhledat
|
258
|
+
block_user:
|
259
|
+
new:
|
260
|
+
action: Blokovat účet a odeslat odůvodnění
|
261
|
+
description: Blokováním uživatele bude jeho účet nepoužitelný, ve svém odůvodnění a pokynech můžete uvést způsob, jaký považujete za vhodný k odblokování uživatele.
|
262
|
+
justification: Odůvodnění
|
263
|
+
title: Blokovat uživatele %{name}
|
230
264
|
categories:
|
231
265
|
create:
|
232
266
|
error: Při vytváření této kategorie došlo k chybě.
|
@@ -255,7 +289,7 @@ cs:
|
|
255
289
|
error: Při vytváření této komponenty došlo k chybě.
|
256
290
|
success: Komponenta byla úspěšně vytvořena.
|
257
291
|
destroy:
|
258
|
-
error: Došlo k chybě při
|
292
|
+
error: Došlo k chybě při mazání této komponenty.
|
259
293
|
success: Komponenta byla úspěšně smazána.
|
260
294
|
edit:
|
261
295
|
title: Upravit komponentu
|
@@ -282,6 +316,21 @@ cs:
|
|
282
316
|
update:
|
283
317
|
error: Při aktualizaci této komponenty došlo k chybě.
|
284
318
|
success: Komponenta byla úspěšně aktualizována.
|
319
|
+
conflicts:
|
320
|
+
attempts: Pokusy
|
321
|
+
'false': 'Ne'
|
322
|
+
managed_user_name: Spravovaný uživatel
|
323
|
+
solved: Vyřešeno
|
324
|
+
title: Konflikty ověření
|
325
|
+
transfer:
|
326
|
+
email: E-mail
|
327
|
+
error: Při převodu aktuálního účastníka na spravovaného účastníka došlo k chybě.
|
328
|
+
name: Jméno
|
329
|
+
reason: Důvod
|
330
|
+
success: Aktuální převod byl úspěšně dokončen.
|
331
|
+
title: Převod
|
332
|
+
'true': 'Ano'
|
333
|
+
user_name: Uživatel
|
285
334
|
dashboard:
|
286
335
|
show:
|
287
336
|
view_more_logs: Zobrazit další protokoly
|
@@ -298,6 +347,9 @@ cs:
|
|
298
347
|
category_id_eq:
|
299
348
|
label: Kategorie
|
300
349
|
filter_label: Filtr
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Typ
|
301
353
|
officialized_at_null:
|
302
354
|
label: Stav
|
303
355
|
values:
|
@@ -318,9 +370,16 @@ cs:
|
|
318
370
|
search_label: Hledat
|
319
371
|
search_placeholder:
|
320
372
|
name_or_nickname_or_email_cont: Hledat %{collection} podle e-mailu, jména nebo přezdívky.
|
373
|
+
reported_id_string_or_reported_content_cont: Hledat %{collection} podle nahlášeného Id nebo obsahu.
|
321
374
|
title_cont: Hledat %{collection} podle názvu.
|
322
375
|
state_eq:
|
323
376
|
label: Stav
|
377
|
+
forms:
|
378
|
+
file_help:
|
379
|
+
import:
|
380
|
+
explanation: 'Pokyny pro soubor:'
|
381
|
+
message_1: CSV, JSON a Excel (.xls) jsou podporovány
|
382
|
+
message_2: Pro CSV soubory musí být oddělovač mezi sloupci středníkem (";")
|
324
383
|
help_sections:
|
325
384
|
error: Při aktualizaci sekcí nápovědy došlo k chybě
|
326
385
|
form:
|
@@ -359,6 +418,24 @@ cs:
|
|
359
418
|
impersonate_existing_managed_user: Spravovat účastníka "%{name}"
|
360
419
|
impersonate_existing_user: Spravovat účastníka "%{name}"
|
361
420
|
impersonate_new_managed_user: Spravovat nového účastníka
|
421
|
+
imports:
|
422
|
+
creators:
|
423
|
+
proposalcreator: Tvůrce návrhu
|
424
|
+
error: Při importu došlo k chybě
|
425
|
+
help:
|
426
|
+
proposalcreator: Soubor musí mít názvy sloupců title/en a body/en (nebo jiné lokalizace, které dáváte. title/cs a body/cs). Podporovány jsou také sloupce pro scope/id a category/id.
|
427
|
+
import_from_file: Importovat ze souboru
|
428
|
+
invalid_lines: Nalezena chyba ve zdroji číslo %{invalid_lines}
|
429
|
+
new:
|
430
|
+
accepted_mime_types:
|
431
|
+
csv: csv
|
432
|
+
json: json
|
433
|
+
xls: xls
|
434
|
+
actions:
|
435
|
+
back: Zpět
|
436
|
+
file_legend: Přidat importovaný soubor, který bude analyzován.
|
437
|
+
import: Importovat
|
438
|
+
notice: "%{number} %{resource_name} úspěšně importováno"
|
362
439
|
logs:
|
363
440
|
logs_list:
|
364
441
|
no_logs_yet: Dosud nejsou žádné protokoly
|
@@ -382,8 +459,10 @@ cs:
|
|
382
459
|
help_sections: Sekce nápovědy
|
383
460
|
homepage: Domovská stránka
|
384
461
|
impersonations: V zastoupení
|
462
|
+
moderation: Globální moderace
|
385
463
|
newsletters: Zpravodaje
|
386
464
|
participants: Účastníci
|
465
|
+
reported_users: Nahlášení uživatelé
|
387
466
|
scope_types: Typ oblasti působnosti
|
388
467
|
scopes: Oblasti působnosti
|
389
468
|
settings: Nastavení
|
@@ -471,6 +550,26 @@ cs:
|
|
471
550
|
phone: Telefon
|
472
551
|
state: Stav
|
473
552
|
users_count: Počet účastníků
|
553
|
+
moderated_users:
|
554
|
+
index:
|
555
|
+
actions:
|
556
|
+
block: Blokovat uživatele
|
557
|
+
title: Akce
|
558
|
+
unblock: Odblokovat uživatele
|
559
|
+
unreport: Zrušit nahlášení
|
560
|
+
name: Jméno
|
561
|
+
nickname: Přezdívka
|
562
|
+
reason: Důvod
|
563
|
+
reports: Počet zpráv
|
564
|
+
title: Seznam nahlášených uživatelů
|
565
|
+
report:
|
566
|
+
reasons:
|
567
|
+
does_not_belong: Nepatří
|
568
|
+
offensive: Urážlivý
|
569
|
+
spam: Nevyžádané
|
570
|
+
tabs:
|
571
|
+
blocked: Blokováno
|
572
|
+
unblocked: Neblokováno
|
474
573
|
moderations:
|
475
574
|
index:
|
476
575
|
title: Moderování
|
@@ -479,6 +578,21 @@ cs:
|
|
479
578
|
does_not_belong: Nepatří
|
480
579
|
offensive: Urážlivý
|
481
580
|
spam: Spam
|
581
|
+
reports:
|
582
|
+
index:
|
583
|
+
author: Autor (autoři)
|
584
|
+
callout_html: Obsah se zobrazí v panelu moderátora, když byl signalizován uživatelem (může to být někdo s registrovaným účtem) kliknutím na vlaječku %{icon} vedle položky.
|
585
|
+
content_original_language: Původní jazyk obsahu
|
586
|
+
participatory_space: Participační prostor
|
587
|
+
reported_content: Nahlášený obsah
|
588
|
+
see_current: Zobrazit aktuální
|
589
|
+
see_original: Zobrazit originál
|
590
|
+
title: Zprávy o moderování
|
591
|
+
show:
|
592
|
+
report_details: Detaily důvodu
|
593
|
+
report_language: Jazyk zprávy
|
594
|
+
report_reason: Důvod
|
595
|
+
title: Detaily hlášení
|
482
596
|
newsletter_templates:
|
483
597
|
index:
|
484
598
|
preview_template: Náhled
|
@@ -544,6 +658,9 @@ cs:
|
|
544
658
|
error: Při aktualizaci tohoto zpravodaje došlo k chybě.
|
545
659
|
success: Zpravodaj byl úspěšně aktualizován. Před odesláním jej prosím zkontrolujte.
|
546
660
|
officializations:
|
661
|
+
block:
|
662
|
+
error: Při blokování uživatele došlo k chybě
|
663
|
+
success: Uživatel byl úspěšně zablokován
|
547
664
|
create:
|
548
665
|
success: Uživatel úspěšně oficializován
|
549
666
|
destroy:
|
@@ -551,6 +668,7 @@ cs:
|
|
551
668
|
index:
|
552
669
|
actions: Akce
|
553
670
|
badge: Odznak
|
671
|
+
block: Zablokovat uživatele
|
554
672
|
created_at: Vytvořeno na
|
555
673
|
name: název
|
556
674
|
nickname: Přezdívka
|
@@ -558,8 +676,10 @@ cs:
|
|
558
676
|
officialize: Ověřit
|
559
677
|
officialized: Ověřen
|
560
678
|
reofficialize: Znovu ověřit
|
679
|
+
reports: Hlášení
|
561
680
|
show_email: Zobrazit e-mailovou adresu
|
562
681
|
status: Stav
|
682
|
+
unblock: Odblokovat uživatele
|
563
683
|
unofficialize: Zrušit ověření
|
564
684
|
new:
|
565
685
|
badge: Odznak ověření
|
@@ -573,6 +693,9 @@ cs:
|
|
573
693
|
hidden: skrytý
|
574
694
|
show: Zobrazit
|
575
695
|
title: Zobrazit e-mailovou adresu účastníka
|
696
|
+
unblock:
|
697
|
+
error: Při odblokování uživatele došlo k chybě
|
698
|
+
success: Uživatel byl úspěšně odblokován
|
576
699
|
organization:
|
577
700
|
edit:
|
578
701
|
title: Upravit organizaci
|
@@ -584,7 +707,7 @@ cs:
|
|
584
707
|
rich_text_editor_in_public_views_help: V některých textových oblastech budou účastníci moci vložit některé HTML tagy pomocí textového editoru.
|
585
708
|
social_handlers: Sociální
|
586
709
|
twitter: Twitter
|
587
|
-
url:
|
710
|
+
url: URL
|
588
711
|
youtube: Youtube
|
589
712
|
update:
|
590
713
|
error: Při aktualizaci této organizace došlo k chybě.
|
@@ -619,7 +742,7 @@ cs:
|
|
619
742
|
error: Při odstraňování soukromého uživatele tohoto participačního prostoru došlo k chybě.
|
620
743
|
success: Přístup soukromého účastníka do participativního prostoru byl úspěšně zrušen.
|
621
744
|
index:
|
622
|
-
import_via_csv: Importovat přes
|
745
|
+
import_via_csv: Importovat přes CSV
|
623
746
|
title: Participační prostor soukromého účastníka
|
624
747
|
new:
|
625
748
|
create: Vytvořit
|
@@ -742,6 +865,7 @@ cs:
|
|
742
865
|
impersonatable_users: Spravovatelní účastníci
|
743
866
|
impersonations: Správa účastníků
|
744
867
|
metrics: Metriky
|
868
|
+
panel: Admin
|
745
869
|
participants: Uživatelé
|
746
870
|
scope_types: Typy oblastí působnosti
|
747
871
|
scopes: Oblasti působnosti
|
@@ -805,8 +929,19 @@ cs:
|
|
805
929
|
errors:
|
806
930
|
impersonate_user:
|
807
931
|
reason: Při správě nespravovaného účastníka musíte uvést důvod
|
932
|
+
metrics:
|
933
|
+
blocked_users:
|
934
|
+
object: blokovaní uživatelé
|
935
|
+
title: Blokovaní uživatelé
|
936
|
+
reported_users:
|
937
|
+
object: nahlášení uživatelé
|
938
|
+
title: Nahlášení uživatelé
|
939
|
+
user_reports:
|
940
|
+
object: uživatelská hlášení
|
941
|
+
title: Uživatelská hlášení
|
808
942
|
moderations:
|
809
943
|
actions:
|
944
|
+
expand: Rozbalit
|
810
945
|
hidden: Skrytý
|
811
946
|
hide: Skrýt
|
812
947
|
not_hidden: Neskrytý
|
@@ -827,18 +962,28 @@ cs:
|
|
827
962
|
models:
|
828
963
|
moderation:
|
829
964
|
fields:
|
965
|
+
created_at: Datum vytvoření
|
830
966
|
hidden_at: Skryté u
|
967
|
+
participatory_space: Participativní prostor
|
831
968
|
report_count: Spočítat
|
832
|
-
|
969
|
+
reportable_id: Id
|
970
|
+
reportable_type: Typ
|
833
971
|
reported_content_url: Oznámená adresa URL obsahu
|
834
972
|
reports: Zprávy
|
835
973
|
visit_url: Navštívit URL
|
974
|
+
report:
|
975
|
+
fields:
|
976
|
+
details: Detaily důvodu
|
977
|
+
locale: Jazyk
|
978
|
+
reason: Důvod
|
836
979
|
errors:
|
837
980
|
messages:
|
838
981
|
invalid_json: Neplatný JSON
|
839
982
|
layouts:
|
840
983
|
decidim:
|
841
984
|
admin:
|
985
|
+
global_moderations:
|
986
|
+
title: Globální moderace
|
842
987
|
newsletters:
|
843
988
|
title: Zpravodaje
|
844
989
|
settings:
|
data/config/locales/de.yml
CHANGED
@@ -26,11 +26,14 @@ de:
|
|
26
26
|
published_at: Veröffentlicht unter
|
27
27
|
weight: Reihenfolge
|
28
28
|
id: ID
|
29
|
+
import:
|
30
|
+
user_group_id: Importierte Inhalte erstellen als
|
29
31
|
newsletter:
|
30
32
|
body: Haupttext
|
31
33
|
subject: Betreff
|
32
34
|
organization:
|
33
35
|
alert_color: Benachrichtigung
|
36
|
+
available_authorizations: Verfügbare Autorisierungen
|
34
37
|
badges_enabled: Abzeichen aktivieren
|
35
38
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
36
39
|
cta_button_path: Call To Action Schaltfläche Pfad
|
@@ -41,6 +44,8 @@ de:
|
|
41
44
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
42
45
|
facebook_handler: Facebook-Handler
|
43
46
|
favicon: Icon
|
47
|
+
force_authentication: Authentifizierung erzwingen
|
48
|
+
force_users_to_authenticate_before_access_organization: Benutzer müssen sich authentifizieren bevor sie auf die Organisation zugreifen können
|
44
49
|
from: Absender E-Mail
|
45
50
|
github_handler: GitHub-Handler
|
46
51
|
header_snippets: Header-Snippets
|
@@ -53,6 +58,7 @@ de:
|
|
53
58
|
highlighted_content_banner_image: Bild
|
54
59
|
highlighted_content_banner_short_description: Kurze Beschreibung
|
55
60
|
highlighted_content_banner_title: Titel
|
61
|
+
host: Host
|
56
62
|
instagram_handler: Instagram-Handler
|
57
63
|
logo: Logo
|
58
64
|
machine_translation_display_priority: Priorität der maschinellen Übersetzung
|
@@ -65,17 +71,21 @@ de:
|
|
65
71
|
omnipresent_banner_short_description: Kurze Beschreibung
|
66
72
|
omnipresent_banner_title: Titel
|
67
73
|
omnipresent_banner_url: URL
|
74
|
+
organization_admin_email: E-Mail des Organisations-Admins
|
75
|
+
organization_admin_name: Name des Organisations-Admins
|
76
|
+
organization_locales: Verfügbare Sprachen
|
68
77
|
primary_color: Primär
|
69
78
|
reference_prefix: Referenzpräfix
|
70
79
|
rich_text_editor_in_public_views: Rich-Text-Editor für Teilnehmer aktivieren
|
71
80
|
secondary_color: Sekundär
|
81
|
+
secondary_hosts: Weitere Hosts
|
72
82
|
send_welcome_notification: Willkommens-Benachrichtigung senden
|
73
|
-
show_statistics: Zeige Statistiken
|
74
83
|
success_color: Erfolg
|
75
84
|
time_zone: Zeitzone
|
76
85
|
tos_version: Nutzungsbedingungen Version
|
77
86
|
twitter_handler: Twitter-Handler
|
78
87
|
user_groups_enabled: Benutzergruppen aktivieren
|
88
|
+
users_registration_mode: Benutzerregistrierungs-Modus
|
79
89
|
warning_color: Warnung
|
80
90
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
81
91
|
welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
|
@@ -94,6 +104,7 @@ de:
|
|
94
104
|
settings:
|
95
105
|
scope_id: Umfang
|
96
106
|
static_page:
|
107
|
+
allow_public_access: Zugriff ohne Authentifizierung erlauben
|
97
108
|
changed_notably: Es gab bemerkenswerte Änderungen.
|
98
109
|
content: Inhalt
|
99
110
|
organization: Organisation
|
@@ -116,6 +127,10 @@ de:
|
|
116
127
|
allowed_file_content_types: Ungültige Bilddatei
|
117
128
|
official_img_header:
|
118
129
|
allowed_file_content_types: Ungültige Bilddatei
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Ungültiger MIME-Typ
|
119
134
|
activerecord:
|
120
135
|
attributes:
|
121
136
|
decidim/static_page:
|
@@ -134,21 +149,34 @@ de:
|
|
134
149
|
admin:
|
135
150
|
actions:
|
136
151
|
add: Hinzufügen
|
152
|
+
attachment:
|
153
|
+
new: Neuer Anhang
|
154
|
+
attachment_collection:
|
155
|
+
new: Neuer Ordner
|
137
156
|
browse: Durchsuchen
|
157
|
+
category:
|
158
|
+
new: Neue Kategorie
|
138
159
|
export: Export
|
160
|
+
import: Importieren
|
139
161
|
manage: Verwalten
|
140
162
|
new: Neu %{name}
|
163
|
+
newsletter:
|
164
|
+
new: Neuer Newsletter
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Neuer privater Benutzer
|
141
167
|
per_page: Pro Seite
|
142
168
|
permissions: Berechtigungen
|
143
169
|
reject: Ablehnen
|
144
170
|
share: Teilen
|
171
|
+
user:
|
172
|
+
new: Neuer Benutzer
|
145
173
|
verify: Überprüfen
|
146
174
|
admin_terms_of_use:
|
147
175
|
accept:
|
148
176
|
error: Beim Akzeptieren der Nutzungsbedingungen ist ein Fehler aufgetreten.
|
149
177
|
success: Super! Sie haben die Admin-Nutzungsbedingungen akzeptiert.
|
150
178
|
actions:
|
151
|
-
accept: Ich stimme
|
179
|
+
accept: Ich stimme den folgenden Bedingungen zu
|
152
180
|
are_you_sure: Sind Sie sicher, dass Sie die Admin-Nutzungsbedingungen ablehnen möchten?
|
153
181
|
refuse: Die Admin-Nutzungsbedingungen ablehnen
|
154
182
|
title: Den Admin-Nutzungsbedingungen zustimmen
|
@@ -227,6 +255,12 @@ de:
|
|
227
255
|
autocomplete:
|
228
256
|
no_results: keine Ergebnisse gefunden
|
229
257
|
search_prompt: Geben Sie mindestens drei Zeichen ein, um zu suchen
|
258
|
+
block_user:
|
259
|
+
new:
|
260
|
+
action: Konto sperren und Begründung senden
|
261
|
+
description: Das Blockieren eines Benutzers wird sein Konto unbrauchbar machen. Sie können begründen und Richtlinien dafür bieten, wie der Benutzer vorgehen könnte, damit Sie in Betracht ziehen, die Blockierung wieder aufzuheben.
|
262
|
+
justification: Begründung
|
263
|
+
title: Benutzer %{name} blockieren
|
230
264
|
categories:
|
231
265
|
create:
|
232
266
|
error: Beim Erstellen dieser Kategorie ist ein Fehler aufgetreten.
|
@@ -282,6 +316,21 @@ de:
|
|
282
316
|
update:
|
283
317
|
error: Beim Aktualisieren dieser Komponente ist ein Fehler aufgetreten.
|
284
318
|
success: Die Komponente wurde erfolgreich aktualisiert.
|
319
|
+
conflicts:
|
320
|
+
attempts: Versuche
|
321
|
+
'false': 'Nein'
|
322
|
+
managed_user_name: Verwalteter Benutzer
|
323
|
+
solved: Gelöst
|
324
|
+
title: Konflikte von Überprüfungen
|
325
|
+
transfer:
|
326
|
+
email: E-Mail
|
327
|
+
error: Es gab ein Problem bei der Übertragung des aktuellen Teilnehmers zu den verwalteten Teilnehmern.
|
328
|
+
name: Name
|
329
|
+
reason: Grund
|
330
|
+
success: Übertragung erfolgreich.
|
331
|
+
title: Übertragung
|
332
|
+
'true': 'Ja'
|
333
|
+
user_name: Nutzer
|
285
334
|
dashboard:
|
286
335
|
show:
|
287
336
|
view_more_logs: Weitere Protokolle anzeigen
|
@@ -298,6 +347,9 @@ de:
|
|
298
347
|
category_id_eq:
|
299
348
|
label: Kategorie
|
300
349
|
filter_label: Filtern
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Art
|
301
353
|
officialized_at_null:
|
302
354
|
label: Zustand
|
303
355
|
values:
|
@@ -318,9 +370,16 @@ de:
|
|
318
370
|
search_label: Suche
|
319
371
|
search_placeholder:
|
320
372
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
373
|
+
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
321
374
|
title_cont: In %{collection} nach Titel suchen.
|
322
375
|
state_eq:
|
323
376
|
label: Bundesland
|
377
|
+
forms:
|
378
|
+
file_help:
|
379
|
+
import:
|
380
|
+
explanation: 'Hinweise für die Datei:'
|
381
|
+
message_1: CSV, JSON und Excel (.xls) Dateien werden unterstützt
|
382
|
+
message_2: Bei CSV-Dateien muss das Trennzeichen zwischen den Spalten ein Semikolon sein (";")
|
324
383
|
help_sections:
|
325
384
|
error: Beim Aktualisieren der Hilfeabschnitte ist ein Fehler aufgetreten
|
326
385
|
form:
|
@@ -359,6 +418,24 @@ de:
|
|
359
418
|
impersonate_existing_managed_user: Angenommen, dass der Benutzer "%{name}" verwaltet wird
|
360
419
|
impersonate_existing_user: Imitieren von Benutzer "%{name}"
|
361
420
|
impersonate_new_managed_user: Sich als neuer verwalteter Benutzer ausgeben
|
421
|
+
imports:
|
422
|
+
creators:
|
423
|
+
proposalcreator: Vorschlagsersteller
|
424
|
+
error: Beim Importieren ist ein Fehler aufgetreten
|
425
|
+
help:
|
426
|
+
proposalcreator: Die Datei muss die Spaltennamen title/de und body/de (oder andere Sprachen wie zum Beispiel title/en und body/en) enthalten. Zudem sind scope/id und category/id unterstützt.
|
427
|
+
import_from_file: Aus einer Datei importieren
|
428
|
+
invalid_lines: Fehler in der Ressource Nummer %{invalid_lines}
|
429
|
+
new:
|
430
|
+
accepted_mime_types:
|
431
|
+
csv: CSV
|
432
|
+
json: JSON
|
433
|
+
xls: XLS
|
434
|
+
actions:
|
435
|
+
back: Zurück
|
436
|
+
file_legend: Datei zum Importieren hinzufügen.
|
437
|
+
import: Importieren
|
438
|
+
notice: "%{number}%{resource_name} erfolgreich importiert"
|
362
439
|
logs:
|
363
440
|
logs_list:
|
364
441
|
no_logs_yet: Es gibt noch keine Protokolle
|
@@ -382,8 +459,10 @@ de:
|
|
382
459
|
help_sections: Hilfeabschnitte
|
383
460
|
homepage: Startseite
|
384
461
|
impersonations: Identitätswechsel
|
462
|
+
moderation: Globale Moderationen
|
385
463
|
newsletters: Newsletter
|
386
464
|
participants: Teilnehmer
|
465
|
+
reported_users: Gemeldete Nutzer
|
387
466
|
scope_types: Bereichstypen
|
388
467
|
scopes: Bereiche
|
389
468
|
settings: die Einstellungen
|
@@ -471,6 +550,26 @@ de:
|
|
471
550
|
phone: Telefon
|
472
551
|
state: Zustand
|
473
552
|
users_count: Benutzer zählen
|
553
|
+
moderated_users:
|
554
|
+
index:
|
555
|
+
actions:
|
556
|
+
block: Benutzer blockieren
|
557
|
+
title: Aktionen
|
558
|
+
unblock: Blockierung des Benutzers aufheben
|
559
|
+
unreport: Meldung Rückgängig machen
|
560
|
+
name: Name
|
561
|
+
nickname: Spitzname
|
562
|
+
reason: Grund
|
563
|
+
reports: Anzahl Meldungen
|
564
|
+
title: Liste der gemeldeten Benutzer
|
565
|
+
report:
|
566
|
+
reasons:
|
567
|
+
does_not_belong: Gehört nicht zu
|
568
|
+
offensive: Offensiv
|
569
|
+
spam: Spam
|
570
|
+
tabs:
|
571
|
+
blocked: Blockiert
|
572
|
+
unblocked: Nicht blockiert
|
474
573
|
moderations:
|
475
574
|
index:
|
476
575
|
title: Moderationen
|
@@ -479,6 +578,21 @@ de:
|
|
479
578
|
does_not_belong: Gehört nicht
|
480
579
|
offensive: Beleidigend
|
481
580
|
spam: Spam
|
581
|
+
reports:
|
582
|
+
index:
|
583
|
+
author: Autor(en)
|
584
|
+
callout_html: Ein Inhalt erscheint im Moderations-Panel, wenn er von einem Benutzer signalisiert wurde (kann jeder mit einem registrierten Konto sein), indem er auf die %{icon} Flagge neben dem Element klickt.
|
585
|
+
content_original_language: Originalsprache des Inhalts
|
586
|
+
participatory_space: Beteiligungsbereich
|
587
|
+
reported_content: Gemeldeter Inhalt
|
588
|
+
see_current: Siehe aktuelles
|
589
|
+
see_original: Original ansehen
|
590
|
+
title: Moderationsberichte
|
591
|
+
show:
|
592
|
+
report_details: Details zum Grund
|
593
|
+
report_language: Berichtssprache
|
594
|
+
report_reason: Grund
|
595
|
+
title: Berichtdetails
|
482
596
|
newsletter_templates:
|
483
597
|
index:
|
484
598
|
preview_template: Vorschau
|
@@ -544,6 +658,9 @@ de:
|
|
544
658
|
error: Beim Aktualisieren dieses Newsletters ist ein Fehler aufgetreten.
|
545
659
|
success: Newsletter erfolgreich aktualisiert. Bitte überprüfen Sie es vor dem Senden.
|
546
660
|
officializations:
|
661
|
+
block:
|
662
|
+
error: Beim Blockieren des Teilnehmers ist ein Fehler aufgetreten
|
663
|
+
success: Teilnehmer erfolgreich blockiert
|
547
664
|
create:
|
548
665
|
success: Benutzer wurde offiziell anerkannt
|
549
666
|
destroy:
|
@@ -551,6 +668,7 @@ de:
|
|
551
668
|
index:
|
552
669
|
actions: Aktionen
|
553
670
|
badge: Abzeichen
|
671
|
+
block: Benutzer blockieren
|
554
672
|
created_at: Hergestellt in
|
555
673
|
name: Name
|
556
674
|
nickname: Spitzname
|
@@ -558,8 +676,10 @@ de:
|
|
558
676
|
officialize: Offizialisieren
|
559
677
|
officialized: Offizialisiert
|
560
678
|
reofficialize: Reoffizialisieren
|
679
|
+
reports: Berichte
|
561
680
|
show_email: E-Mail-Adresse anzeigen
|
562
681
|
status: Status
|
682
|
+
unblock: Blockierung des Users aufheben
|
563
683
|
unofficialize: Nicht offiziell
|
564
684
|
new:
|
565
685
|
badge: Offizielles Abzeichen
|
@@ -573,6 +693,9 @@ de:
|
|
573
693
|
hidden: versteckt
|
574
694
|
show: Anzeigen
|
575
695
|
title: Teilnehmer E-Mail-Adresse anzeigen
|
696
|
+
unblock:
|
697
|
+
error: Beim Blockieren des Teilnehmers ist ein Fehler aufgetreten
|
698
|
+
success: Blockierung des Teilnehmers wurde erfolgreich aufgehoben
|
576
699
|
organization:
|
577
700
|
edit:
|
578
701
|
title: Organisation bearbeiten
|
@@ -584,7 +707,7 @@ de:
|
|
584
707
|
rich_text_editor_in_public_views_help: In einigen Textbereichen können Teilnehmer mit Hilfe des Rich-Text-Editors HTML-Tags einfügen.
|
585
708
|
social_handlers: Sozial
|
586
709
|
twitter: Twitter
|
587
|
-
url:
|
710
|
+
url: URL
|
588
711
|
youtube: Youtube
|
589
712
|
update:
|
590
713
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
@@ -619,7 +742,7 @@ de:
|
|
619
742
|
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
620
743
|
success: Participatory Space Privater Benutzerzugriff wurde erfolgreich zerstört.
|
621
744
|
index:
|
622
|
-
import_via_csv:
|
745
|
+
import_via_csv: Aus CSV-Datein importieren
|
623
746
|
title: Participatory Space privater Benutzer
|
624
747
|
new:
|
625
748
|
create: Erstellen
|
@@ -742,6 +865,7 @@ de:
|
|
742
865
|
impersonatable_users: Überschaubare Benutzer
|
743
866
|
impersonations: Benutzerverwaltung
|
744
867
|
metrics: Kriterien
|
868
|
+
panel: Admin
|
745
869
|
participants: Benutzer
|
746
870
|
scope_types: Bereichstypen
|
747
871
|
scopes: Bereiche
|
@@ -805,8 +929,19 @@ de:
|
|
805
929
|
errors:
|
806
930
|
impersonate_user:
|
807
931
|
reason: Sie müssen einen Grund angeben, wenn Sie sich als nicht verwalteter Benutzer ausgeben
|
932
|
+
metrics:
|
933
|
+
blocked_users:
|
934
|
+
object: blockierte Benutzer
|
935
|
+
title: Blockierte Benutzer
|
936
|
+
reported_users:
|
937
|
+
object: gemeldete Benutzer
|
938
|
+
title: Gemeldete Benutzer
|
939
|
+
user_reports:
|
940
|
+
object: Benutzer-Meldungen
|
941
|
+
title: Benutzer-Meldungen
|
808
942
|
moderations:
|
809
943
|
actions:
|
944
|
+
expand: Ausklappen
|
810
945
|
hidden: Versteckt
|
811
946
|
hide: verbergen
|
812
947
|
not_hidden: Nicht versteckt
|
@@ -827,18 +962,28 @@ de:
|
|
827
962
|
models:
|
828
963
|
moderation:
|
829
964
|
fields:
|
965
|
+
created_at: Erstellungsdatum
|
830
966
|
hidden_at: Versteckt bei
|
967
|
+
participatory_space: Beteiligungsbereich
|
831
968
|
report_count: Anzahl
|
832
|
-
|
969
|
+
reportable_id: ID
|
970
|
+
reportable_type: Typ
|
833
971
|
reported_content_url: URL des gemeldeten Inhalts
|
834
972
|
reports: Berichte
|
835
973
|
visit_url: Besuchs-URL
|
974
|
+
report:
|
975
|
+
fields:
|
976
|
+
details: Details zum Grund
|
977
|
+
locale: Sprache
|
978
|
+
reason: Grund
|
836
979
|
errors:
|
837
980
|
messages:
|
838
981
|
invalid_json: Ungültiger JSON
|
839
982
|
layouts:
|
840
983
|
decidim:
|
841
984
|
admin:
|
985
|
+
global_moderations:
|
986
|
+
title: Globale Moderationen
|
842
987
|
newsletters:
|
843
988
|
title: Newsletter
|
844
989
|
settings:
|