decidim-admin 0.23.0 → 0.24.0.rc1
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 +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/de.yml
CHANGED
@@ -26,12 +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
|
-
address: SMTP Hostname
|
34
35
|
alert_color: Benachrichtigung
|
36
|
+
available_authorizations: Verfügbare Autorisierungen
|
35
37
|
badges_enabled: Abzeichen aktivieren
|
36
38
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
37
39
|
cta_button_path: Call To Action Schaltfläche Pfad
|
@@ -42,6 +44,8 @@ de:
|
|
42
44
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
43
45
|
facebook_handler: Facebook-Handler
|
44
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
|
45
49
|
from: Absender E-Mail
|
46
50
|
github_handler: GitHub-Handler
|
47
51
|
header_snippets: Header-Snippets
|
@@ -54,6 +58,7 @@ de:
|
|
54
58
|
highlighted_content_banner_image: Bild
|
55
59
|
highlighted_content_banner_short_description: Kurze Beschreibung
|
56
60
|
highlighted_content_banner_title: Titel
|
61
|
+
host: Host
|
57
62
|
instagram_handler: Instagram-Handler
|
58
63
|
logo: Logo
|
59
64
|
machine_translation_display_priority: Priorität der maschinellen Übersetzung
|
@@ -66,20 +71,21 @@ de:
|
|
66
71
|
omnipresent_banner_short_description: Kurze Beschreibung
|
67
72
|
omnipresent_banner_title: Titel
|
68
73
|
omnipresent_banner_url: URL
|
69
|
-
|
70
|
-
|
74
|
+
organization_admin_email: E-Mail des Organisations-Admins
|
75
|
+
organization_admin_name: Name des Organisations-Admins
|
76
|
+
organization_locales: Verfügbare Sprachen
|
71
77
|
primary_color: Primär
|
72
78
|
reference_prefix: Referenzpräfix
|
73
79
|
rich_text_editor_in_public_views: Rich-Text-Editor für Teilnehmer aktivieren
|
74
80
|
secondary_color: Sekundär
|
81
|
+
secondary_hosts: Weitere Hosts
|
75
82
|
send_welcome_notification: Willkommens-Benachrichtigung senden
|
76
|
-
show_statistics: Zeige Statistiken
|
77
83
|
success_color: Erfolg
|
78
84
|
time_zone: Zeitzone
|
79
85
|
tos_version: Nutzungsbedingungen Version
|
80
86
|
twitter_handler: Twitter-Handler
|
81
87
|
user_groups_enabled: Benutzergruppen aktivieren
|
82
|
-
|
88
|
+
users_registration_mode: Benutzerregistrierungs-Modus
|
83
89
|
warning_color: Warnung
|
84
90
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
85
91
|
welcome_notification_subject: Betreff der Willkommens-Benachrichtigung
|
@@ -95,7 +101,10 @@ de:
|
|
95
101
|
name: Name
|
96
102
|
organization: Organisation
|
97
103
|
plural: Plural
|
104
|
+
settings:
|
105
|
+
scope_id: Umfang
|
98
106
|
static_page:
|
107
|
+
allow_public_access: Zugriff ohne Authentifizierung erlauben
|
99
108
|
changed_notably: Es gab bemerkenswerte Änderungen.
|
100
109
|
content: Inhalt
|
101
110
|
organization: Organisation
|
@@ -118,6 +127,10 @@ de:
|
|
118
127
|
allowed_file_content_types: Ungültige Bilddatei
|
119
128
|
official_img_header:
|
120
129
|
allowed_file_content_types: Ungültige Bilddatei
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Ungültiger MIME-Typ
|
121
134
|
activerecord:
|
122
135
|
attributes:
|
123
136
|
decidim/static_page:
|
@@ -126,39 +139,52 @@ de:
|
|
126
139
|
title: Titel
|
127
140
|
doorkeeper/application:
|
128
141
|
authorize_url: URL autorisieren
|
129
|
-
client_id:
|
142
|
+
client_id: Client-ID
|
130
143
|
client_secret: Kundengeheimnis
|
131
144
|
organization_name: Name der Organisation
|
132
145
|
organization_url: Organisations-URL
|
133
|
-
redirect_uri: URI
|
146
|
+
redirect_uri: Umleitungs URI
|
134
147
|
site: Webseite
|
135
148
|
decidim:
|
136
149
|
admin:
|
137
150
|
actions:
|
138
151
|
add: Hinzufügen
|
139
|
-
|
152
|
+
attachment:
|
153
|
+
new: Neuer Anhang
|
154
|
+
attachment_collection:
|
155
|
+
new: Neuer Ordner
|
156
|
+
browse: Durchsuchen
|
157
|
+
category:
|
158
|
+
new: Neue Kategorie
|
140
159
|
export: Export
|
160
|
+
import: Importieren
|
141
161
|
manage: Verwalten
|
142
162
|
new: Neu %{name}
|
163
|
+
newsletter:
|
164
|
+
new: Neuer Newsletter
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Neuer privater Benutzer
|
143
167
|
per_page: Pro Seite
|
144
168
|
permissions: Berechtigungen
|
145
169
|
reject: Ablehnen
|
146
170
|
share: Teilen
|
171
|
+
user:
|
172
|
+
new: Neuer Benutzer
|
147
173
|
verify: Überprüfen
|
148
174
|
admin_terms_of_use:
|
149
175
|
accept:
|
150
|
-
error:
|
151
|
-
success: Super!
|
176
|
+
error: Beim Akzeptieren der Nutzungsbedingungen ist ein Fehler aufgetreten.
|
177
|
+
success: Super! Sie haben die Admin-Nutzungsbedingungen akzeptiert.
|
152
178
|
actions:
|
153
|
-
accept: Ich stimme
|
154
|
-
are_you_sure: Sind Sie sicher, die Admin-
|
155
|
-
refuse: Die Admin-
|
156
|
-
title: Den Nutzungsbedingungen zustimmen
|
179
|
+
accept: Ich stimme den folgenden Bedingungen zu
|
180
|
+
are_you_sure: Sind Sie sicher, dass Sie die Admin-Nutzungsbedingungen ablehnen möchten?
|
181
|
+
refuse: Die Admin-Nutzungsbedingungen ablehnen
|
182
|
+
title: Den Admin-Nutzungsbedingungen zustimmen
|
157
183
|
required_review:
|
158
184
|
alert: 'Erforderlich: Überprüfen Sie unsere Admin-Nutzungsbedingungen'
|
159
|
-
callout: Bitte nehmen Sie sich einen Moment Zeit, um die Admin-Nutzungsbedingungen zu lesen.
|
185
|
+
callout: Bitte nehmen Sie sich einen Moment Zeit, um die Admin-Nutzungsbedingungen zu lesen. Ansonsten können Sie die Plattform nicht administrieren.
|
160
186
|
cta: Lesen Sie sie jetzt.
|
161
|
-
title: Admin
|
187
|
+
title: Admin-Nutzungsbedingungen
|
162
188
|
area_types:
|
163
189
|
create:
|
164
190
|
error: Beim Erstellen eines neuen Bereichstyps ist ein Fehler aufgetreten.
|
@@ -211,24 +237,30 @@ de:
|
|
211
237
|
success: Der Ordner wurde erfolgreich aktualisiert.
|
212
238
|
attachments:
|
213
239
|
create:
|
214
|
-
error: Beim Erstellen
|
215
|
-
success:
|
240
|
+
error: Beim Erstellen des neuen Anhangs ist ein Fehler aufgetreten.
|
241
|
+
success: Anhang wurde erfolgreich erstellt.
|
216
242
|
destroy:
|
217
|
-
success:
|
243
|
+
success: Anhang wurde erfolgreich entfernt.
|
218
244
|
edit:
|
219
245
|
title: Anhang bearbeiten
|
220
246
|
update: Aktualisieren
|
221
247
|
index:
|
222
|
-
attachments_title:
|
248
|
+
attachments_title: Anhänge
|
223
249
|
new:
|
224
250
|
create: Anhang erstellen
|
225
251
|
title: Neuer Anhang
|
226
252
|
update:
|
227
253
|
error: Beim Aktualisieren dieses Anhangs ist ein Fehler aufgetreten.
|
228
|
-
success:
|
254
|
+
success: Anhang wurde erfolgreich aktualisiert.
|
229
255
|
autocomplete:
|
230
256
|
no_results: keine Ergebnisse gefunden
|
231
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
|
232
264
|
categories:
|
233
265
|
create:
|
234
266
|
error: Beim Erstellen dieser Kategorie ist ein Fehler aufgetreten.
|
@@ -284,6 +316,21 @@ de:
|
|
284
316
|
update:
|
285
317
|
error: Beim Aktualisieren dieser Komponente ist ein Fehler aufgetreten.
|
286
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
|
287
334
|
dashboard:
|
288
335
|
show:
|
289
336
|
view_more_logs: Weitere Protokolle anzeigen
|
@@ -300,6 +347,9 @@ de:
|
|
300
347
|
category_id_eq:
|
301
348
|
label: Kategorie
|
302
349
|
filter_label: Filtern
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Art
|
303
353
|
officialized_at_null:
|
304
354
|
label: Zustand
|
305
355
|
values:
|
@@ -320,9 +370,16 @@ de:
|
|
320
370
|
search_label: Suche
|
321
371
|
search_placeholder:
|
322
372
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
323
|
-
|
373
|
+
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
374
|
+
title_cont: In %{collection} nach Titel suchen.
|
324
375
|
state_eq:
|
325
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 (";")
|
326
383
|
help_sections:
|
327
384
|
error: Beim Aktualisieren der Hilfeabschnitte ist ein Fehler aufgetreten
|
328
385
|
form:
|
@@ -361,6 +418,24 @@ de:
|
|
361
418
|
impersonate_existing_managed_user: Angenommen, dass der Benutzer "%{name}" verwaltet wird
|
362
419
|
impersonate_existing_user: Imitieren von Benutzer "%{name}"
|
363
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"
|
364
439
|
logs:
|
365
440
|
logs_list:
|
366
441
|
no_logs_yet: Es gibt noch keine Protokolle
|
@@ -374,7 +449,7 @@ de:
|
|
374
449
|
new_managed_user_promotion: Neue verwaltete Benutzerwerbung
|
375
450
|
promote: Fördern
|
376
451
|
menu:
|
377
|
-
admin_log:
|
452
|
+
admin_log: Admin-Aktivitätsprotokoll
|
378
453
|
admins: Admins
|
379
454
|
appearance: Aussehen
|
380
455
|
area_types: Bereichstypen
|
@@ -384,8 +459,10 @@ de:
|
|
384
459
|
help_sections: Hilfeabschnitte
|
385
460
|
homepage: Startseite
|
386
461
|
impersonations: Identitätswechsel
|
462
|
+
moderation: Globale Moderationen
|
387
463
|
newsletters: Newsletter
|
388
464
|
participants: Teilnehmer
|
465
|
+
reported_users: Gemeldete Nutzer
|
389
466
|
scope_types: Bereichstypen
|
390
467
|
scopes: Bereiche
|
391
468
|
settings: die Einstellungen
|
@@ -473,6 +550,26 @@ de:
|
|
473
550
|
phone: Telefon
|
474
551
|
state: Zustand
|
475
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
|
476
573
|
moderations:
|
477
574
|
index:
|
478
575
|
title: Moderationen
|
@@ -481,6 +578,21 @@ de:
|
|
481
578
|
does_not_belong: Gehört nicht
|
482
579
|
offensive: Beleidigend
|
483
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
|
484
596
|
newsletter_templates:
|
485
597
|
index:
|
486
598
|
preview_template: Vorschau
|
@@ -546,6 +658,9 @@ de:
|
|
546
658
|
error: Beim Aktualisieren dieses Newsletters ist ein Fehler aufgetreten.
|
547
659
|
success: Newsletter erfolgreich aktualisiert. Bitte überprüfen Sie es vor dem Senden.
|
548
660
|
officializations:
|
661
|
+
block:
|
662
|
+
error: Beim Blockieren des Teilnehmers ist ein Fehler aufgetreten
|
663
|
+
success: Teilnehmer erfolgreich blockiert
|
549
664
|
create:
|
550
665
|
success: Benutzer wurde offiziell anerkannt
|
551
666
|
destroy:
|
@@ -553,6 +668,7 @@ de:
|
|
553
668
|
index:
|
554
669
|
actions: Aktionen
|
555
670
|
badge: Abzeichen
|
671
|
+
block: Benutzer blockieren
|
556
672
|
created_at: Hergestellt in
|
557
673
|
name: Name
|
558
674
|
nickname: Spitzname
|
@@ -560,8 +676,10 @@ de:
|
|
560
676
|
officialize: Offizialisieren
|
561
677
|
officialized: Offizialisiert
|
562
678
|
reofficialize: Reoffizialisieren
|
679
|
+
reports: Berichte
|
563
680
|
show_email: E-Mail-Adresse anzeigen
|
564
681
|
status: Status
|
682
|
+
unblock: Blockierung des Users aufheben
|
565
683
|
unofficialize: Nicht offiziell
|
566
684
|
new:
|
567
685
|
badge: Offizielles Abzeichen
|
@@ -575,6 +693,9 @@ de:
|
|
575
693
|
hidden: versteckt
|
576
694
|
show: Anzeigen
|
577
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
|
578
699
|
organization:
|
579
700
|
edit:
|
580
701
|
title: Organisation bearbeiten
|
@@ -586,7 +707,7 @@ de:
|
|
586
707
|
rich_text_editor_in_public_views_help: In einigen Textbereichen können Teilnehmer mit Hilfe des Rich-Text-Editors HTML-Tags einfügen.
|
587
708
|
social_handlers: Sozial
|
588
709
|
twitter: Twitter
|
589
|
-
url:
|
710
|
+
url: URL
|
590
711
|
youtube: Youtube
|
591
712
|
update:
|
592
713
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
@@ -621,7 +742,7 @@ de:
|
|
621
742
|
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
622
743
|
success: Participatory Space Privater Benutzerzugriff wurde erfolgreich zerstört.
|
623
744
|
index:
|
624
|
-
import_via_csv:
|
745
|
+
import_via_csv: Aus CSV-Datein importieren
|
625
746
|
title: Participatory Space privater Benutzer
|
626
747
|
new:
|
627
748
|
create: Erstellen
|
@@ -631,6 +752,7 @@ de:
|
|
631
752
|
invalid: Beim Lesen der CSV-Datei ist ein Fehler aufgetreten.
|
632
753
|
success: CSV-Datei wurde erfolgreich hochgeladen, wir senden eine Einladungs-E-Mail an die Teilnehmer. Dies kann eine Weile dauern.
|
633
754
|
new:
|
755
|
+
explanation: 'Laden Sie Ihre CSV-Datei hoch. Diese muss zwei Spalten haben ohne Kopfzeile, mit E-Mail in der ersten Spalte der Datei und Namen in der letzten Spalte der Datei (E-Mail, Name) in Bezug auf die Benutzer, die Sie dem Beteiligungsbereich hinzufügen möchten. Vermeiden sie ungültige Zeichen wie `<>?%&^*#@()[]=+:;"{}\|` im Namen des Nutzers zu verwenden.'
|
634
756
|
title: CSV-Datei hochladen
|
635
757
|
upload: Hochladen
|
636
758
|
resource_permissions:
|
@@ -735,7 +857,7 @@ de:
|
|
735
857
|
error: Beim Aktualisieren dieser Seite ist ein Fehler aufgetreten.
|
736
858
|
success: Seite wurde erfolgreich aktualisiert
|
737
859
|
titles:
|
738
|
-
admin_log:
|
860
|
+
admin_log: Adminprotokoll
|
739
861
|
area_types: Bereichstypen
|
740
862
|
areas: Bereiche
|
741
863
|
authorization_workflows: Verifizierungsmethoden
|
@@ -743,6 +865,7 @@ de:
|
|
743
865
|
impersonatable_users: Überschaubare Benutzer
|
744
866
|
impersonations: Benutzerverwaltung
|
745
867
|
metrics: Kriterien
|
868
|
+
panel: Admin
|
746
869
|
participants: Benutzer
|
747
870
|
scope_types: Bereichstypen
|
748
871
|
scopes: Bereiche
|
@@ -806,8 +929,19 @@ de:
|
|
806
929
|
errors:
|
807
930
|
impersonate_user:
|
808
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
|
809
942
|
moderations:
|
810
943
|
actions:
|
944
|
+
expand: Ausklappen
|
811
945
|
hidden: Versteckt
|
812
946
|
hide: verbergen
|
813
947
|
not_hidden: Nicht versteckt
|
@@ -824,22 +958,32 @@ de:
|
|
824
958
|
success: Ressource erfolgreich ausgeblendet.
|
825
959
|
unreport:
|
826
960
|
invalid: Es ist ein Problem aufgetreten, die Ressource nicht zu melden.
|
827
|
-
success: Die Ressource wurde erfolgreich
|
961
|
+
success: Die Meldung der Ressource wurde erfolgreich aufgehoben.
|
828
962
|
models:
|
829
963
|
moderation:
|
830
964
|
fields:
|
965
|
+
created_at: Erstellungsdatum
|
831
966
|
hidden_at: Versteckt bei
|
967
|
+
participatory_space: Beteiligungsbereich
|
832
968
|
report_count: Anzahl
|
833
|
-
|
969
|
+
reportable_id: ID
|
970
|
+
reportable_type: Typ
|
834
971
|
reported_content_url: URL des gemeldeten Inhalts
|
835
972
|
reports: Berichte
|
836
973
|
visit_url: Besuchs-URL
|
974
|
+
report:
|
975
|
+
fields:
|
976
|
+
details: Details zum Grund
|
977
|
+
locale: Sprache
|
978
|
+
reason: Grund
|
837
979
|
errors:
|
838
980
|
messages:
|
839
981
|
invalid_json: Ungültiger JSON
|
840
982
|
layouts:
|
841
983
|
decidim:
|
842
984
|
admin:
|
985
|
+
global_moderations:
|
986
|
+
title: Globale Moderationen
|
843
987
|
newsletters:
|
844
988
|
title: Newsletter
|
845
989
|
settings:
|
data/config/locales/el.yml
CHANGED
@@ -26,12 +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
|
-
address: Όνομα κεντρικού υπολογιστή SMTP
|
34
35
|
alert_color: Ειδοποίηση
|
36
|
+
available_authorizations: Διαθέσιμες εγκρίσεις
|
35
37
|
badges_enabled: Ενεργοποίηση εμβλημάτων
|
36
38
|
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
37
39
|
cta_button_path: Διαδρομή κουμπιού «Call To Action»
|
@@ -42,6 +44,8 @@ el:
|
|
42
44
|
enable_omnipresent_banner: Εμφάνιση διαφημιστικού πλαισίου omnipresent
|
43
45
|
facebook_handler: Πρόγραμμα χειρισμού Facebook
|
44
46
|
favicon: Εικονίδιο
|
47
|
+
force_authentication: Εξαναγκασμός ταυτοποίησης
|
48
|
+
force_users_to_authenticate_before_access_organization: Εξαναγκασμός ελέγχου ταυτότητας των χρηστών πριν από την πρόσβαση στον οργανισμό
|
45
49
|
from: Από διεύθυνση email
|
46
50
|
github_handler: Πρόγραμμα χειρισμού GitHub
|
47
51
|
header_snippets: Τμήματα κεφαλίδας
|
@@ -54,8 +58,12 @@ el:
|
|
54
58
|
highlighted_content_banner_image: Εικόνα
|
55
59
|
highlighted_content_banner_short_description: Σύντομη περιγραφή
|
56
60
|
highlighted_content_banner_title: Τίτλος
|
61
|
+
host: Διοργανωτής
|
57
62
|
instagram_handler: Πρόγραμμα χειρισμού Instagram
|
58
63
|
logo: Λογότυπο
|
64
|
+
machine_translation_display_priority: Προτεραιότητα εμφάνισης μηχανικής μετάφρασης
|
65
|
+
machine_translation_display_priority_original: Αρχικό κείμενο πρώτα
|
66
|
+
machine_translation_display_priority_translation: Μεταφρασμένο κείμενο πρώτα
|
59
67
|
name: Όνομα
|
60
68
|
official_img_footer: Επίσημο υποσέλιδο λογότυπου
|
61
69
|
official_img_header: Επίσημη κεφαλίδα λογότυπου
|
@@ -63,20 +71,21 @@ el:
|
|
63
71
|
omnipresent_banner_short_description: Σύντομη περιγραφή
|
64
72
|
omnipresent_banner_title: Τίτλος
|
65
73
|
omnipresent_banner_url: Διεύθυνση URL
|
66
|
-
|
67
|
-
|
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: Ενεργοποίηση ομάδων
|
79
|
-
|
88
|
+
users_registration_mode: Λειτουργία εγγραφής χρηστών
|
80
89
|
warning_color: Προειδοποίηση
|
81
90
|
welcome_notification_body: Σώμα ειδοποίησης καλωσορίσματος
|
82
91
|
welcome_notification_subject: Θέμα ειδοποίησης καλωσορίσματος
|
@@ -92,7 +101,10 @@ el:
|
|
92
101
|
name: Όνομα
|
93
102
|
organization: Οργανισμός
|
94
103
|
plural: Πληθυντικός
|
104
|
+
settings:
|
105
|
+
scope_id: Πεδίο εφαρμογής
|
95
106
|
static_page:
|
107
|
+
allow_public_access: Να επιτρέπεται η πρόσβαση χωρίς έλεγχο ταυτότητας
|
96
108
|
changed_notably: Υπήρξαν σημαντικές αλλαγές.
|
97
109
|
content: Περιεχόμενο
|
98
110
|
organization: Οργανισμός
|
@@ -115,6 +127,10 @@ el:
|
|
115
127
|
allowed_file_content_types: Μη έγκυρο αρχείο εικόνας
|
116
128
|
official_img_header:
|
117
129
|
allowed_file_content_types: Μη έγκυρο αρχείο εικόνας
|
130
|
+
new_import:
|
131
|
+
attributes:
|
132
|
+
file:
|
133
|
+
invalid_mime_type: Μη έγκυρος τύπος mime
|
118
134
|
activerecord:
|
119
135
|
attributes:
|
120
136
|
decidim/static_page:
|
@@ -133,20 +149,34 @@ el:
|
|
133
149
|
admin:
|
134
150
|
actions:
|
135
151
|
add: Προσθήκη
|
152
|
+
attachment:
|
153
|
+
new: Νέο συνημμένο
|
154
|
+
attachment_collection:
|
155
|
+
new: Νέα συλλογή συνημμένων
|
136
156
|
browse: Αναζήτηση
|
157
|
+
category:
|
158
|
+
new: Νέα κατηγορία
|
137
159
|
export: Εξαγωγή
|
160
|
+
import: Εισαγωγή
|
138
161
|
manage: Διαχείριση
|
139
162
|
new: Νέο όνομα %{name}
|
163
|
+
newsletter:
|
164
|
+
new: Νέο ενημερωτικό δελτίο
|
165
|
+
participatory_space_private_user:
|
166
|
+
new: Νέος ιδιωτικός χρήστης συμμετοχικού χώρου
|
140
167
|
per_page: Ανά σελίδα
|
141
168
|
permissions: Δικαιώματα
|
142
169
|
reject: Απόρριψη
|
170
|
+
share: Κοινοποίηση
|
171
|
+
user:
|
172
|
+
new: Νέος χρήστης
|
143
173
|
verify: Επαλήθευση
|
144
174
|
admin_terms_of_use:
|
145
175
|
accept:
|
146
176
|
error: Υπήρξε ένα σφάλμα κατά την αποδοχή των όρων χρήσης διαχειριστή.
|
147
177
|
success: Εξαιρετικά! Αποδεχτήκατε τους όρους χρήσης διαχειριστή.
|
148
178
|
actions:
|
149
|
-
accept: Συμφωνώ με
|
179
|
+
accept: Συμφωνώ με τους ακόλουθους όρους
|
150
180
|
are_you_sure: Είστε βέβαιοι ότι θέλετε να απορρίψετε τους όρους διαχειριστή;
|
151
181
|
refuse: Απόρριψη των όρων διαχειριστή
|
152
182
|
title: Αποδοχή των όρων και των προϋποθέσεων χρήσης
|
@@ -225,6 +255,12 @@ el:
|
|
225
255
|
autocomplete:
|
226
256
|
no_results: Δεν βρέθηκαν αποτελέσματα
|
227
257
|
search_prompt: Πληκτρολογήστε τουλάχιστον τρεις χαρακτήρες για αναζήτηση
|
258
|
+
block_user:
|
259
|
+
new:
|
260
|
+
action: Αποκλεισμός λογαριασμού και αποστολή αιτιολόγησης
|
261
|
+
description: Ο αποκλεισμός ενός χρήστη θα καταστήσει τον λογαριασμό του μη χρησιμοποιήσιμο, μπορείτε να παράσχετε στην αιτιολόγηση και τις οδηγίες σας σχετικά με τους τρόπους με τους οποίους θεωρείτε ότι θα θεωρούσατε ότι θα καταργήσετε την φραγή του χρήστη.
|
262
|
+
justification: Αιτιολόγηση
|
263
|
+
title: Αποκλεισμός Χρήστη %{name}
|
228
264
|
categories:
|
229
265
|
create:
|
230
266
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία αυτής της κατηγορίας.
|
@@ -267,6 +303,7 @@ el:
|
|
267
303
|
headers:
|
268
304
|
actions: Ενέργειες
|
269
305
|
name: Όνομα στοιχείου
|
306
|
+
scope: Πεδίο εφαρμογής στοιχείου
|
270
307
|
type: Τύπος στοιχείου
|
271
308
|
new:
|
272
309
|
add: Προσθήκη στοιχείου
|
@@ -279,6 +316,21 @@ el:
|
|
279
316
|
update:
|
280
317
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του στοιχείου.
|
281
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: Χρήστης
|
282
334
|
dashboard:
|
283
335
|
show:
|
284
336
|
view_more_logs: Προβολή περισσότερων αρχείων καταγραφής
|
@@ -295,6 +347,9 @@ el:
|
|
295
347
|
category_id_eq:
|
296
348
|
label: Κατηγορία
|
297
349
|
filter_label: Φίλτρο
|
350
|
+
moderations:
|
351
|
+
reportable_type_string_eq:
|
352
|
+
label: Τύπος
|
298
353
|
officialized_at_null:
|
299
354
|
label: Κατάσταση
|
300
355
|
values:
|
@@ -315,6 +370,7 @@ el:
|
|
315
370
|
search_label: Αναζήτηση
|
316
371
|
search_placeholder:
|
317
372
|
name_or_nickname_or_email_cont: Αναζήτηση συλλογής %{collection} με βάση το email, όνομα ή ψευδώνυμο.
|
373
|
+
reported_id_string_or_reported_content_cont: Αναζήτηση %{collection} με αναγνωριστικό ή περιεχόμενο προς αναφορά.
|
318
374
|
title_cont: Αναζήτηση συλλογής %{collection} με βάση τον τίτλο.
|
319
375
|
state_eq:
|
320
376
|
label: Κατάσταση
|
@@ -573,7 +629,6 @@ el:
|
|
573
629
|
rich_text_editor_in_public_views_help: Σε ορισμένες περιοχές κειμένου, οι συμμετέχοντες θα μπορούν να εισαγάγουν μερικές ετικέτες HTML χρησιμοποιώντας το πρόγραμμα επεξεργασίας εμπλουτισμένου κειμένου.
|
574
630
|
social_handlers: Μέσα κοινωνικής δικτύωσης
|
575
631
|
twitter: Twitter
|
576
|
-
url: Διεύθυνση Url
|
577
632
|
youtube: YouTube
|
578
633
|
update:
|
579
634
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του οργανισμού.
|
@@ -608,7 +663,6 @@ el:
|
|
608
663
|
error: Υπήρξε ένα πρόβλημα κατά τη διαγραφή ενός ιδιωτικού συμμετέχοντα για αυτόν τον χώρο συμμετοχής.
|
609
664
|
success: Η πρόσβαση του ιδιωτικού συμμετέχοντα στον χώρο συμμετοχής καταστράφηκε με επιτυχία.
|
610
665
|
index:
|
611
|
-
import_via_csv: Εισαγωγή μέσω csv
|
612
666
|
title: Ιδιωτικός συμμετέχων χώρου συμμετοχής
|
613
667
|
new:
|
614
668
|
create: Δημιουργία
|
@@ -801,7 +855,6 @@ el:
|
|
801
855
|
fields:
|
802
856
|
hidden_at: Αποκρύφτηκε στις
|
803
857
|
report_count: Πλήθος
|
804
|
-
reportable: Με δυνατότητα αναφοράς
|
805
858
|
reported_content_url: Διεύθυνση URL περιεχομένου που έχει αναφερθεί
|
806
859
|
reports: Αναφορές
|
807
860
|
visit_url: Διεύθυνση URL επίσκεψης
|