decidim-admin 0.23.5 → 0.24.2
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 +4 -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_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/area_types/index.html.erb +2 -2
- data/app/views/decidim/admin/areas/index.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/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 +3 -3
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- 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/scopes/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/static_pages/_topic.html.erb +3 -3
- data/app/views/decidim/admin/users/index.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +6 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +26 -0
- 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/pages.html.erb +2 -2
- 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 +150 -4
- data/config/locales/cs.yml +151 -5
- data/config/locales/de.yml +150 -5
- data/config/locales/el.yml +55 -5
- data/config/locales/en.yml +151 -5
- data/config/locales/es-MX.yml +149 -3
- data/config/locales/es-PY.yml +149 -3
- data/config/locales/es.yml +149 -3
- data/config/locales/eu.yml +0 -3
- data/config/locales/fi-plain.yml +149 -3
- data/config/locales/fi.yml +149 -3
- data/config/locales/fr-CA.yml +146 -4
- data/config/locales/fr.yml +146 -4
- data/config/locales/gl.yml +120 -5
- data/config/locales/hu.yml +13 -5
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/is-IS.yml +19 -3
- data/config/locales/it.yml +59 -5
- data/config/locales/ja.yml +59 -5
- data/config/locales/lv.yml +0 -5
- data/config/locales/nl.yml +113 -4
- data/config/locales/no.yml +11 -5
- data/config/locales/pl.yml +150 -5
- data/config/locales/pt-BR.yml +0 -3
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +102 -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 +149 -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/el.yml
CHANGED
@@ -26,11 +26,14 @@ el:
|
|
26
26
|
published_at: Δημοσιεύτηκε στις
|
27
27
|
weight: Βάρος
|
28
28
|
id: Αναγνωριστικό
|
29
|
+
import:
|
30
|
+
user_group_id: Δημιουργία εισαγωγών ως
|
29
31
|
newsletter:
|
30
32
|
body: Σώμα
|
31
33
|
subject: Θέμα
|
32
34
|
organization:
|
33
35
|
alert_color: Ειδοποίηση
|
36
|
+
available_authorizations: Διαθέσιμες εγκρίσεις
|
34
37
|
badges_enabled: Ενεργοποίηση εμβλημάτων
|
35
38
|
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
36
39
|
cta_button_path: Διαδρομή κουμπιού «Call To Action»
|
@@ -41,6 +44,8 @@ el:
|
|
41
44
|
enable_omnipresent_banner: Εμφάνιση διαφημιστικού πλαισίου omnipresent
|
42
45
|
facebook_handler: Πρόγραμμα χειρισμού Facebook
|
43
46
|
favicon: Εικονίδιο
|
47
|
+
force_authentication: Εξαναγκασμός ταυτοποίησης
|
48
|
+
force_users_to_authenticate_before_access_organization: Εξαναγκασμός ελέγχου ταυτότητας των χρηστών πριν από την πρόσβαση στον οργανισμό
|
44
49
|
from: Από διεύθυνση email
|
45
50
|
github_handler: Πρόγραμμα χειρισμού GitHub
|
46
51
|
header_snippets: Τμήματα κεφαλίδας
|
@@ -53,6 +58,7 @@ el:
|
|
53
58
|
highlighted_content_banner_image: Εικόνα
|
54
59
|
highlighted_content_banner_short_description: Σύντομη περιγραφή
|
55
60
|
highlighted_content_banner_title: Τίτλος
|
61
|
+
host: Διοργανωτής
|
56
62
|
instagram_handler: Πρόγραμμα χειρισμού Instagram
|
57
63
|
logo: Λογότυπο
|
58
64
|
machine_translation_display_priority: Προτεραιότητα εμφάνισης μηχανικής μετάφρασης
|
@@ -65,17 +71,21 @@ el:
|
|
65
71
|
omnipresent_banner_short_description: Σύντομη περιγραφή
|
66
72
|
omnipresent_banner_title: Τίτλος
|
67
73
|
omnipresent_banner_url: Διεύθυνση URL
|
74
|
+
organization_admin_email: Οργανισμός e-mail διαχειριστή
|
75
|
+
organization_admin_name: Όνομα διαχειριστή οργανισμού
|
76
|
+
organization_locales: Τοπικές ρυθμίσεις οργανισμού
|
68
77
|
primary_color: Κύρια
|
69
78
|
reference_prefix: Πρόθεμα αναφοράς
|
70
79
|
rich_text_editor_in_public_views: Ενεργοποίηση προγράμματος επεξεργασίας εμπλουτισμένου κειμένου για τους συμμετέχοντες
|
71
80
|
secondary_color: Δευτερεύουσα
|
81
|
+
secondary_hosts: Δευτερεύοντες διακομιστές
|
72
82
|
send_welcome_notification: Αποστολή ειδοποίησης καλωσορίσματος
|
73
|
-
show_statistics: Εμφάνιση στατιστικών
|
74
83
|
success_color: Επιτυχία
|
75
84
|
time_zone: Ζώνη ώρας
|
76
85
|
tos_version: Έκδοση όρων χρήσης υπηρεσίας
|
77
86
|
twitter_handler: Πρόγραμμα χειρισμού Twitter
|
78
87
|
user_groups_enabled: Ενεργοποίηση ομάδων
|
88
|
+
users_registration_mode: Λειτουργία εγγραφής χρηστών
|
79
89
|
warning_color: Προειδοποίηση
|
80
90
|
welcome_notification_body: Σώμα ειδοποίησης καλωσορίσματος
|
81
91
|
welcome_notification_subject: Θέμα ειδοποίησης καλωσορίσματος
|
@@ -94,6 +104,7 @@ el:
|
|
94
104
|
settings:
|
95
105
|
scope_id: Πεδίο εφαρμογής
|
96
106
|
static_page:
|
107
|
+
allow_public_access: Να επιτρέπεται η πρόσβαση χωρίς έλεγχο ταυτότητας
|
97
108
|
changed_notably: Υπήρξαν σημαντικές αλλαγές.
|
98
109
|
content: Περιεχόμενο
|
99
110
|
organization: Οργανισμός
|
@@ -116,6 +127,10 @@ el:
|
|
116
127
|
allowed_file_content_types: Μη έγκυρο αρχείο εικόνας
|
117
128
|
official_img_header:
|
118
129
|
allowed_file_content_types: Μη έγκυρο αρχείο εικόνας
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Μη έγκυρος τύπος mime
|
119
134
|
activerecord:
|
120
135
|
attributes:
|
121
136
|
decidim/static_page:
|
@@ -134,21 +149,34 @@ el:
|
|
134
149
|
admin:
|
135
150
|
actions:
|
136
151
|
add: Προσθήκη
|
152
|
+
attachment:
|
153
|
+
new: Νέο συνημμένο
|
154
|
+
attachment_collection:
|
155
|
+
new: Νέα συλλογή συνημμένων
|
137
156
|
browse: Αναζήτηση
|
157
|
+
category:
|
158
|
+
new: Νέα κατηγορία
|
138
159
|
export: Εξαγωγή
|
160
|
+
import: Εισαγωγή
|
139
161
|
manage: Διαχείριση
|
140
162
|
new: Νέο όνομα %{name}
|
163
|
+
newsletter:
|
164
|
+
new: Νέο ενημερωτικό δελτίο
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Νέος ιδιωτικός χρήστης συμμετοχικού χώρου
|
141
167
|
per_page: Ανά σελίδα
|
142
168
|
permissions: Δικαιώματα
|
143
169
|
reject: Απόρριψη
|
144
170
|
share: Κοινοποίηση
|
171
|
+
user:
|
172
|
+
new: Νέος χρήστης
|
145
173
|
verify: Επαλήθευση
|
146
174
|
admin_terms_of_use:
|
147
175
|
accept:
|
148
176
|
error: Υπήρξε ένα σφάλμα κατά την αποδοχή των όρων χρήσης διαχειριστή.
|
149
177
|
success: Εξαιρετικά! Αποδεχτήκατε τους όρους χρήσης διαχειριστή.
|
150
178
|
actions:
|
151
|
-
accept: Συμφωνώ με
|
179
|
+
accept: Συμφωνώ με τους ακόλουθους όρους
|
152
180
|
are_you_sure: Είστε βέβαιοι ότι θέλετε να απορρίψετε τους όρους διαχειριστή;
|
153
181
|
refuse: Απόρριψη των όρων διαχειριστή
|
154
182
|
title: Αποδοχή των όρων και των προϋποθέσεων χρήσης
|
@@ -227,6 +255,12 @@ el:
|
|
227
255
|
autocomplete:
|
228
256
|
no_results: Δεν βρέθηκαν αποτελέσματα
|
229
257
|
search_prompt: Πληκτρολογήστε τουλάχιστον τρεις χαρακτήρες για αναζήτηση
|
258
|
+
block_user:
|
259
|
+
new:
|
260
|
+
action: Αποκλεισμός λογαριασμού και αποστολή αιτιολόγησης
|
261
|
+
description: Ο αποκλεισμός ενός χρήστη θα καταστήσει τον λογαριασμό του μη χρησιμοποιήσιμο, μπορείτε να παράσχετε στην αιτιολόγηση και τις οδηγίες σας σχετικά με τους τρόπους με τους οποίους θεωρείτε ότι θα θεωρούσατε ότι θα καταργήσετε την φραγή του χρήστη.
|
262
|
+
justification: Αιτιολόγηση
|
263
|
+
title: Αποκλεισμός Χρήστη %{name}
|
230
264
|
categories:
|
231
265
|
create:
|
232
266
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της κατηγορίας.
|
@@ -282,6 +316,21 @@ el:
|
|
282
316
|
update:
|
283
317
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του στοιχείου.
|
284
318
|
success: Το στοιχείο ενημερώθηκε με επιτυχία.
|
319
|
+
conflicts:
|
320
|
+
attempts: Προσπάθειες
|
321
|
+
'false': 'Όχι'
|
322
|
+
managed_user_name: Διαχειριζόμενα χρήστης
|
323
|
+
solved: Λύθηκε
|
324
|
+
title: Διενέξεις επαληθεύσεων
|
325
|
+
transfer:
|
326
|
+
email: E-mail
|
327
|
+
error: Υπήρξε ένα πρόβλημα κατά τη μεταφορά του τρέχοντος συμμετέχοντα σε διαχειριζόμενο συμμετέχοντα.
|
328
|
+
name: Όνομα
|
329
|
+
reason: Αιτία
|
330
|
+
success: Η τρέχουσα μεταφορά έχει ολοκληρωθεί με επιτυχία.
|
331
|
+
title: Μεταφορά
|
332
|
+
'true': 'Ναι'
|
333
|
+
user_name: Χρήστης
|
285
334
|
dashboard:
|
286
335
|
show:
|
287
336
|
view_more_logs: Προβολή περισσότερων αρχείων καταγραφής
|
@@ -298,6 +347,9 @@ el:
|
|
298
347
|
category_id_eq:
|
299
348
|
label: Κατηγορία
|
300
349
|
filter_label: Φίλτρο
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Τύπος
|
301
353
|
officialized_at_null:
|
302
354
|
label: Κατάσταση
|
303
355
|
values:
|
@@ -318,6 +370,7 @@ el:
|
|
318
370
|
search_label: Αναζήτηση
|
319
371
|
search_placeholder:
|
320
372
|
name_or_nickname_or_email_cont: Αναζήτηση συλλογής %{collection} με βάση το email, όνομα ή ψευδώνυμο.
|
373
|
+
reported_id_string_or_reported_content_cont: Αναζήτηση %{collection} με αναγνωριστικό ή περιεχόμενο προς αναφορά.
|
321
374
|
title_cont: Αναζήτηση συλλογής %{collection} με βάση τον τίτλο.
|
322
375
|
state_eq:
|
323
376
|
label: Κατάσταση
|
@@ -576,7 +629,6 @@ el:
|
|
576
629
|
rich_text_editor_in_public_views_help: Σε ορισμένες περιοχές κειμένου, οι συμμετέχοντες θα μπορούν να εισαγάγουν μερικές ετικέτες HTML χρησιμοποιώντας το πρόγραμμα επεξεργασίας εμπλουτισμένου κειμένου.
|
577
630
|
social_handlers: Μέσα κοινωνικής δικτύωσης
|
578
631
|
twitter: Twitter
|
579
|
-
url: Διεύθυνση Url
|
580
632
|
youtube: YouTube
|
581
633
|
update:
|
582
634
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του οργανισμού.
|
@@ -611,7 +663,6 @@ el:
|
|
611
663
|
error: Υπήρξε ένα πρόβλημα κατά τη διαγραφή ενός ιδιωτικού συμμετέχοντα για αυτόν τον χώρο συμμετοχής.
|
612
664
|
success: Η πρόσβαση του ιδιωτικού συμμετέχοντα στον χώρο συμμετοχής καταστράφηκε με επιτυχία.
|
613
665
|
index:
|
614
|
-
import_via_csv: Εισαγωγή μέσω csv
|
615
666
|
title: Ιδιωτικός συμμετέχων χώρου συμμετοχής
|
616
667
|
new:
|
617
668
|
create: Δημιουργία
|
@@ -804,7 +855,6 @@ el:
|
|
804
855
|
fields:
|
805
856
|
hidden_at: Αποκρύφτηκε στις
|
806
857
|
report_count: Πλήθος
|
807
|
-
reportable: Με δυνατότητα αναφοράς
|
808
858
|
reported_content_url: Διεύθυνση URL περιεχομένου που έχει αναφερθεί
|
809
859
|
reports: Αναφορές
|
810
860
|
visit_url: Διεύθυνση URL επίσκεψης
|
data/config/locales/en.yml
CHANGED
@@ -27,11 +27,15 @@ en:
|
|
27
27
|
published_at: Published at
|
28
28
|
weight: Weight
|
29
29
|
id: ID
|
30
|
+
import:
|
31
|
+
user_group_id: Create imports as
|
30
32
|
newsletter:
|
31
33
|
body: Body
|
32
34
|
subject: Subject
|
33
35
|
organization:
|
36
|
+
admin_terms_of_use_body: Body for the admin terms of use
|
34
37
|
alert_color: Alert
|
38
|
+
available_authorizations: Available authorizations
|
35
39
|
badges_enabled: Enable badges
|
36
40
|
comments_max_length: Comments max length (Leave 0 for default value)
|
37
41
|
cta_button_path: Call To Action button path
|
@@ -42,6 +46,8 @@ en:
|
|
42
46
|
enable_omnipresent_banner: Show omnipresent banner
|
43
47
|
facebook_handler: Facebook handler
|
44
48
|
favicon: Icon
|
49
|
+
force_authentication: Force authentication
|
50
|
+
force_users_to_authenticate_before_access_organization: Force users to authenticate before access organization
|
45
51
|
from: From email address
|
46
52
|
github_handler: GitHub handler
|
47
53
|
header_snippets: Header snippets
|
@@ -54,6 +60,7 @@ en:
|
|
54
60
|
highlighted_content_banner_image: Image
|
55
61
|
highlighted_content_banner_short_description: Short description
|
56
62
|
highlighted_content_banner_title: Title
|
63
|
+
host: Host
|
57
64
|
instagram_handler: Instagram handler
|
58
65
|
logo: Logo
|
59
66
|
machine_translation_display_priority: Machine translation display priority
|
@@ -66,17 +73,21 @@ en:
|
|
66
73
|
omnipresent_banner_short_description: Short description
|
67
74
|
omnipresent_banner_title: Title
|
68
75
|
omnipresent_banner_url: URL
|
76
|
+
organization_admin_email: Organization admin email
|
77
|
+
organization_admin_name: Organization admin name
|
78
|
+
organization_locales: Organization locales
|
69
79
|
primary_color: Primary
|
70
80
|
reference_prefix: Reference prefix
|
71
81
|
rich_text_editor_in_public_views: Enable rich text editor for participants
|
72
82
|
secondary_color: Secondary
|
83
|
+
secondary_hosts: Secondary hosts
|
73
84
|
send_welcome_notification: Send welcome notification
|
74
|
-
show_statistics: Show statistics
|
75
85
|
success_color: Success
|
76
86
|
time_zone: Time Zone
|
77
87
|
tos_version: Terms of service version
|
78
88
|
twitter_handler: Twitter handler
|
79
89
|
user_groups_enabled: Enable groups
|
90
|
+
users_registration_mode: Users registration mode
|
80
91
|
warning_color: Warning
|
81
92
|
welcome_notification_body: Welcome notification body
|
82
93
|
welcome_notification_subject: Welcome notification subject
|
@@ -95,6 +106,7 @@ en:
|
|
95
106
|
settings:
|
96
107
|
scope_id: Scope
|
97
108
|
static_page:
|
109
|
+
allow_public_access: Allow access without authentication
|
98
110
|
changed_notably: There have been noticeable changes.
|
99
111
|
content: Content
|
100
112
|
organization: Organization
|
@@ -117,6 +129,10 @@ en:
|
|
117
129
|
allowed_file_content_types: Invalid image file
|
118
130
|
official_img_header:
|
119
131
|
allowed_file_content_types: Invalid image file
|
132
|
+
new_import:
|
133
|
+
attributes:
|
134
|
+
file:
|
135
|
+
invalid_mime_type: Invalid mime type
|
120
136
|
activerecord:
|
121
137
|
attributes:
|
122
138
|
decidim/static_page:
|
@@ -135,21 +151,34 @@ en:
|
|
135
151
|
admin:
|
136
152
|
actions:
|
137
153
|
add: Add
|
154
|
+
attachment:
|
155
|
+
new: New attachment
|
156
|
+
attachment_collection:
|
157
|
+
new: New attachment collection
|
138
158
|
browse: Browse
|
159
|
+
category:
|
160
|
+
new: New category
|
139
161
|
export: Export
|
162
|
+
import: Import
|
140
163
|
manage: Manage
|
141
164
|
new: New %{name}
|
165
|
+
newsletter:
|
166
|
+
new: New newsletter
|
167
|
+
participatory_space_private_user:
|
168
|
+
new: New participatory space private user
|
142
169
|
per_page: Per page
|
143
170
|
permissions: Permissions
|
144
171
|
reject: Reject
|
145
172
|
share: Share
|
173
|
+
user:
|
174
|
+
new: New user
|
146
175
|
verify: Verify
|
147
176
|
admin_terms_of_use:
|
148
177
|
accept:
|
149
178
|
error: There's been an error while accepting the admin terms of use.
|
150
179
|
success: Great! You've accepted the admin terms of use.
|
151
180
|
actions:
|
152
|
-
accept: I agree
|
181
|
+
accept: I agree with the following terms
|
153
182
|
are_you_sure: Are you sure to refuse the admin terms?
|
154
183
|
refuse: Refuse the admin terms
|
155
184
|
title: Agree to the terms and conditions of use
|
@@ -228,6 +257,12 @@ en:
|
|
228
257
|
autocomplete:
|
229
258
|
no_results: No results found
|
230
259
|
search_prompt: Type at least three characters to search
|
260
|
+
block_user:
|
261
|
+
new:
|
262
|
+
action: Block account and send justification
|
263
|
+
description: Blocking an user will render its account unusable, you may provide in your justification and guidelines on ways you deem you would consider unblocking the user.
|
264
|
+
justification: Justification
|
265
|
+
title: Block User %{name}
|
231
266
|
categories:
|
232
267
|
create:
|
233
268
|
error: There was a problem creating this category.
|
@@ -283,6 +318,21 @@ en:
|
|
283
318
|
update:
|
284
319
|
error: There was a problem updating this component.
|
285
320
|
success: The component was updated successfully.
|
321
|
+
conflicts:
|
322
|
+
attempts: Attempts
|
323
|
+
'false': 'No'
|
324
|
+
managed_user_name: Managed User
|
325
|
+
solved: Solved
|
326
|
+
title: Verifications's conflicts
|
327
|
+
transfer:
|
328
|
+
email: Email
|
329
|
+
error: There was a problem transfering the current participant to managed participant.
|
330
|
+
name: Name
|
331
|
+
reason: Reason
|
332
|
+
success: The current transfer has been successfully completed.
|
333
|
+
title: Transfer
|
334
|
+
'true': 'Yes'
|
335
|
+
user_name: User
|
286
336
|
dashboard:
|
287
337
|
show:
|
288
338
|
view_more_logs: View more logs
|
@@ -299,6 +349,9 @@ en:
|
|
299
349
|
category_id_eq:
|
300
350
|
label: Category
|
301
351
|
filter_label: Filter
|
352
|
+
moderations:
|
353
|
+
reportable_type_string_eq:
|
354
|
+
label: Type
|
302
355
|
officialized_at_null:
|
303
356
|
label: State
|
304
357
|
values:
|
@@ -319,9 +372,16 @@ en:
|
|
319
372
|
search_label: Search
|
320
373
|
search_placeholder:
|
321
374
|
name_or_nickname_or_email_cont: Search %{collection} by email, name or nickname.
|
375
|
+
reported_id_string_or_reported_content_cont: Search %{collection} by reportable id or content.
|
322
376
|
title_cont: Search %{collection} by title.
|
323
377
|
state_eq:
|
324
378
|
label: State
|
379
|
+
forms:
|
380
|
+
file_help:
|
381
|
+
import:
|
382
|
+
explanation: 'Guidance for file:'
|
383
|
+
message_1: CSV, JSON and Excel (.xls) files are supported
|
384
|
+
message_2: For CSV files, the separator between columns must be a semicolon (";")
|
325
385
|
help_sections:
|
326
386
|
error: There was a problem updating the help sections
|
327
387
|
form:
|
@@ -360,6 +420,24 @@ en:
|
|
360
420
|
impersonate_existing_managed_user: Manage participant "%{name}"
|
361
421
|
impersonate_existing_user: Manage participant "%{name}"
|
362
422
|
impersonate_new_managed_user: Manage new participant
|
423
|
+
imports:
|
424
|
+
creators:
|
425
|
+
proposalcreator: Proposal creator
|
426
|
+
error: There was a problem during the import
|
427
|
+
help:
|
428
|
+
proposalcreator: The file must have column names title/en and body/en (or another locale which you prefer eg. title/ca and body/ca). Also scope/id and category/id columns are supported.
|
429
|
+
import_from_file: Import from a file
|
430
|
+
invalid_lines: Found error in resource number %{invalid_lines}
|
431
|
+
new:
|
432
|
+
accepted_mime_types:
|
433
|
+
csv: csv
|
434
|
+
json: json
|
435
|
+
xls: xls
|
436
|
+
actions:
|
437
|
+
back: Back
|
438
|
+
file_legend: Add an import file that will be parsed.
|
439
|
+
import: Import
|
440
|
+
notice: "%{number} %{resource_name} successfully imported"
|
363
441
|
logs:
|
364
442
|
logs_list:
|
365
443
|
no_logs_yet: There are no logs yet
|
@@ -383,8 +461,10 @@ en:
|
|
383
461
|
help_sections: Help sections
|
384
462
|
homepage: Homepage
|
385
463
|
impersonations: Impersonations
|
464
|
+
moderation: Global moderations
|
386
465
|
newsletters: Newsletters
|
387
466
|
participants: Participants
|
467
|
+
reported_users: Reported Users
|
388
468
|
scope_types: Scope types
|
389
469
|
scopes: Scopes
|
390
470
|
settings: Settings
|
@@ -472,6 +552,26 @@ en:
|
|
472
552
|
phone: Phone
|
473
553
|
state: State
|
474
554
|
users_count: Participants count
|
555
|
+
moderated_users:
|
556
|
+
index:
|
557
|
+
actions:
|
558
|
+
block: Block User
|
559
|
+
title: Actions
|
560
|
+
unblock: Unblock User
|
561
|
+
unreport: Unreport
|
562
|
+
name: Name
|
563
|
+
nickname: Nickname
|
564
|
+
reason: Reason
|
565
|
+
reports: Reports count
|
566
|
+
title: Listing reported users
|
567
|
+
report:
|
568
|
+
reasons:
|
569
|
+
does_not_belong: Does not belong
|
570
|
+
offensive: Offensive
|
571
|
+
spam: Spam
|
572
|
+
tabs:
|
573
|
+
blocked: Blocked
|
574
|
+
unblocked: Not Blocked
|
475
575
|
moderations:
|
476
576
|
index:
|
477
577
|
title: Moderations
|
@@ -480,6 +580,21 @@ en:
|
|
480
580
|
does_not_belong: Does not belong
|
481
581
|
offensive: Offensive
|
482
582
|
spam: Spam
|
583
|
+
reports:
|
584
|
+
index:
|
585
|
+
author: Author(s)
|
586
|
+
callout_html: A content appears in the moderation panel when it has been signaled by a user (can be anyone with a registered account) by clicking on the %{icon} flag next to the item.
|
587
|
+
content_original_language: Content original language
|
588
|
+
participatory_space: Participatory space
|
589
|
+
reported_content: Reported content
|
590
|
+
see_current: See current
|
591
|
+
see_original: See original
|
592
|
+
title: Moderation reports
|
593
|
+
show:
|
594
|
+
report_details: Reason details
|
595
|
+
report_language: Report language
|
596
|
+
report_reason: Reason
|
597
|
+
title: Report details
|
483
598
|
newsletter_templates:
|
484
599
|
index:
|
485
600
|
preview_template: Preview
|
@@ -545,6 +660,9 @@ en:
|
|
545
660
|
error: There was a problem updating this newsletter.
|
546
661
|
success: Newsletter updated successfully. Please review it before sending.
|
547
662
|
officializations:
|
663
|
+
block:
|
664
|
+
error: There was an error blocking the participant
|
665
|
+
success: Participant successfully blocked
|
548
666
|
create:
|
549
667
|
success: Participant successfully officialized
|
550
668
|
destroy:
|
@@ -552,6 +670,7 @@ en:
|
|
552
670
|
index:
|
553
671
|
actions: Actions
|
554
672
|
badge: Badge
|
673
|
+
block: Block User
|
555
674
|
created_at: Created At
|
556
675
|
name: Name
|
557
676
|
nickname: Nickname
|
@@ -559,8 +678,10 @@ en:
|
|
559
678
|
officialize: Officialize
|
560
679
|
officialized: Officialized
|
561
680
|
reofficialize: Reofficialize
|
681
|
+
reports: Reports
|
562
682
|
show_email: Show email address
|
563
683
|
status: Status
|
684
|
+
unblock: Unblock User
|
564
685
|
unofficialize: Unofficialize
|
565
686
|
new:
|
566
687
|
badge: Officialization badge
|
@@ -574,6 +695,9 @@ en:
|
|
574
695
|
hidden: hidden
|
575
696
|
show: Show
|
576
697
|
title: Show participant email address
|
698
|
+
unblock:
|
699
|
+
error: There was an error unblocking the participant
|
700
|
+
success: Participant successfully unblocked
|
577
701
|
organization:
|
578
702
|
edit:
|
579
703
|
title: Edit organization
|
@@ -585,7 +709,7 @@ en:
|
|
585
709
|
rich_text_editor_in_public_views_help: In some text areas, participants will be able to insert some HTML tags by using the rich text editor.
|
586
710
|
social_handlers: Social
|
587
711
|
twitter: Twitter
|
588
|
-
url:
|
712
|
+
url: URL
|
589
713
|
youtube: YouTube
|
590
714
|
update:
|
591
715
|
error: There was a problem updating this organization.
|
@@ -620,7 +744,7 @@ en:
|
|
620
744
|
error: There was a problem deleting a private participant for this participatory space.
|
621
745
|
success: Participatory space private participant access successfully destroyed.
|
622
746
|
index:
|
623
|
-
import_via_csv: Import via
|
747
|
+
import_via_csv: Import via CSV
|
624
748
|
title: Participatory space private participant
|
625
749
|
new:
|
626
750
|
create: Create
|
@@ -743,6 +867,7 @@ en:
|
|
743
867
|
impersonatable_users: Manageable participants
|
744
868
|
impersonations: Participants management
|
745
869
|
metrics: Metrics
|
870
|
+
panel: Admin
|
746
871
|
participants: Participants
|
747
872
|
scope_types: Scope types
|
748
873
|
scopes: Scopes
|
@@ -806,8 +931,19 @@ en:
|
|
806
931
|
errors:
|
807
932
|
impersonate_user:
|
808
933
|
reason: You need to provide a reason when managing a non managed participant
|
934
|
+
metrics:
|
935
|
+
blocked_users:
|
936
|
+
object: blocked users
|
937
|
+
title: Blocked users
|
938
|
+
reported_users:
|
939
|
+
object: reported users
|
940
|
+
title: Reported users
|
941
|
+
user_reports:
|
942
|
+
object: user reports
|
943
|
+
title: User reports
|
809
944
|
moderations:
|
810
945
|
actions:
|
946
|
+
expand: Expand
|
811
947
|
hidden: Hidden
|
812
948
|
hide: Hide
|
813
949
|
not_hidden: Not hidden
|
@@ -828,18 +964,28 @@ en:
|
|
828
964
|
models:
|
829
965
|
moderation:
|
830
966
|
fields:
|
967
|
+
created_at: Creation date
|
831
968
|
hidden_at: Hidden at
|
969
|
+
participatory_space: Participatory space
|
832
970
|
report_count: Count
|
833
|
-
|
971
|
+
reportable_id: Id
|
972
|
+
reportable_type: Type
|
834
973
|
reported_content_url: Reported content URL
|
835
974
|
reports: Reports
|
836
975
|
visit_url: Visit URL
|
976
|
+
report:
|
977
|
+
fields:
|
978
|
+
details: Reason details
|
979
|
+
locale: Language
|
980
|
+
reason: Reason
|
837
981
|
errors:
|
838
982
|
messages:
|
839
983
|
invalid_json: Invalid JSON
|
840
984
|
layouts:
|
841
985
|
decidim:
|
842
986
|
admin:
|
987
|
+
global_moderations:
|
988
|
+
title: Global moderations
|
843
989
|
newsletters:
|
844
990
|
title: Newsletters
|
845
991
|
settings:
|