decidim-admin 0.30.1 → 0.31.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/commands/decidim/admin/update_organization.rb +18 -3
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page_content_blocks.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/decidim/admin/area_types_controller.rb +2 -2
- data/app/controllers/decidim/admin/areas_controller.rb +2 -2
- data/app/controllers/decidim/admin/block_user_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +3 -3
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/conflicts_controller.rb +1 -1
- data/app/controllers/decidim/admin/dashboard_controller.rb +0 -9
- data/app/controllers/decidim/admin/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/imports_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +4 -4
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -3
- data/app/controllers/decidim/admin/organization_controller.rb +3 -5
- data/app/controllers/decidim/admin/organization_external_domain_allowlist_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_homepage_controller.rb +4 -0
- data/app/controllers/decidim/admin/participatory_space/user_role_controller.rb +2 -2
- data/app/controllers/decidim/admin/reminders_controller.rb +1 -1
- data/app/controllers/decidim/admin/resource_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/scope_types_controller.rb +2 -2
- data/app/controllers/decidim/admin/scopes_controller.rb +2 -2
- data/app/controllers/decidim/admin/share_tokens_controller.rb +8 -8
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/controllers/decidim/admin/statistics_controller.rb +34 -0
- data/app/controllers/decidim/admin/taxonomies_controller.rb +2 -2
- data/app/controllers/decidim/admin/taxonomy_filters_controller.rb +2 -2
- data/app/controllers/decidim/admin/taxonomy_items_controller.rb +2 -2
- data/app/controllers/decidim/admin/users_controller.rb +1 -1
- data/app/forms/decidim/admin/block_user_form.rb +1 -1
- data/app/forms/decidim/admin/block_users_form.rb +1 -1
- data/app/forms/decidim/admin/organization_form.rb +35 -6
- data/app/helpers/decidim/admin/filterable_helper.rb +27 -8
- data/app/helpers/decidim/admin/icon_link_helper.rb +2 -3
- data/app/helpers/decidim/admin/icon_with_tooltip_helper.rb +1 -2
- data/app/helpers/decidim/admin/imports_helper.rb +0 -5
- data/app/helpers/decidim/admin/menu_helper.rb +3 -2
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +1 -1
- data/app/helpers/decidim/admin/resource_permissions_helper.rb +13 -13
- data/app/helpers/decidim/admin/settings_helper.rb +11 -3
- data/app/jobs/decidim/admin/newsletter_job.rb +1 -0
- data/app/packs/entrypoints/decidim_admin.js +2 -3
- data/app/packs/entrypoints/decidim_admin.scss +1 -1
- data/app/packs/entrypoints/decidim_admin_overrides.scss +1 -1
- data/app/packs/src/decidim/admin/admin_autocomplete.js +2 -2
- data/app/packs/src/decidim/admin/application.js +11 -10
- data/app/packs/src/decidim/admin/budget_rule_toggler.component.js +84 -34
- data/app/packs/src/decidim/admin/controllers/slug/controller.js +25 -0
- data/app/packs/src/decidim/admin/controllers/slug/slug.test.js +239 -0
- data/app/packs/src/decidim/admin/css_preview.js +1 -1
- data/app/packs/src/decidim/admin/draggable-list.js +1 -1
- data/app/packs/src/decidim/admin/draggable-table.js +1 -1
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +13 -12
- data/app/packs/src/decidim/admin/external_domain_allowlist.js +1 -1
- data/app/packs/src/decidim/admin/form.js +21 -4
- data/app/packs/src/decidim/admin/global_moderations.js +2 -2
- data/app/packs/src/decidim/admin/managed_moderated_users.js +2 -2
- data/app/packs/src/decidim/admin/moderations.js +1 -1
- data/app/packs/src/decidim/admin/newsletters.js +1 -1
- data/app/packs/src/decidim/admin/officializations.js +1 -1
- data/app/packs/src/decidim/admin/participatory_space_search.js +2 -2
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +1 -1
- data/app/packs/src/decidim/admin/resources_permissions.js +1 -1
- data/app/packs/src/decidim/admin/sortable.js +1 -1
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +1 -1
- data/app/packs/src/decidim/admin/tab_focus.js +1 -1
- data/app/packs/src/decidim/admin/text_copy.js +1 -1
- data/app/packs/src/decidim/admin/triadic_color_picker.js +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +2 -2
- data/app/packs/stylesheets/decidim/admin/_dropdown.scss +12 -2
- data/app/packs/stylesheets/decidim/admin/_filters.scss +1 -57
- data/app/packs/stylesheets/decidim/admin/_forms.scss +1 -10
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +2 -10
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +1 -5
- data/app/packs/stylesheets/decidim/admin/_legacy_foundation.scss +0 -412
- data/app/packs/stylesheets/decidim/admin/_main-nav.scss +75 -3
- data/app/packs/stylesheets/decidim/admin/_secondary-nav.scss +6 -10
- data/app/packs/stylesheets/decidim/admin/_select_picker.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_sidebar-menu.scss +2 -2
- data/app/packs/stylesheets/decidim/admin/_table-list.scss +25 -7
- data/app/packs/stylesheets/decidim/admin/_tabs.scss +4 -0
- data/app/packs/stylesheets/decidim/admin/_taxonomies.scss +6 -2
- data/app/packs/stylesheets/decidim/admin/application.scss +28 -29
- data/app/permissions/decidim/admin/permissions.rb +17 -5
- data/app/presenters/decidim/admin/dashboard_statistic_charts_presenter.rb +18 -0
- data/app/queries/decidim/admin/user_filter.rb +3 -3
- data/app/views/decidim/admin/area_types/index.html.erb +34 -11
- data/app/views/decidim/admin/areas/index.html.erb +32 -12
- data/app/views/decidim/admin/attachment_collections/index.html.erb +42 -14
- data/app/views/decidim/admin/attachments/index.html.erb +32 -13
- data/app/views/decidim/admin/block_user/bulk_new.html.erb +1 -1
- data/app/views/decidim/admin/block_user/new.html.erb +1 -1
- data/app/views/decidim/admin/components/_actions.html.erb +114 -54
- data/app/views/decidim/admin/components/_component_row.html.erb +5 -5
- data/app/views/decidim/admin/components/_components_table.html.erb +1 -1
- data/app/views/decidim/admin/components/_form.html.erb +4 -4
- data/app/views/decidim/admin/components/index.html.erb +12 -13
- data/app/views/decidim/admin/dashboard/show.html.erb +9 -21
- data/app/views/decidim/admin/exports/_dropdown.html.erb +16 -14
- data/app/views/decidim/admin/help_sections/_form.html.erb +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +68 -33
- data/app/views/decidim/admin/imports/_dropdown.html.erb +13 -11
- data/app/views/decidim/admin/imports/new.html.erb +13 -12
- data/app/views/decidim/admin/moderated_users/bulk_actions/_dropdown.html.erb +29 -32
- data/app/views/decidim/admin/moderated_users/index.html.erb +61 -21
- data/app/views/decidim/admin/moderations/_moderation-tr.html.erb +87 -32
- data/app/views/decidim/admin/moderations/_report.html.erb +2 -4
- data/app/views/decidim/admin/moderations/bulk_actions/_dropdown.html.erb +30 -34
- data/app/views/decidim/admin/moderations/index.html.erb +1 -1
- data/app/views/decidim/admin/moderations/reports/index.html.erb +1 -2
- data/app/views/decidim/admin/newsletters/index.html.erb +64 -21
- data/app/views/decidim/admin/officializations/index.html.erb +91 -32
- data/app/views/decidim/admin/organization/_form.html.erb +6 -92
- data/app/views/decidim/admin/organization/edit.html.erb +1 -5
- data/app/views/decidim/admin/organization/form/_admin_terms_of_service.html.erb +15 -0
- data/app/views/decidim/admin/organization/form/_basic_configuration.html.erb +31 -0
- data/app/views/decidim/admin/{organization_appearance → organization}/form/_colors.html.erb +9 -9
- data/app/views/decidim/admin/organization/form/_extra_features.html.erb +84 -0
- data/app/views/decidim/admin/{organization_appearance/form/_images.html.erb → organization/form/_logos.html.erb} +4 -4
- data/app/views/decidim/admin/organization/form/_welcome_notification.html.erb +25 -0
- data/app/views/decidim/admin/organization_external_domain_allowlist/_external_domain.html.erb +8 -6
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +49 -22
- data/app/views/decidim/admin/resource_permissions/edit.html.erb +1 -1
- data/app/views/decidim/admin/scope_types/index.html.erb +31 -12
- data/app/views/decidim/admin/scopes/index.html.erb +40 -13
- data/app/views/decidim/admin/share_tokens/_form.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/edit.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/index.html.erb +69 -12
- data/app/views/decidim/admin/share_tokens/new.html.erb +1 -1
- data/app/views/decidim/admin/shared/_filters.html.erb +8 -10
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +14 -11
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +2 -4
- data/app/views/decidim/admin/static_page_topics/index.html.erb +31 -10
- data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_topic.html.erb +46 -16
- data/app/views/decidim/admin/statistics/_statistics.html.erb +13 -0
- data/app/views/decidim/admin/statistics/index.html.erb +6 -0
- data/app/views/decidim/admin/taxonomies/_form.html.erb +1 -1
- data/app/views/decidim/admin/taxonomies/_row.html.erb +24 -6
- data/app/views/decidim/admin/taxonomies/_table.html.erb +2 -2
- data/app/views/decidim/admin/taxonomies/_taxonomy_actions.html.erb +48 -15
- data/app/views/decidim/admin/taxonomies/edit.html.erb +10 -0
- data/app/views/decidim/admin/taxonomy_filters/_form.html.erb +1 -1
- data/app/views/decidim/admin/taxonomy_filters/_table.html.erb +52 -15
- data/app/views/decidim/admin/taxonomy_filters/new.html.erb +1 -1
- data/app/views/decidim/admin/taxonomy_filters_selector/_component_table.html.erb +38 -23
- data/app/views/decidim/admin/taxonomy_items/_form.html.erb +1 -1
- data/app/views/decidim/admin/users/index.html.erb +48 -24
- data/app/views/layouts/decidim/admin/_application.html.erb +3 -6
- data/app/views/layouts/decidim/admin/_header.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +11 -12
- data/app/views/layouts/decidim/admin/_sidebar_menu.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +4 -4
- data/app/views/layouts/decidim/admin/insights.html.erb +6 -0
- data/config/assets.rb +2 -2
- data/config/locales/ar.yml +2 -86
- data/config/locales/bg.yml +4 -105
- data/config/locales/bs-BA.yml +0 -44
- data/config/locales/ca-IT.yml +59 -117
- data/config/locales/ca.yml +59 -117
- data/config/locales/cs.yml +51 -119
- data/config/locales/de.yml +63 -121
- data/config/locales/el.yml +5 -97
- data/config/locales/en.yml +61 -119
- data/config/locales/eo.yml +0 -4
- data/config/locales/es-MX.yml +60 -118
- data/config/locales/es-PY.yml +60 -118
- data/config/locales/es.yml +60 -118
- data/config/locales/eu.yml +65 -123
- data/config/locales/fi-plain.yml +62 -109
- data/config/locales/fi.yml +62 -109
- data/config/locales/fr-CA.yml +69 -120
- data/config/locales/fr.yml +69 -120
- data/config/locales/ga-IE.yml +4 -28
- data/config/locales/gl.yml +3 -89
- data/config/locales/he-IL.yml +0 -8
- data/config/locales/hu.yml +5 -100
- data/config/locales/id-ID.yml +0 -58
- data/config/locales/is-IS.yml +1 -36
- data/config/locales/it.yml +202 -96
- data/config/locales/ja.yml +61 -110
- data/config/locales/kaa.yml +0 -12
- data/config/locales/ko.yml +0 -76
- data/config/locales/lb.yml +5 -89
- data/config/locales/lt.yml +4 -99
- data/config/locales/lv.yml +2 -70
- data/config/locales/nl.yml +5 -90
- data/config/locales/no.yml +5 -89
- data/config/locales/pl.yml +5 -103
- data/config/locales/pt-BR.yml +130 -105
- data/config/locales/pt.yml +2 -90
- data/config/locales/ro-RO.yml +13 -97
- data/config/locales/ru.yml +2 -50
- data/config/locales/sk.yml +2 -68
- data/config/locales/sl.yml +1 -18
- data/config/locales/sq-AL.yml +0 -43
- data/config/locales/sr-CS.yml +1 -44
- data/config/locales/sv.yml +59 -120
- data/config/locales/th-TH.yml +0 -5
- data/config/locales/tr-TR.yml +6 -83
- data/config/locales/uk.yml +1 -45
- data/config/locales/val-ES.yml +0 -1
- data/config/locales/zh-CN.yml +0 -68
- data/config/locales/zh-TW.yml +4 -97
- data/config/routes.rb +1 -12
- data/lib/decidim/admin/engine.rb +5 -1
- data/lib/decidim/admin/form_builder.rb +1 -1
- data/lib/decidim/admin/menu.rb +32 -16
- data/lib/decidim/admin/test/filterable_examples.rb +8 -18
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +4 -4
- data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +2 -2
- data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +9 -6
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +1 -0
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +5 -1
- data/lib/decidim/admin/test/manage_attachments_examples.rb +5 -1
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +31 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +12 -5
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +12 -6
- data/lib/decidim/admin/test/manage_resource_soft_deletion_examples.rb +19 -4
- data/lib/decidim/admin/test/manage_taxonomy_filters_examples.rb +28 -8
- data/lib/decidim/admin/version.rb +1 -1
- metadata +22 -35
- data/app/commands/decidim/admin/process_user_group_verification_csv.rb +0 -44
- data/app/commands/decidim/admin/reject_user_group.rb +0 -42
- data/app/commands/decidim/admin/update_organization_appearance.rb +0 -39
- data/app/commands/decidim/admin/update_user_groups.rb +0 -44
- data/app/commands/decidim/admin/verify_user_group.rb +0 -43
- data/app/controllers/concerns/decidim/admin/user_groups/filterable.rb +0 -45
- data/app/controllers/concerns/decidim/admin/user_groups.rb +0 -24
- data/app/controllers/decidim/admin/metrics_controller.rb +0 -23
- data/app/controllers/decidim/admin/user_groups_controller.rb +0 -76
- data/app/controllers/decidim/admin/user_groups_csv_verifications_controller.rb +0 -36
- data/app/forms/decidim/admin/organization_appearance_form.rb +0 -88
- data/app/forms/decidim/admin/user_group_csv_verification_form.rb +0 -25
- data/app/jobs/decidim/admin/verify_user_group_from_csv_job.rb +0 -30
- data/app/packs/src/decidim/admin/welcome_notification.js +0 -32
- data/app/packs/stylesheets/decidim/admin/_bulk_actions.scss +0 -16
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +0 -33
- data/app/queries/decidim/admin/user_groups_evaluation.rb +0 -56
- data/app/views/decidim/admin/metrics/_metrics.html.erb +0 -16
- data/app/views/decidim/admin/metrics/index.html.erb +0 -7
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +0 -100
- data/app/views/decidim/admin/organization_appearance/edit.html.erb +0 -18
- data/app/views/decidim/admin/organization_appearance/form/_header_snippets.html.erb +0 -17
- data/app/views/decidim/admin/user_groups/index.html.erb +0 -68
- data/app/views/decidim/admin/user_groups_csv_verifications/new.html.erb +0 -31
- /data/app/views/decidim/admin/{organization_appearance → organization}/form/_minimap.html.erb +0 -0
data/config/locales/de.yml
CHANGED
@@ -34,8 +34,6 @@ de:
|
|
34
34
|
help_section:
|
35
35
|
content: Inhalt
|
36
36
|
id: ID
|
37
|
-
import:
|
38
|
-
user_group_id: Importierte Inhalte erstellen als
|
39
37
|
newsletter:
|
40
38
|
body: Haupttext
|
41
39
|
send_to_all_users: An alle Benutzenden senden
|
@@ -48,8 +46,6 @@ de:
|
|
48
46
|
available_authorizations: Verfügbare Autorisierungen
|
49
47
|
badges_enabled: Abzeichen aktivieren
|
50
48
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
51
|
-
cta_button_path: Call To Action Schaltfläche Pfad
|
52
|
-
cta_button_text: Call To Action Schaltfläche Text
|
53
49
|
customize_welcome_notification: Willkommens-Benachrichtigung anpassen
|
54
50
|
default_locale: Standardgebietsschema
|
55
51
|
description: Beschreibung
|
@@ -64,13 +60,6 @@ de:
|
|
64
60
|
header_snippets: Header-Snippets
|
65
61
|
highlight_alternative_color: Hervorhebung, Alternative
|
66
62
|
highlight_color: Hervorheben
|
67
|
-
highlighted_content_banner_action_subtitle: Aktion Schaltfläche Untertitel
|
68
|
-
highlighted_content_banner_action_title: Titel der Aktionsschaltfläche
|
69
|
-
highlighted_content_banner_action_url: Aktionsschaltflächen-URL
|
70
|
-
highlighted_content_banner_enabled: Zeigen Sie das hervorgehobene Inhaltsbanner an
|
71
|
-
highlighted_content_banner_image: Bild
|
72
|
-
highlighted_content_banner_short_description: Kurze Beschreibung
|
73
|
-
highlighted_content_banner_title: Titel
|
74
63
|
host: Host
|
75
64
|
instagram_handler: Instagram-Handler
|
76
65
|
logo: Logo
|
@@ -97,7 +86,6 @@ de:
|
|
97
86
|
time_zone: Zeitzone
|
98
87
|
tos_version: Nutzungsbedingungen Version
|
99
88
|
twitter_handler: X-Handler
|
100
|
-
user_groups_enabled: Benutzergruppen aktivieren
|
101
89
|
users_registration_mode: Benutzerregistrierungs-Modus
|
102
90
|
warning_color: Warnung
|
103
91
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
@@ -179,12 +167,17 @@ de:
|
|
179
167
|
decidim:
|
180
168
|
admin:
|
181
169
|
actions:
|
170
|
+
actions: Aktionen
|
171
|
+
actions_label: Aktionen für %{resource}
|
182
172
|
add: Hinzufügen
|
183
173
|
attachment:
|
184
174
|
new: Neuer Anhang
|
185
175
|
attachment_collection:
|
186
176
|
new: Neuer Ordner für Dateianhänge
|
177
|
+
attachment_collections: Ordner hinzufügen
|
178
|
+
attachments: Anhang hinzufügen
|
187
179
|
browse: Durchsuchen
|
180
|
+
configure: Konfigurieren
|
188
181
|
confirm_delete_component: |
|
189
182
|
Sind Sie sicher, dass Sie diese Komponente löschen möchten?<br>
|
190
183
|
Diese Komponente enthält:<br>
|
@@ -192,25 +185,24 @@ de:
|
|
192
185
|
<li class="font-bold">%{resources_count} Ressourcen</li>
|
193
186
|
</ul>
|
194
187
|
Wenn Sie Ihre Meinung ändern, können Sie es später wiederherstellen.
|
195
|
-
export:
|
188
|
+
export: Exportieren
|
196
189
|
export-selection: Auswahl exportieren
|
197
190
|
import: Importieren
|
198
|
-
|
191
|
+
menu_hidden: Im Menü ausblenden
|
192
|
+
moderate: Moderationen verwalten
|
199
193
|
newsletter:
|
200
194
|
new: Neuer Newsletter
|
201
195
|
participatory_space_private_user:
|
202
196
|
new: Neuer privater Benutzer
|
203
197
|
per_page: Pro Seite
|
204
|
-
permissions: Berechtigungen
|
205
|
-
reject: Ablehnen
|
198
|
+
permissions: Berechtigungen verwalten
|
206
199
|
restore: Wiederherstellen
|
207
200
|
send_me_a_test_email: Mir eine Test-E-Mail senden
|
208
201
|
share: Teilen
|
209
|
-
share_tokens:
|
210
|
-
soft_delete:
|
202
|
+
share_tokens: Linkfreigabe
|
203
|
+
soft_delete: In Papierkorb verschieben
|
211
204
|
user:
|
212
205
|
new: Neuer Administrator
|
213
|
-
verify: Überprüfen
|
214
206
|
view_deleted_components: Gelöschte Komponenten ansehen
|
215
207
|
admin_terms_of_service:
|
216
208
|
accept:
|
@@ -360,7 +352,7 @@ de:
|
|
360
352
|
attempts: Versuche
|
361
353
|
'false': 'Nein'
|
362
354
|
index:
|
363
|
-
text:
|
355
|
+
text: Duchsuche nach aktueller E-Mail-Adresse, Name oder Spitzname
|
364
356
|
managed_user_name: Verwalteter Benutzer
|
365
357
|
solved: Gelöst
|
366
358
|
title: Überprüfungskonflikte
|
@@ -462,11 +454,11 @@ de:
|
|
462
454
|
remove_all: Alle entfernen
|
463
455
|
search_label: Suche
|
464
456
|
search_placeholder:
|
465
|
-
name_or_nickname_or_email_cont:
|
457
|
+
name_or_nickname_or_email_cont: Durchsuche %{collection} nach E-Mail, Name oder Spitzname
|
466
458
|
report_count_eq: Anzahl Meldungen
|
467
|
-
reported_id_string_or_reported_content_cont:
|
468
|
-
title_cont:
|
469
|
-
user_name_or_user_nickname_or_user_email_cont:
|
459
|
+
reported_id_string_or_reported_content_cont: Durchsuche %{collection} nach gemoldener ID oder Inhalt
|
460
|
+
title_cont: Duchsuche %{collection} nach Titel
|
461
|
+
user_name_or_user_nickname_or_user_email_cont: Duchsuche %{collection} nach E-Mail-Adresse, Name oder Spitzname
|
470
462
|
state_eq:
|
471
463
|
label: Status
|
472
464
|
values:
|
@@ -483,6 +475,10 @@ de:
|
|
483
475
|
explanation: 'Hinweise für die Datei:'
|
484
476
|
message_1: CSV, JSON und Excel (.xlsx) Dateien werden unterstützt
|
485
477
|
message_2: Bei CSV-Dateien muss das Trennzeichen zwischen den Spalten ein Semikolon sein (";")
|
478
|
+
import_csv:
|
479
|
+
explanation: 'Hinweise für die Datei:'
|
480
|
+
message_1: CSV-Dateien werden unterstützt
|
481
|
+
message_2: "CSV-Datei mit E-Mail-Daten"
|
486
482
|
help_sections:
|
487
483
|
error: Beim Aktualisieren der Hilfeabschnitte ist ein Fehler aufgetreten.
|
488
484
|
form:
|
@@ -524,7 +520,7 @@ de:
|
|
524
520
|
and: und
|
525
521
|
data_errors:
|
526
522
|
duplicate_headers:
|
527
|
-
detail: Bitte überprüfen Sie, dass die Datei
|
523
|
+
detail: Bitte überprüfen Sie, dass die Datei die benötigten Spalten oder Kopfzeilen nur einmal enthält.
|
528
524
|
message:
|
529
525
|
one: Spalte %{columns} duplizieren.
|
530
526
|
other: Spalten %{columns} duplizieren.
|
@@ -561,7 +557,7 @@ de:
|
|
561
557
|
logs:
|
562
558
|
filters:
|
563
559
|
participatory_space: Partizipativen Raum finden
|
564
|
-
text:
|
560
|
+
text: Duchsuche nach E-Mail-Adresse, Name oder Spitzname
|
565
561
|
user: Benutzer*in
|
566
562
|
logs_list:
|
567
563
|
no_logs_yet: Es gibt noch keine Protokolle.
|
@@ -588,8 +584,9 @@ de:
|
|
588
584
|
content: Gemeldeter Inhalt
|
589
585
|
external_domain_allowlist: Erlaubte externe Domains
|
590
586
|
help_sections: Hilfeabschnitte
|
591
|
-
homepage:
|
587
|
+
homepage: Homepage-Layout
|
592
588
|
impersonations: Identitätswechsel
|
589
|
+
insights: Einblicke
|
593
590
|
manage: Verwalten
|
594
591
|
moderation: Globale Moderationen
|
595
592
|
newsletters: Newsletter
|
@@ -602,13 +599,10 @@ de:
|
|
602
599
|
share_tokens: Zugangslinks
|
603
600
|
static_page_topics: Themen
|
604
601
|
static_pages: Seiten
|
602
|
+
statistics: Statistiken
|
605
603
|
taxonomies: Taxonomien
|
606
604
|
taxonomy_filters: Taxonomie-Filter
|
607
|
-
user_groups: Benutzergruppen
|
608
605
|
users: Benutzer
|
609
|
-
metrics:
|
610
|
-
metrics:
|
611
|
-
see_more_metrics: Mehr Kriterien anzeigen
|
612
606
|
models:
|
613
607
|
area:
|
614
608
|
fields:
|
@@ -677,16 +671,6 @@ de:
|
|
677
671
|
admin: Administrator
|
678
672
|
user_manager: Benutzer Manager
|
679
673
|
name: Benutzer
|
680
|
-
user_group:
|
681
|
-
fields:
|
682
|
-
actions: Aktionen
|
683
|
-
created_at: Erstellt am
|
684
|
-
document_number: Dokumentnummer
|
685
|
-
name: Name
|
686
|
-
nickname: Spitzname
|
687
|
-
phone: Telefon
|
688
|
-
state: Status
|
689
|
-
users_count: Benutzer zählen
|
690
674
|
moderated_users:
|
691
675
|
index:
|
692
676
|
actions:
|
@@ -700,12 +684,12 @@ de:
|
|
700
684
|
title: Blockierung aufheben
|
701
685
|
update_moderated_user_button: Blockierung aufheben
|
702
686
|
unreport:
|
703
|
-
title: Meldung
|
687
|
+
title: Meldung Rückgängig machen
|
704
688
|
ignore:
|
705
689
|
update_moderated_user_button: Gemeldete Teilnehmende zurückweisen
|
706
690
|
title: Aktionen
|
707
691
|
unblock: Blockierung des Benutzers aufheben
|
708
|
-
unreport: Meldung
|
692
|
+
unreport: Meldung rückgängig machen
|
709
693
|
cancel: Abbrechen
|
710
694
|
name: Name
|
711
695
|
nickname: Spitzname
|
@@ -729,10 +713,10 @@ de:
|
|
729
713
|
title: Verbergen
|
730
714
|
update_moderation_button: Ausgewählte Ressourcen verbergen
|
731
715
|
unhide:
|
732
|
-
title:
|
716
|
+
title: Erneut einblenden
|
733
717
|
update_moderation_button: Ausgewählte Ressourcen einblenden
|
734
718
|
unreport:
|
735
|
-
title: Meldung
|
719
|
+
title: Meldung rückgängig machen
|
736
720
|
update_moderation_button: Meldung ausgewählter Ressourcen aufheben
|
737
721
|
cancel: Abbrechen
|
738
722
|
selected: ausgewählt
|
@@ -860,7 +844,7 @@ de:
|
|
860
844
|
index:
|
861
845
|
actions: Aktionen
|
862
846
|
badge: Abzeichen
|
863
|
-
block:
|
847
|
+
block: Blockieren
|
864
848
|
created_at: Erstellt am
|
865
849
|
name: Name
|
866
850
|
nickname: Spitzname
|
@@ -869,9 +853,10 @@ de:
|
|
869
853
|
officialized: Offizialisiert
|
870
854
|
reofficialize: Reoffizialisieren
|
871
855
|
reports: Berichte
|
856
|
+
send_message: Nachricht senden
|
872
857
|
show_email: E-Mail-Adresse anzeigen
|
873
858
|
status: Status
|
874
|
-
unblock: Blockierung
|
859
|
+
unblock: Blockierung aufheben
|
875
860
|
unofficialize: Nicht offiziell
|
876
861
|
new:
|
877
862
|
badge: Offizielles Abzeichen
|
@@ -892,41 +877,33 @@ de:
|
|
892
877
|
title: Organisation bearbeiten
|
893
878
|
update: Aktualisieren
|
894
879
|
form:
|
880
|
+
admin_terms_of_service: Admin-Nutzungsbedingungen
|
881
|
+
basic_configuration: Grundeinstellungen
|
882
|
+
colors:
|
883
|
+
choose_color: Primärfarbe auswählen
|
884
|
+
colors_title: Organisationsfarben
|
885
|
+
colors_warning_html: Warnung! Das Ändern dieser Farben kann die für Barrierefreiheit notwendigen Kontraste brechen. Sie können den Kontrast Ihrer Wahl mit <a href="%{link}">WebAIM Contrast Checker</a> oder ähnlichen Tools überprüfen.
|
886
|
+
explanation: Dieses Tool hilft Ihnen, ein Farbschema mit Farbtönen auszuwählen, die gleichmäßig um das Farbrad verteilt sind und die auf der Website der Organisation verwendet werden.
|
887
|
+
legend_html: Hauptfarben der Anwendung, basierend auf dem <a href="https://www.color-meanings.com/triadic-colors/">triadischen Algorithmus</a>. Die <i>sekundäre</i> Farbe wird automatisch von der Primärfarbe und der Sättigung, die Sie gewählt haben, berechnet.
|
888
|
+
saturation: Sättigung
|
889
|
+
title: Farbauswahl
|
890
|
+
update_suggested_colors: Vorgeschlagene Farben aktualisieren
|
891
|
+
extra_features: Zusätzliche Funktionen
|
895
892
|
facebook: Facebook
|
896
893
|
github: GitHub
|
897
894
|
instagram: Instagram
|
895
|
+
logos:
|
896
|
+
organization_logos: Organisationslogo
|
897
|
+
preview: Vorschau
|
898
898
|
rich_text_editor_in_public_views_help: In einigen Textbereichen können Teilnehmer mit Hilfe des Rich-Text-Editors HTML-Tags einfügen.
|
899
899
|
social_handlers: Sozial
|
900
900
|
twitter: X
|
901
901
|
url: URL
|
902
|
+
welcome_notification: Willkommensbenachrichtigung
|
902
903
|
youtube: Youtube
|
903
904
|
update:
|
904
905
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
905
906
|
success: Die Organisation wurde erfolgreich aktualisiert.
|
906
|
-
organization_appearance:
|
907
|
-
edit:
|
908
|
-
update: Aktualisieren
|
909
|
-
form:
|
910
|
-
colors:
|
911
|
-
choose_color: Primärfarbe auswählen
|
912
|
-
colors_title: Organisationsfarben
|
913
|
-
colors_warning_html: Warnung! Das Ändern dieser Farben kann die für Barrierefreiheit notwendigen Kontraste brechen. Sie können den Kontrast Ihrer Wahl mit <a href="%{link}">WebAIM Contrast Checker</a> oder ähnlichen Tools überprüfen.
|
914
|
-
explanation: Dieses Tool hilft Ihnen, ein Farbschema mit Farbtönen auszuwählen, die gleichmäßig um das Farbrad verteilt sind und die auf der Website der Organisation verwendet werden.
|
915
|
-
legend_html: Hauptfarben der Anwendung, basierend auf dem <a href="https://www.color-meanings.com/triadic-colors/">triadischen Algorithmus</a>. Die <i>sekundäre</i> Farbe wird automatisch von der Primärfarbe und der Sättigung, die Sie gewählt haben, berechnet.
|
916
|
-
saturation: Sättigung
|
917
|
-
title: Farbauswahl
|
918
|
-
update_suggested_colors: Vorgeschlagene Farben aktualisieren
|
919
|
-
cta_button_path_help_html: 'Sie können überschreiben, womit die Call To Action-Schaltfläche auf der Homepage verlinkt ist. Verwenden Sie hier Teilpfade, nicht die vollständige URL. Buchstaben, Zahlen, Bindestriche und Schrägstriche sind erlaubt; an der ersten Stelle ist ein Buchstabe erforderlich. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt. Beispiel: %{url}'
|
920
|
-
cta_button_text_help: Sie können den Text der Call To Action-Schaltfläche auf der Startseite für jede verfügbare Sprache in Ihrer Organisation überschreiben. Wenn nicht festgelegt, wird der Standardwert verwendet. Die Call To Action-Schaltfläche wird auf der Startseite zwischen Begrüßungstext und Beschreibung angezeigt.
|
921
|
-
header_snippets:
|
922
|
-
header_snippets_help_html: Benutzen Sie dieses Feld, um dem HTML-Head Inhalte hinzuzufügen. Die häufigste Verwendung ist die Integration von Drittanbieter-Diensten, die ein zusätzliches JavaScript oder CSS erfordern. Außerdem können Sie dem HTML-Code zusätzliche Meta-Tags hinzuzufügen. Beachten Sie, dass dies nur auf den öffentlichen Seiten dargestellt wird und nicht im Admin-Bereich. Wenn der Code mit externen APIs interagiert oder nicht mit den Sicherheitsrichtlinien der Anwendung übereinstimmt, ist es notwendig, die Sicherheitsrichtlinien der Inhalte (Content Security Policy) zu ändern. Weitere Informationen finden Sie <a href="https://docs.decidim.org/develop/en/customize/content_security_policy">auf der Dokumentationsseite</a>.
|
923
|
-
title: HTML-Header-Snippets
|
924
|
-
homepage_appearance_title: Homepage-Erscheinungsbild bearbeiten
|
925
|
-
homepage_highlighted_content_banner_title: Highlighted Inhaltsbanner
|
926
|
-
images:
|
927
|
-
layout_appearance_title: Layout-Aussehen bearbeiten
|
928
|
-
preview: Vorschau
|
929
|
-
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
930
907
|
organization_external_domain_allowlist:
|
931
908
|
edit:
|
932
909
|
update: Aktualisieren
|
@@ -941,7 +918,7 @@ de:
|
|
941
918
|
participatory_space_private_users:
|
942
919
|
create:
|
943
920
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
944
|
-
success:
|
921
|
+
success: Ein privater Zugriff für diesen Beteiligungsbereich wurde erfolgreich für das Konto erstellt.
|
945
922
|
destroy:
|
946
923
|
error: Beim Löschen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
947
924
|
success: Privater Zugriff zum partizipativen Raum erfolgreich gelöscht.
|
@@ -1099,14 +1076,14 @@ de:
|
|
1099
1076
|
title: Thema bearbeiten
|
1100
1077
|
update: Thema aktualisieren
|
1101
1078
|
new:
|
1102
|
-
create: Thema
|
1079
|
+
create: Neues Thema
|
1103
1080
|
title: Neues Thema
|
1104
1081
|
update:
|
1105
1082
|
error: Beim Aktualisieren dieses Themas ist ein Fehler aufgetreten.
|
1106
1083
|
success: Thema erfolgreich aktualisiert
|
1107
1084
|
static_pages:
|
1108
1085
|
actions:
|
1109
|
-
view:
|
1086
|
+
view: Anzeigen
|
1110
1087
|
create:
|
1111
1088
|
error: Beim Erstellen einer neuen Seite ist ein Fehler aufgetreten.
|
1112
1089
|
success: Seite erfolgreich erstellt
|
@@ -1123,7 +1100,7 @@ de:
|
|
1123
1100
|
index:
|
1124
1101
|
last_notable_change: Letzte signifikante Änderung
|
1125
1102
|
new:
|
1126
|
-
create: Seite
|
1103
|
+
create: Neue Seite
|
1127
1104
|
title: Neue Seite
|
1128
1105
|
topic:
|
1129
1106
|
empty: Es gibt keine Seite zu diesem Thema.
|
@@ -1134,9 +1111,9 @@ de:
|
|
1134
1111
|
taxonomies:
|
1135
1112
|
actions:
|
1136
1113
|
actions: Aktionen
|
1137
|
-
destroy:
|
1138
|
-
edit:
|
1139
|
-
filters: Filter
|
1114
|
+
destroy: Löschen
|
1115
|
+
edit: Bearbeiten
|
1116
|
+
filters: Filter anwenden
|
1140
1117
|
breadcrumb:
|
1141
1118
|
edit: Klassifizierung bearbeiten
|
1142
1119
|
new: Neue Klassifizierung
|
@@ -1248,24 +1225,23 @@ de:
|
|
1248
1225
|
authorization_workflows: Verifizierungsmethoden
|
1249
1226
|
dashboard: Instrumententafel
|
1250
1227
|
edit_external_domains: Liste erlaubter externer Domains
|
1251
|
-
edit_landing_page: Seiteninhalte
|
1252
|
-
edit_organization_appearance: Homepage-Erscheinungsbild bearbeiten
|
1253
1228
|
impersonatable_users: Überschaubare Benutzer
|
1254
1229
|
impersonations: Benutzerverwaltung
|
1255
1230
|
menu: Menü
|
1256
|
-
metrics: Kriterien
|
1257
1231
|
page_topics: Themen
|
1258
1232
|
pages: Seiten
|
1259
1233
|
panel: Admin
|
1260
1234
|
participants: Benutzer
|
1261
1235
|
scope_types: Bereichstypen
|
1262
1236
|
scopes: Bereiche
|
1263
|
-
statistics:
|
1237
|
+
statistics: Statistiken
|
1264
1238
|
taxonomies: Klassifizierungen
|
1265
1239
|
taxonomy_filters: Klassifizierungsfilter für "%{taxonomy}"
|
1266
|
-
user_groups: Benutzergruppen
|
1267
1240
|
users: Administratoren
|
1268
1241
|
tooltips:
|
1242
|
+
cannot_destroy_taxonomy_filter: Klassifizierungsfilter kann nicht gelöscht werden
|
1243
|
+
cannot_edit_taxonomy_filter: Klassifizierungsfilter kann nicht bearbeitet werden
|
1244
|
+
deleted_attachment_collections_info: Dieser Ordner kann nicht gelöscht werden, da er Anhänge hat.
|
1269
1245
|
deleted_component_info: Diese Komponente kann nur gelöscht werden, wenn der Status 'Nicht veröffentlicht' ist.
|
1270
1246
|
trash_management:
|
1271
1247
|
restore:
|
@@ -1274,32 +1250,6 @@ de:
|
|
1274
1250
|
soft_delete:
|
1275
1251
|
invalid: Es gab ein Problem beim Löschen von %{resource_name}.
|
1276
1252
|
success: "%{resource_name} erfolgreich gelöscht."
|
1277
|
-
user_group:
|
1278
|
-
csv_verify:
|
1279
|
-
invalid: Beim Lesen der CSV-Datei ist ein Fehler aufgetreten.
|
1280
|
-
success: CSV-Datei wurde erfolgreich hochgeladen. Wir überprüfen, welche Gruppen den Kriterien entsprechen. Das kann eine Weile dauern.
|
1281
|
-
reject:
|
1282
|
-
invalid: Beim Ablehnen dieser Benutzergruppe ist ein Fehler aufgetreten.
|
1283
|
-
success: Gruppe erfolgreich abgelehnt.
|
1284
|
-
verify:
|
1285
|
-
invalid: Beim Überprüfen dieser Benutzergruppe ist ein Fehler aufgetreten.
|
1286
|
-
success: Gruppe erfolgreich verifiziert.
|
1287
|
-
user_groups:
|
1288
|
-
index:
|
1289
|
-
state:
|
1290
|
-
pending: Ausstehend
|
1291
|
-
rejected: Abgelehnt
|
1292
|
-
verified: Überprüft
|
1293
|
-
verify_via_csv: Überprüfen Sie über CSV
|
1294
|
-
user_groups_csv_verifications:
|
1295
|
-
new:
|
1296
|
-
example_file: 'Beispieldatei:'
|
1297
|
-
explanation: Laden Sie Ihre CSV-Datei hoch. In der ersten Spalte der Datei müssen die offiziellen E-Mails der Benutzergruppen in Ihrer Organisation enthalten sein, ohne Kopfzeilen. Nur Benutzergruppen, die ihre E-Mail bestätigt haben und deren E-Mail in der CSV-Datei enthalten ist, werden überprüft.
|
1298
|
-
explanation_example: |
|
1299
|
-
acme@example.org
|
1300
|
-
bubba.gump@example.org
|
1301
|
-
title: Laden Sie Ihre CSV-Datei hoch
|
1302
|
-
upload: Hochladen
|
1303
1253
|
users:
|
1304
1254
|
create:
|
1305
1255
|
error: Beim Einladen dieses Benutzers ist ein Fehler aufgetreten.
|
@@ -1326,16 +1276,6 @@ de:
|
|
1326
1276
|
errors:
|
1327
1277
|
impersonate_user:
|
1328
1278
|
reason: Sie müssen einen Grund angeben, weshalb Sie sich als nicht-verwaltete Nutzende ausgeben.
|
1329
|
-
metrics:
|
1330
|
-
blocked_users:
|
1331
|
-
object: blockierte Benutzer
|
1332
|
-
title: Blockierte Benutzer
|
1333
|
-
reported_users:
|
1334
|
-
object: gemeldete Benutzer
|
1335
|
-
title: Gemeldete Benutzer
|
1336
|
-
user_reports:
|
1337
|
-
object: Benutzer-Meldungen
|
1338
|
-
title: Benutzer-Meldungen
|
1339
1279
|
moderations:
|
1340
1280
|
actions:
|
1341
1281
|
expand: Ausklappen
|
@@ -1344,8 +1284,8 @@ de:
|
|
1344
1284
|
not_hidden: Nicht versteckt
|
1345
1285
|
parent_hidden: Sie können diese Ressource nicht anzeigen, da die übergeordnete Ressource ausgeblendet ist.
|
1346
1286
|
title: Aktionen
|
1347
|
-
unhide:
|
1348
|
-
unreport:
|
1287
|
+
unhide: Erneut einblenden
|
1288
|
+
unreport: Meldung rückgängig machen
|
1349
1289
|
admin:
|
1350
1290
|
reportable:
|
1351
1291
|
bulk_action:
|
@@ -1400,5 +1340,7 @@ de:
|
|
1400
1340
|
admin:
|
1401
1341
|
global_moderations:
|
1402
1342
|
title: Globale Moderationen
|
1343
|
+
insights:
|
1344
|
+
title: Einblicke
|
1403
1345
|
taxonomy_filters_selector:
|
1404
1346
|
title: Filter
|
data/config/locales/el.yml
CHANGED
@@ -34,8 +34,6 @@ el:
|
|
34
34
|
help_section:
|
35
35
|
content: Περιεχόμενο
|
36
36
|
id: Αναγνωριστικό
|
37
|
-
import:
|
38
|
-
user_group_id: Δημιουργία εισαγωγών ως
|
39
37
|
newsletter:
|
40
38
|
body: Σώμα
|
41
39
|
subject: Θέμα
|
@@ -45,8 +43,6 @@ el:
|
|
45
43
|
available_authorizations: Διαθέσιμες εγκρίσεις
|
46
44
|
badges_enabled: Ενεργοποίηση εμβλημάτων
|
47
45
|
comments_max_length: Μέγιστο μέγεθος σχολίων (Αφήστε το 0 για το προκαθορισμένο μέγεθος)
|
48
|
-
cta_button_path: Διαδρομή κουμπιού «Call To Action»
|
49
|
-
cta_button_text: Κείμενο κουμπιού «Call To Action»
|
50
46
|
customize_welcome_notification: Προσαρμογή ειδοποίησης καλωσορίσματος
|
51
47
|
default_locale: Προεπιλεγμένες τοπικές ρυθμίσεις
|
52
48
|
description: Περιγραφή
|
@@ -61,13 +57,6 @@ el:
|
|
61
57
|
header_snippets: Τμήματα κεφαλίδας
|
62
58
|
highlight_alternative_color: Επισήμαση, εναλλακτική
|
63
59
|
highlight_color: Επισήμανση
|
64
|
-
highlighted_content_banner_action_subtitle: Υπότιτλος κουμπιού ενέργειας
|
65
|
-
highlighted_content_banner_action_title: Τίτλος κουμπιού ενέργειας
|
66
|
-
highlighted_content_banner_action_url: Διεύθυνση URL κουμπιού ενέργειας
|
67
|
-
highlighted_content_banner_enabled: Εμφάνιση του επισημασμένου πλαισίου περιεχομένου
|
68
|
-
highlighted_content_banner_image: Εικόνα
|
69
|
-
highlighted_content_banner_short_description: Σύντομη περιγραφή
|
70
|
-
highlighted_content_banner_title: Τίτλος
|
71
60
|
host: Διοργανωτής
|
72
61
|
instagram_handler: Πρόγραμμα χειρισμού Instagram
|
73
62
|
logo: Λογότυπο
|
@@ -93,7 +82,6 @@ el:
|
|
93
82
|
tertiary_color: Τριτοβάθμιος
|
94
83
|
time_zone: Ζώνη ώρας
|
95
84
|
tos_version: Έκδοση όρων χρήσης υπηρεσίας
|
96
|
-
user_groups_enabled: Ενεργοποίηση ομάδων
|
97
85
|
users_registration_mode: Λειτουργία εγγραφής χρηστών
|
98
86
|
warning_color: Προειδοποίηση
|
99
87
|
welcome_notification_body: Σώμα ειδοποίησης καλωσορίσματος
|
@@ -178,21 +166,18 @@ el:
|
|
178
166
|
attachment_collection:
|
179
167
|
new: Νέος φάκελος συνημμένων
|
180
168
|
browse: Αναζήτηση
|
181
|
-
|
169
|
+
configure: Διαμόρφωση
|
170
|
+
export: Εξαγωγή
|
182
171
|
export-selection: Εξαγωγή επιλογής
|
183
172
|
import: Εισαγωγή
|
184
|
-
manage: Διαχείριση
|
185
173
|
newsletter:
|
186
174
|
new: Νέο ενημερωτικό δελτίο
|
187
175
|
participatory_space_private_user:
|
188
176
|
new: Νέος ιδιωτικός χρήστης συμμετοχικού χώρου
|
189
177
|
per_page: Ανά σελίδα
|
190
|
-
permissions: Δικαιώματα
|
191
|
-
reject: Απόρριψη
|
192
178
|
share: Κοινοποίηση
|
193
179
|
user:
|
194
180
|
new: Νέος διαχειριστής
|
195
|
-
verify: Επαλήθευση
|
196
181
|
admin_terms_of_service:
|
197
182
|
accept:
|
198
183
|
success: Τέλεια! Έχετε αποδεχτεί τους όρους παροχής υπηρεσιών διαχειριστή.
|
@@ -396,11 +381,7 @@ el:
|
|
396
381
|
'true': Η δημοσίευση καταργήθηκε
|
397
382
|
search_label: Αναζήτηση
|
398
383
|
search_placeholder:
|
399
|
-
name_or_nickname_or_email_cont: Αναζήτηση συλλογής %{collection} με βάση το email, όνομα ή ψευδώνυμο.
|
400
384
|
report_count_eq: Αναφορά μετρητή eq
|
401
|
-
reported_id_string_or_reported_content_cont: Αναζήτηση %{collection} με αναγνωριστικό ή περιεχόμενο προς αναφορά.
|
402
|
-
title_cont: Αναζήτηση συλλογής %{collection} με βάση τον τίτλο.
|
403
|
-
user_name_or_user_nickname_or_user_email_cont: Αναζήτηση %{collection} με email, όνομα ή ψευδώνυμο.
|
404
385
|
state_eq:
|
405
386
|
label: Κατάσταση
|
406
387
|
values:
|
@@ -492,7 +473,6 @@ el:
|
|
492
473
|
logs:
|
493
474
|
filters:
|
494
475
|
participatory_space: Βρείτε συμμετοχικό χώρο
|
495
|
-
text: Αναζήτηση με email, όνομα ή ψευδώνυμο.
|
496
476
|
user: Χρήστης
|
497
477
|
logs_list:
|
498
478
|
no_logs_yet: Δεν υπάρχουν ακόμη αρχεία καταγραφής.
|
@@ -515,7 +495,6 @@ el:
|
|
515
495
|
configuration: Διαμόρφωση
|
516
496
|
content: Περιεχόμενο που αναφέρθηκε
|
517
497
|
help_sections: Ενότητες βοήθειας
|
518
|
-
homepage: Αρχική σελίδα
|
519
498
|
impersonations: Αναπαραστάσεις
|
520
499
|
manage: Διαχείριση
|
521
500
|
moderation: Καθολικές εποπτεύσεις
|
@@ -526,11 +505,7 @@ el:
|
|
526
505
|
scopes: Πεδία εφαρμογής
|
527
506
|
settings: Ρυθμίσεις
|
528
507
|
static_pages: Σελίδες
|
529
|
-
user_groups: Ομάδες
|
530
508
|
users: Συμμετέχοντες
|
531
|
-
metrics:
|
532
|
-
metrics:
|
533
|
-
see_more_metrics: Δείτε περισσότερα μετρικά
|
534
509
|
models:
|
535
510
|
area:
|
536
511
|
fields:
|
@@ -595,23 +570,15 @@ el:
|
|
595
570
|
admin: Διαχειριστής
|
596
571
|
user_manager: Διαχειριστής συμμετεχόντων
|
597
572
|
name: Συμμετέχων
|
598
|
-
user_group:
|
599
|
-
fields:
|
600
|
-
actions: Ενέργειες
|
601
|
-
created_at: Δημιουργήθηκε στις
|
602
|
-
document_number: Αριθμός εγγράφου
|
603
|
-
name: Όνομα
|
604
|
-
nickname: Ψευδώνυμο
|
605
|
-
phone: Τηλέφωνο
|
606
|
-
state: Κατάσταση
|
607
|
-
users_count: Πλήθος συμμετεχόντων
|
608
573
|
moderated_users:
|
609
574
|
index:
|
610
575
|
actions:
|
611
576
|
block: Αποκλεισμός χρήστη
|
577
|
+
bulk_actions:
|
578
|
+
unreport:
|
579
|
+
title: Κατάργηση αναφοράς
|
612
580
|
title: Ενέργειες
|
613
581
|
unblock: Ξεμπλοκάρισμα χρήστη
|
614
|
-
unreport: Κατάργηση αναφοράς
|
615
582
|
name: Όνομα
|
616
583
|
nickname: Ψευδώνυμο
|
617
584
|
reason: Αιτία
|
@@ -716,7 +683,6 @@ el:
|
|
716
683
|
index:
|
717
684
|
actions: Ενέργειες
|
718
685
|
badge: Έμβλημα
|
719
|
-
block: Αποκλεισμός χρήστη
|
720
686
|
created_at: Δημιουργήθηκε στις
|
721
687
|
name: Όνομα
|
722
688
|
nickname: Ψευδώνυμο
|
@@ -725,9 +691,7 @@ el:
|
|
725
691
|
officialized: Επισημοποιήθηκε
|
726
692
|
reofficialize: Εκ νέου επισημοποίηση
|
727
693
|
reports: Αναφορές
|
728
|
-
show_email: Εμφάνιση διεύθυνσης email
|
729
694
|
status: Κατάσταση
|
730
|
-
unblock: Ξεμπλοκάρισμα χρήστη
|
731
695
|
unofficialize: Κατάργηση επισημοποίησης
|
732
696
|
new:
|
733
697
|
badge: Έμβλημα επισημοποίησης
|
@@ -757,17 +721,6 @@ el:
|
|
757
721
|
update:
|
758
722
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του οργανισμού.
|
759
723
|
success: Ο οργανισμός ενημερώθηκε με επιτυχία.
|
760
|
-
organization_appearance:
|
761
|
-
edit:
|
762
|
-
update: Ενημέρωση
|
763
|
-
form:
|
764
|
-
cta_button_text_help: Μπορείτε να αντικαταστήσετε το κείμενο του κουμπιού «Call To Action» στην αρχική σελίδα για κάθε διαθέσιμη γλώσσα στον οργανισμό σας. Εάν δεν έχει οριστεί, θα χρησιμοποιηθεί η προεπιλεγμένη τιμή. Το κουμπί «Call To Action» εμφανίζεται στην αρχική σελίδα μεταξύ του κειμένου καλωσορίσματος και της περιγραφής.
|
765
|
-
homepage_appearance_title: Επεξεργασία εμφάνισης αρχικής σελίδας
|
766
|
-
homepage_highlighted_content_banner_title: Επισημασμένο πλαίσιο περιεχομένου
|
767
|
-
images:
|
768
|
-
layout_appearance_title: Επεξεργασία εμφάνισης διάταξης
|
769
|
-
preview: Προεπισκόπηση
|
770
|
-
omnipresent_banner_appearance_title: Επεξεργασία διαφημιστικού πλαισίου omnipresent
|
771
724
|
participatory_space_private_users:
|
772
725
|
create:
|
773
726
|
error: Υπήρξε ένα πρόβλημα κατά την προσθήκη ενός ιδιωτικού συμμετέχοντα για αυτόν τον χώρο συμμετοχής.
|
@@ -847,14 +800,11 @@ el:
|
|
847
800
|
title: Επεξεργασία θέματος
|
848
801
|
update: Ενημέρωση θέματος
|
849
802
|
new:
|
850
|
-
create: Δημιουργία θέματος
|
851
803
|
title: Νέο θέμα
|
852
804
|
update:
|
853
805
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του θέματος.
|
854
806
|
success: Το θέμα ενημερώθηκε με επιτυχία
|
855
807
|
static_pages:
|
856
|
-
actions:
|
857
|
-
view: Προβολή δημόσιας σελίδας
|
858
808
|
create:
|
859
809
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία μιας νέας σελίδας.
|
860
810
|
success: Η σελίδα δημιουργήθηκε με επιτυχία.
|
@@ -869,7 +819,6 @@ el:
|
|
869
819
|
index:
|
870
820
|
last_notable_change: Τελευταία σημαντική αλλαγή
|
871
821
|
new:
|
872
|
-
create: Δημιουργία σελίδας
|
873
822
|
title: Νέα σελίδα
|
874
823
|
topic:
|
875
824
|
empty: Δεν υπάρχουν σελίδες κάτω από αυτό το θέμα.
|
@@ -885,40 +834,11 @@ el:
|
|
885
834
|
dashboard: Πίνακας εργαλείων
|
886
835
|
impersonatable_users: Διαχειρίσιμοι συμμετέχοντες
|
887
836
|
impersonations: Διαχείριση συμμετεχόντων
|
888
|
-
metrics: Μετρικά
|
889
837
|
panel: Διαχειριστής
|
890
838
|
participants: Συμμετέχοντες
|
891
839
|
scope_types: Τύποι πεδίου εφαρμογής
|
892
840
|
scopes: Πεδία εφαρμογής
|
893
|
-
statistics: Δραστηριότητα
|
894
|
-
user_groups: Ομάδες
|
895
841
|
users: Διαχειριστές
|
896
|
-
user_group:
|
897
|
-
csv_verify:
|
898
|
-
invalid: Υπήρξε ένα πρόβλημα κατά την ανάγνωση του αρχείου CSV.
|
899
|
-
success: Το αρχείο CSV ανέβηκε με επιτυχία, επαληθεύουμε τις ομάδες που ταιριάζουν στα κριτήρια. Αυτό μπορεί να διαρκέσει λίγο.
|
900
|
-
reject:
|
901
|
-
invalid: Υπήρξε ένα πρόβλημα κατά την απόρριψη αυτής της ομάδας.
|
902
|
-
success: Η ομάδα απορρίφθηκε με επιτυχία.
|
903
|
-
verify:
|
904
|
-
invalid: Υπήρξε ένα πρόβλημα κατά την επαλήθευση αυτής της ομάδας.
|
905
|
-
success: Η ομάδα επαληθεύτηκε με επιτυχία.
|
906
|
-
user_groups:
|
907
|
-
index:
|
908
|
-
state:
|
909
|
-
pending: Εκκρεμεί
|
910
|
-
rejected: Απορρίφθηκε
|
911
|
-
verified: Επαληθεύτηκε
|
912
|
-
verify_via_csv: Επαλήθευση μέσω CSV
|
913
|
-
user_groups_csv_verifications:
|
914
|
-
new:
|
915
|
-
example_file: 'Παράδειγμα αρχείου:'
|
916
|
-
explanation: Πραγματοποιήστε αποστολή του αρχείου CSV. Πρέπει να έχει τις επίσημες διευθύνσεις email των ομάδων του οργανισμού σας στην πρώτη στήλη του αρχείου, χωρίς κεφαλίδες. Θα επικυρωθούν μόνο οι ομάδες που έχουν επιβεβαιώσει τη διεύθυνση email τους και το email εμφανίζεται στο αρχείο CSV.
|
917
|
-
explanation_example: |
|
918
|
-
acme@example.org
|
919
|
-
bubba.gump@example.org
|
920
|
-
title: Αποστολή του αρχείου σας CSV
|
921
|
-
upload: Αποστολή
|
922
842
|
users:
|
923
843
|
create:
|
924
844
|
error: Υπήρξε ένα πρόβλημα κατά την πρόσκληση αυτού του διαχειριστή.
|
@@ -945,16 +865,6 @@ el:
|
|
945
865
|
errors:
|
946
866
|
impersonate_user:
|
947
867
|
reason: Πρέπει να καταχωρήσετε έναν λόγο κατά τη διαχείριση ενός μη διαχειριζόμενου συμμετέχοντα.
|
948
|
-
metrics:
|
949
|
-
blocked_users:
|
950
|
-
object: αποκλεισμένοι χρήστες
|
951
|
-
title: Αποκλεισμένοι χρήστες
|
952
|
-
reported_users:
|
953
|
-
object: αναφερόμενοι χρήστες
|
954
|
-
title: Αναφερόμενοι χρήστες
|
955
|
-
user_reports:
|
956
|
-
object: αναφορές χρηστών
|
957
|
-
title: Αναφορές χρηστών
|
958
868
|
moderations:
|
959
869
|
actions:
|
960
870
|
expand: Επέκταση
|
@@ -962,8 +872,6 @@ el:
|
|
962
872
|
hide: Απόκρυψη
|
963
873
|
not_hidden: Δεν είναι κρυφό
|
964
874
|
title: Ενέργειες
|
965
|
-
unhide: Επανεμφάνιση
|
966
|
-
unreport: Κατάργηση αναφοράς
|
967
875
|
admin:
|
968
876
|
reportable:
|
969
877
|
hide:
|