decidim-admin 0.30.3 → 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 +2 -2
- 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 +14 -32
- 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 -37
- 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 +0 -90
- data/config/locales/bg.yml +1 -110
- data/config/locales/bs-BA.yml +0 -44
- data/config/locales/ca-IT.yml +61 -120
- data/config/locales/ca.yml +61 -120
- data/config/locales/cs.yml +51 -120
- data/config/locales/de.yml +61 -120
- data/config/locales/el.yml +2 -102
- data/config/locales/en.yml +61 -120
- data/config/locales/eo.yml +0 -4
- data/config/locales/es-MX.yml +61 -120
- data/config/locales/es-PY.yml +61 -120
- data/config/locales/es.yml +61 -120
- data/config/locales/eu.yml +61 -120
- data/config/locales/fi-plain.yml +60 -119
- data/config/locales/fi.yml +60 -119
- data/config/locales/fr-CA.yml +61 -119
- data/config/locales/fr.yml +61 -119
- data/config/locales/ga-IE.yml +1 -34
- data/config/locales/gl.yml +0 -95
- data/config/locales/he-IL.yml +0 -8
- data/config/locales/hu.yml +2 -105
- data/config/locales/id-ID.yml +0 -62
- data/config/locales/is-IS.yml +1 -36
- data/config/locales/it.yml +35 -116
- data/config/locales/ja.yml +60 -119
- data/config/locales/kaa.yml +0 -12
- data/config/locales/ko.yml +0 -75
- data/config/locales/lb.yml +2 -95
- data/config/locales/lt.yml +1 -103
- data/config/locales/lv.yml +2 -74
- data/config/locales/nl.yml +2 -96
- data/config/locales/no.yml +2 -96
- data/config/locales/pl.yml +2 -108
- data/config/locales/pt-BR.yml +6 -110
- data/config/locales/pt.yml +2 -96
- data/config/locales/ro-RO.yml +10 -102
- data/config/locales/ru.yml +2 -54
- data/config/locales/sk.yml +2 -72
- data/config/locales/sl.yml +1 -18
- data/config/locales/sq-AL.yml +0 -45
- data/config/locales/sr-CS.yml +1 -44
- data/config/locales/sv.yml +58 -119
- data/config/locales/th-TH.yml +0 -10
- data/config/locales/tr-TR.yml +5 -88
- data/config/locales/uk.yml +1 -45
- data/config/locales/val-ES.yml +0 -1
- data/config/locales/zh-CN.yml +0 -72
- data/config/locales/zh-TW.yml +1 -102
- 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,12 +46,9 @@ 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
|
|
56
|
-
enable_machine_translations: Maschinelle Übersetzungen aktivieren
|
|
57
52
|
enable_omnipresent_banner: Zeige allgegenwärtiges Banner
|
|
58
53
|
enable_participatory_space_filters: Bereichs- und Gebietsfilter aktivieren
|
|
59
54
|
facebook_handler: Facebook-Handler
|
|
@@ -65,13 +60,6 @@ de:
|
|
|
65
60
|
header_snippets: Header-Snippets
|
|
66
61
|
highlight_alternative_color: Hervorhebung, Alternative
|
|
67
62
|
highlight_color: Hervorheben
|
|
68
|
-
highlighted_content_banner_action_subtitle: Aktion Schaltfläche Untertitel
|
|
69
|
-
highlighted_content_banner_action_title: Titel der Aktionsschaltfläche
|
|
70
|
-
highlighted_content_banner_action_url: Aktionsschaltflächen-URL
|
|
71
|
-
highlighted_content_banner_enabled: Zeigen Sie das hervorgehobene Inhaltsbanner an
|
|
72
|
-
highlighted_content_banner_image: Bild
|
|
73
|
-
highlighted_content_banner_short_description: Kurze Beschreibung
|
|
74
|
-
highlighted_content_banner_title: Titel
|
|
75
63
|
host: Host
|
|
76
64
|
instagram_handler: Instagram-Handler
|
|
77
65
|
logo: Logo
|
|
@@ -98,7 +86,6 @@ de:
|
|
|
98
86
|
time_zone: Zeitzone
|
|
99
87
|
tos_version: Nutzungsbedingungen Version
|
|
100
88
|
twitter_handler: X-Handler
|
|
101
|
-
user_groups_enabled: Benutzergruppen aktivieren
|
|
102
89
|
users_registration_mode: Benutzerregistrierungs-Modus
|
|
103
90
|
warning_color: Warnung
|
|
104
91
|
welcome_notification_body: Text der Willkommens-Benachrichtigung
|
|
@@ -180,12 +167,17 @@ de:
|
|
|
180
167
|
decidim:
|
|
181
168
|
admin:
|
|
182
169
|
actions:
|
|
170
|
+
actions: Aktionen
|
|
171
|
+
actions_label: Aktionen für %{resource}
|
|
183
172
|
add: Hinzufügen
|
|
184
173
|
attachment:
|
|
185
174
|
new: Neuer Anhang
|
|
186
175
|
attachment_collection:
|
|
187
176
|
new: Neuer Ordner für Dateianhänge
|
|
177
|
+
attachment_collections: Ordner hinzufügen
|
|
178
|
+
attachments: Anhang hinzufügen
|
|
188
179
|
browse: Durchsuchen
|
|
180
|
+
configure: Konfigurieren
|
|
189
181
|
confirm_delete_component: |
|
|
190
182
|
Sind Sie sicher, dass Sie diese Komponente löschen möchten?<br>
|
|
191
183
|
Diese Komponente enthält:<br>
|
|
@@ -193,25 +185,24 @@ de:
|
|
|
193
185
|
<li class="font-bold">%{resources_count} Ressourcen</li>
|
|
194
186
|
</ul>
|
|
195
187
|
Wenn Sie Ihre Meinung ändern, können Sie es später wiederherstellen.
|
|
196
|
-
export:
|
|
188
|
+
export: Exportieren
|
|
197
189
|
export-selection: Auswahl exportieren
|
|
198
190
|
import: Importieren
|
|
199
|
-
|
|
191
|
+
menu_hidden: Im Menü ausblenden
|
|
192
|
+
moderate: Moderationen verwalten
|
|
200
193
|
newsletter:
|
|
201
194
|
new: Neuer Newsletter
|
|
202
195
|
participatory_space_private_user:
|
|
203
196
|
new: Neuer privater Benutzer
|
|
204
197
|
per_page: Pro Seite
|
|
205
|
-
permissions: Berechtigungen
|
|
206
|
-
reject: Ablehnen
|
|
198
|
+
permissions: Berechtigungen verwalten
|
|
207
199
|
restore: Wiederherstellen
|
|
208
200
|
send_me_a_test_email: Mir eine Test-E-Mail senden
|
|
209
201
|
share: Teilen
|
|
210
|
-
share_tokens:
|
|
211
|
-
soft_delete:
|
|
202
|
+
share_tokens: Linkfreigabe
|
|
203
|
+
soft_delete: In Papierkorb verschieben
|
|
212
204
|
user:
|
|
213
205
|
new: Neuer Administrator
|
|
214
|
-
verify: Überprüfen
|
|
215
206
|
view_deleted_components: Gelöschte Komponenten ansehen
|
|
216
207
|
admin_terms_of_service:
|
|
217
208
|
accept:
|
|
@@ -361,7 +352,7 @@ de:
|
|
|
361
352
|
attempts: Versuche
|
|
362
353
|
'false': 'Nein'
|
|
363
354
|
index:
|
|
364
|
-
text:
|
|
355
|
+
text: Duchsuche nach aktueller E-Mail-Adresse, Name oder Spitzname
|
|
365
356
|
managed_user_name: Verwalteter Benutzer
|
|
366
357
|
solved: Gelöst
|
|
367
358
|
title: Überprüfungskonflikte
|
|
@@ -463,11 +454,11 @@ de:
|
|
|
463
454
|
remove_all: Alle entfernen
|
|
464
455
|
search_label: Suche
|
|
465
456
|
search_placeholder:
|
|
466
|
-
name_or_nickname_or_email_cont:
|
|
457
|
+
name_or_nickname_or_email_cont: Durchsuche %{collection} nach E-Mail, Name oder Spitzname
|
|
467
458
|
report_count_eq: Anzahl Meldungen
|
|
468
|
-
reported_id_string_or_reported_content_cont:
|
|
469
|
-
title_cont:
|
|
470
|
-
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
|
|
471
462
|
state_eq:
|
|
472
463
|
label: Status
|
|
473
464
|
values:
|
|
@@ -484,6 +475,10 @@ de:
|
|
|
484
475
|
explanation: 'Hinweise für die Datei:'
|
|
485
476
|
message_1: CSV, JSON und Excel (.xlsx) Dateien werden unterstützt
|
|
486
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"
|
|
487
482
|
help_sections:
|
|
488
483
|
error: Beim Aktualisieren der Hilfeabschnitte ist ein Fehler aufgetreten.
|
|
489
484
|
form:
|
|
@@ -562,7 +557,7 @@ de:
|
|
|
562
557
|
logs:
|
|
563
558
|
filters:
|
|
564
559
|
participatory_space: Partizipativen Raum finden
|
|
565
|
-
text:
|
|
560
|
+
text: Duchsuche nach E-Mail-Adresse, Name oder Spitzname
|
|
566
561
|
user: Benutzer*in
|
|
567
562
|
logs_list:
|
|
568
563
|
no_logs_yet: Es gibt noch keine Protokolle.
|
|
@@ -589,8 +584,9 @@ de:
|
|
|
589
584
|
content: Gemeldeter Inhalt
|
|
590
585
|
external_domain_allowlist: Erlaubte externe Domains
|
|
591
586
|
help_sections: Hilfeabschnitte
|
|
592
|
-
homepage:
|
|
587
|
+
homepage: Homepage-Layout
|
|
593
588
|
impersonations: Identitätswechsel
|
|
589
|
+
insights: Einblicke
|
|
594
590
|
manage: Verwalten
|
|
595
591
|
moderation: Globale Moderationen
|
|
596
592
|
newsletters: Newsletter
|
|
@@ -603,13 +599,10 @@ de:
|
|
|
603
599
|
share_tokens: Zugangslinks
|
|
604
600
|
static_page_topics: Themen
|
|
605
601
|
static_pages: Seiten
|
|
602
|
+
statistics: Statistiken
|
|
606
603
|
taxonomies: Taxonomien
|
|
607
604
|
taxonomy_filters: Taxonomie-Filter
|
|
608
|
-
user_groups: Benutzergruppen
|
|
609
605
|
users: Benutzer
|
|
610
|
-
metrics:
|
|
611
|
-
metrics:
|
|
612
|
-
see_more_metrics: Mehr Kriterien anzeigen
|
|
613
606
|
models:
|
|
614
607
|
area:
|
|
615
608
|
fields:
|
|
@@ -678,16 +671,6 @@ de:
|
|
|
678
671
|
admin: Administrator
|
|
679
672
|
user_manager: Benutzer Manager
|
|
680
673
|
name: Benutzer
|
|
681
|
-
user_group:
|
|
682
|
-
fields:
|
|
683
|
-
actions: Aktionen
|
|
684
|
-
created_at: Erstellt am
|
|
685
|
-
document_number: Dokumentnummer
|
|
686
|
-
name: Name
|
|
687
|
-
nickname: Spitzname
|
|
688
|
-
phone: Telefon
|
|
689
|
-
state: Status
|
|
690
|
-
users_count: Benutzer zählen
|
|
691
674
|
moderated_users:
|
|
692
675
|
index:
|
|
693
676
|
actions:
|
|
@@ -706,7 +689,7 @@ de:
|
|
|
706
689
|
update_moderated_user_button: Gemeldete Teilnehmende zurückweisen
|
|
707
690
|
title: Aktionen
|
|
708
691
|
unblock: Blockierung des Benutzers aufheben
|
|
709
|
-
unreport: Meldung
|
|
692
|
+
unreport: Meldung rückgängig machen
|
|
710
693
|
cancel: Abbrechen
|
|
711
694
|
name: Name
|
|
712
695
|
nickname: Spitzname
|
|
@@ -730,10 +713,10 @@ de:
|
|
|
730
713
|
title: Verbergen
|
|
731
714
|
update_moderation_button: Ausgewählte Ressourcen verbergen
|
|
732
715
|
unhide:
|
|
733
|
-
title:
|
|
716
|
+
title: Erneut einblenden
|
|
734
717
|
update_moderation_button: Ausgewählte Ressourcen einblenden
|
|
735
718
|
unreport:
|
|
736
|
-
title: Meldung
|
|
719
|
+
title: Meldung rückgängig machen
|
|
737
720
|
update_moderation_button: Meldung ausgewählter Ressourcen aufheben
|
|
738
721
|
cancel: Abbrechen
|
|
739
722
|
selected: ausgewählt
|
|
@@ -822,7 +805,7 @@ de:
|
|
|
822
805
|
select_conferences: Konferenzen auswählen
|
|
823
806
|
select_initiatives: Initiativen auswählen
|
|
824
807
|
select_participatory_processes: Beteiligungsprozesse auswählen
|
|
825
|
-
select_spaces:
|
|
808
|
+
select_spaces: Wählen Sie Abschnitte, um den Newsletter zu unterteilen
|
|
826
809
|
select_users_for_participatory_space: Newsletter an einen oder mehrere partizipative Bereiche senden
|
|
827
810
|
select_users_general: Plattformweiter Newsletter senden
|
|
828
811
|
select_verification_types: Verifizierungsmethoden auswählen
|
|
@@ -861,7 +844,7 @@ de:
|
|
|
861
844
|
index:
|
|
862
845
|
actions: Aktionen
|
|
863
846
|
badge: Abzeichen
|
|
864
|
-
block:
|
|
847
|
+
block: Blockieren
|
|
865
848
|
created_at: Erstellt am
|
|
866
849
|
name: Name
|
|
867
850
|
nickname: Spitzname
|
|
@@ -870,9 +853,10 @@ de:
|
|
|
870
853
|
officialized: Offizialisiert
|
|
871
854
|
reofficialize: Reoffizialisieren
|
|
872
855
|
reports: Berichte
|
|
856
|
+
send_message: Nachricht senden
|
|
873
857
|
show_email: E-Mail-Adresse anzeigen
|
|
874
858
|
status: Status
|
|
875
|
-
unblock: Blockierung
|
|
859
|
+
unblock: Blockierung aufheben
|
|
876
860
|
unofficialize: Nicht offiziell
|
|
877
861
|
new:
|
|
878
862
|
badge: Offizielles Abzeichen
|
|
@@ -893,41 +877,33 @@ de:
|
|
|
893
877
|
title: Organisation bearbeiten
|
|
894
878
|
update: Aktualisieren
|
|
895
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
|
|
896
892
|
facebook: Facebook
|
|
897
893
|
github: GitHub
|
|
898
894
|
instagram: Instagram
|
|
895
|
+
logos:
|
|
896
|
+
organization_logos: Organisationslogo
|
|
897
|
+
preview: Vorschau
|
|
899
898
|
rich_text_editor_in_public_views_help: In einigen Textbereichen können Teilnehmer mit Hilfe des Rich-Text-Editors HTML-Tags einfügen.
|
|
900
899
|
social_handlers: Sozial
|
|
901
900
|
twitter: X
|
|
902
901
|
url: URL
|
|
902
|
+
welcome_notification: Willkommensbenachrichtigung
|
|
903
903
|
youtube: Youtube
|
|
904
904
|
update:
|
|
905
905
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
|
906
906
|
success: Die Organisation wurde erfolgreich aktualisiert.
|
|
907
|
-
organization_appearance:
|
|
908
|
-
edit:
|
|
909
|
-
update: Aktualisieren
|
|
910
|
-
form:
|
|
911
|
-
colors:
|
|
912
|
-
choose_color: Primärfarbe auswählen
|
|
913
|
-
colors_title: Organisationsfarben
|
|
914
|
-
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.
|
|
915
|
-
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.
|
|
916
|
-
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.
|
|
917
|
-
saturation: Sättigung
|
|
918
|
-
title: Farbauswahl
|
|
919
|
-
update_suggested_colors: Vorgeschlagene Farben aktualisieren
|
|
920
|
-
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}'
|
|
921
|
-
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.
|
|
922
|
-
header_snippets:
|
|
923
|
-
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>.
|
|
924
|
-
title: HTML-Header-Snippets
|
|
925
|
-
homepage_appearance_title: Homepage-Erscheinungsbild bearbeiten
|
|
926
|
-
homepage_highlighted_content_banner_title: Highlighted Inhaltsbanner
|
|
927
|
-
images:
|
|
928
|
-
layout_appearance_title: Layout-Aussehen bearbeiten
|
|
929
|
-
preview: Vorschau
|
|
930
|
-
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
|
931
907
|
organization_external_domain_allowlist:
|
|
932
908
|
edit:
|
|
933
909
|
update: Aktualisieren
|
|
@@ -1100,14 +1076,14 @@ de:
|
|
|
1100
1076
|
title: Thema bearbeiten
|
|
1101
1077
|
update: Thema aktualisieren
|
|
1102
1078
|
new:
|
|
1103
|
-
create: Thema
|
|
1079
|
+
create: Neues Thema
|
|
1104
1080
|
title: Neues Thema
|
|
1105
1081
|
update:
|
|
1106
1082
|
error: Beim Aktualisieren dieses Themas ist ein Fehler aufgetreten.
|
|
1107
1083
|
success: Thema erfolgreich aktualisiert
|
|
1108
1084
|
static_pages:
|
|
1109
1085
|
actions:
|
|
1110
|
-
view:
|
|
1086
|
+
view: Anzeigen
|
|
1111
1087
|
create:
|
|
1112
1088
|
error: Beim Erstellen einer neuen Seite ist ein Fehler aufgetreten.
|
|
1113
1089
|
success: Seite erfolgreich erstellt
|
|
@@ -1124,7 +1100,7 @@ de:
|
|
|
1124
1100
|
index:
|
|
1125
1101
|
last_notable_change: Letzte signifikante Änderung
|
|
1126
1102
|
new:
|
|
1127
|
-
create: Seite
|
|
1103
|
+
create: Neue Seite
|
|
1128
1104
|
title: Neue Seite
|
|
1129
1105
|
topic:
|
|
1130
1106
|
empty: Es gibt keine Seite zu diesem Thema.
|
|
@@ -1135,9 +1111,9 @@ de:
|
|
|
1135
1111
|
taxonomies:
|
|
1136
1112
|
actions:
|
|
1137
1113
|
actions: Aktionen
|
|
1138
|
-
destroy:
|
|
1139
|
-
edit:
|
|
1140
|
-
filters: Filter
|
|
1114
|
+
destroy: Löschen
|
|
1115
|
+
edit: Bearbeiten
|
|
1116
|
+
filters: Filter anwenden
|
|
1141
1117
|
breadcrumb:
|
|
1142
1118
|
edit: Klassifizierung bearbeiten
|
|
1143
1119
|
new: Neue Klassifizierung
|
|
@@ -1249,24 +1225,23 @@ de:
|
|
|
1249
1225
|
authorization_workflows: Verifizierungsmethoden
|
|
1250
1226
|
dashboard: Instrumententafel
|
|
1251
1227
|
edit_external_domains: Liste erlaubter externer Domains
|
|
1252
|
-
edit_landing_page: Seiteninhalte
|
|
1253
|
-
edit_organization_appearance: Homepage-Erscheinungsbild bearbeiten
|
|
1254
1228
|
impersonatable_users: Überschaubare Benutzer
|
|
1255
1229
|
impersonations: Benutzerverwaltung
|
|
1256
1230
|
menu: Menü
|
|
1257
|
-
metrics: Kriterien
|
|
1258
1231
|
page_topics: Themen
|
|
1259
1232
|
pages: Seiten
|
|
1260
1233
|
panel: Admin
|
|
1261
1234
|
participants: Benutzer
|
|
1262
1235
|
scope_types: Bereichstypen
|
|
1263
1236
|
scopes: Bereiche
|
|
1264
|
-
statistics:
|
|
1237
|
+
statistics: Statistiken
|
|
1265
1238
|
taxonomies: Klassifizierungen
|
|
1266
1239
|
taxonomy_filters: Klassifizierungsfilter für "%{taxonomy}"
|
|
1267
|
-
user_groups: Benutzergruppen
|
|
1268
1240
|
users: Administratoren
|
|
1269
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.
|
|
1270
1245
|
deleted_component_info: Diese Komponente kann nur gelöscht werden, wenn der Status 'Nicht veröffentlicht' ist.
|
|
1271
1246
|
trash_management:
|
|
1272
1247
|
restore:
|
|
@@ -1275,32 +1250,6 @@ de:
|
|
|
1275
1250
|
soft_delete:
|
|
1276
1251
|
invalid: Es gab ein Problem beim Löschen von %{resource_name}.
|
|
1277
1252
|
success: "%{resource_name} erfolgreich gelöscht."
|
|
1278
|
-
user_group:
|
|
1279
|
-
csv_verify:
|
|
1280
|
-
invalid: Beim Lesen der CSV-Datei ist ein Fehler aufgetreten.
|
|
1281
|
-
success: CSV-Datei wurde erfolgreich hochgeladen. Wir überprüfen, welche Gruppen den Kriterien entsprechen. Das kann eine Weile dauern.
|
|
1282
|
-
reject:
|
|
1283
|
-
invalid: Beim Ablehnen dieser Benutzergruppe ist ein Fehler aufgetreten.
|
|
1284
|
-
success: Gruppe erfolgreich abgelehnt.
|
|
1285
|
-
verify:
|
|
1286
|
-
invalid: Beim Überprüfen dieser Benutzergruppe ist ein Fehler aufgetreten.
|
|
1287
|
-
success: Gruppe erfolgreich verifiziert.
|
|
1288
|
-
user_groups:
|
|
1289
|
-
index:
|
|
1290
|
-
state:
|
|
1291
|
-
pending: Ausstehend
|
|
1292
|
-
rejected: Abgelehnt
|
|
1293
|
-
verified: Überprüft
|
|
1294
|
-
verify_via_csv: Überprüfen Sie über CSV
|
|
1295
|
-
user_groups_csv_verifications:
|
|
1296
|
-
new:
|
|
1297
|
-
example_file: 'Beispieldatei:'
|
|
1298
|
-
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.
|
|
1299
|
-
explanation_example: |
|
|
1300
|
-
acme@example.org
|
|
1301
|
-
bubba.gump@example.org
|
|
1302
|
-
title: Laden Sie Ihre CSV-Datei hoch
|
|
1303
|
-
upload: Hochladen
|
|
1304
1253
|
users:
|
|
1305
1254
|
create:
|
|
1306
1255
|
error: Beim Einladen dieses Benutzers ist ein Fehler aufgetreten.
|
|
@@ -1327,16 +1276,6 @@ de:
|
|
|
1327
1276
|
errors:
|
|
1328
1277
|
impersonate_user:
|
|
1329
1278
|
reason: Sie müssen einen Grund angeben, weshalb Sie sich als nicht-verwaltete Nutzende ausgeben.
|
|
1330
|
-
metrics:
|
|
1331
|
-
blocked_users:
|
|
1332
|
-
object: blockierte Benutzer
|
|
1333
|
-
title: Blockierte Benutzer
|
|
1334
|
-
reported_users:
|
|
1335
|
-
object: gemeldete Benutzer
|
|
1336
|
-
title: Gemeldete Benutzer
|
|
1337
|
-
user_reports:
|
|
1338
|
-
object: Benutzer-Meldungen
|
|
1339
|
-
title: Benutzer-Meldungen
|
|
1340
1279
|
moderations:
|
|
1341
1280
|
actions:
|
|
1342
1281
|
expand: Ausklappen
|
|
@@ -1345,8 +1284,8 @@ de:
|
|
|
1345
1284
|
not_hidden: Nicht versteckt
|
|
1346
1285
|
parent_hidden: Sie können diese Ressource nicht anzeigen, da die übergeordnete Ressource ausgeblendet ist.
|
|
1347
1286
|
title: Aktionen
|
|
1348
|
-
unhide:
|
|
1349
|
-
unreport:
|
|
1287
|
+
unhide: Erneut einblenden
|
|
1288
|
+
unreport: Meldung rückgängig machen
|
|
1350
1289
|
admin:
|
|
1351
1290
|
reportable:
|
|
1352
1291
|
bulk_action:
|
|
@@ -1401,5 +1340,7 @@ de:
|
|
|
1401
1340
|
admin:
|
|
1402
1341
|
global_moderations:
|
|
1403
1342
|
title: Globale Moderationen
|
|
1343
|
+
insights:
|
|
1344
|
+
title: Einblicke
|
|
1404
1345
|
taxonomy_filters_selector:
|
|
1405
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,16 +570,6 @@ 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:
|
|
@@ -614,7 +579,6 @@ el:
|
|
|
614
579
|
title: Κατάργηση αναφοράς
|
|
615
580
|
title: Ενέργειες
|
|
616
581
|
unblock: Ξεμπλοκάρισμα χρήστη
|
|
617
|
-
unreport: Κατάργηση αναφοράς
|
|
618
582
|
name: Όνομα
|
|
619
583
|
nickname: Ψευδώνυμο
|
|
620
584
|
reason: Αιτία
|
|
@@ -630,11 +594,6 @@ el:
|
|
|
630
594
|
unblocked: Δεν έχει μπλοκαριστεί
|
|
631
595
|
moderations:
|
|
632
596
|
index:
|
|
633
|
-
actions:
|
|
634
|
-
unhide:
|
|
635
|
-
title: Επανεμφάνιση
|
|
636
|
-
unreport:
|
|
637
|
-
title: Κατάργηση αναφοράς
|
|
638
597
|
title: Περιεχόμενο που αναφέρθηκε
|
|
639
598
|
report:
|
|
640
599
|
reasons:
|
|
@@ -724,7 +683,6 @@ el:
|
|
|
724
683
|
index:
|
|
725
684
|
actions: Ενέργειες
|
|
726
685
|
badge: Έμβλημα
|
|
727
|
-
block: Αποκλεισμός χρήστη
|
|
728
686
|
created_at: Δημιουργήθηκε στις
|
|
729
687
|
name: Όνομα
|
|
730
688
|
nickname: Ψευδώνυμο
|
|
@@ -733,9 +691,7 @@ el:
|
|
|
733
691
|
officialized: Επισημοποιήθηκε
|
|
734
692
|
reofficialize: Εκ νέου επισημοποίηση
|
|
735
693
|
reports: Αναφορές
|
|
736
|
-
show_email: Εμφάνιση διεύθυνσης email
|
|
737
694
|
status: Κατάσταση
|
|
738
|
-
unblock: Ξεμπλοκάρισμα χρήστη
|
|
739
695
|
unofficialize: Κατάργηση επισημοποίησης
|
|
740
696
|
new:
|
|
741
697
|
badge: Έμβλημα επισημοποίησης
|
|
@@ -765,17 +721,6 @@ el:
|
|
|
765
721
|
update:
|
|
766
722
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του οργανισμού.
|
|
767
723
|
success: Ο οργανισμός ενημερώθηκε με επιτυχία.
|
|
768
|
-
organization_appearance:
|
|
769
|
-
edit:
|
|
770
|
-
update: Ενημέρωση
|
|
771
|
-
form:
|
|
772
|
-
cta_button_text_help: Μπορείτε να αντικαταστήσετε το κείμενο του κουμπιού «Call To Action» στην αρχική σελίδα για κάθε διαθέσιμη γλώσσα στον οργανισμό σας. Εάν δεν έχει οριστεί, θα χρησιμοποιηθεί η προεπιλεγμένη τιμή. Το κουμπί «Call To Action» εμφανίζεται στην αρχική σελίδα μεταξύ του κειμένου καλωσορίσματος και της περιγραφής.
|
|
773
|
-
homepage_appearance_title: Επεξεργασία εμφάνισης αρχικής σελίδας
|
|
774
|
-
homepage_highlighted_content_banner_title: Επισημασμένο πλαίσιο περιεχομένου
|
|
775
|
-
images:
|
|
776
|
-
layout_appearance_title: Επεξεργασία εμφάνισης διάταξης
|
|
777
|
-
preview: Προεπισκόπηση
|
|
778
|
-
omnipresent_banner_appearance_title: Επεξεργασία διαφημιστικού πλαισίου omnipresent
|
|
779
724
|
participatory_space_private_users:
|
|
780
725
|
create:
|
|
781
726
|
error: Υπήρξε ένα πρόβλημα κατά την προσθήκη ενός ιδιωτικού συμμετέχοντα για αυτόν τον χώρο συμμετοχής.
|
|
@@ -855,14 +800,11 @@ el:
|
|
|
855
800
|
title: Επεξεργασία θέματος
|
|
856
801
|
update: Ενημέρωση θέματος
|
|
857
802
|
new:
|
|
858
|
-
create: Δημιουργία θέματος
|
|
859
803
|
title: Νέο θέμα
|
|
860
804
|
update:
|
|
861
805
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του θέματος.
|
|
862
806
|
success: Το θέμα ενημερώθηκε με επιτυχία
|
|
863
807
|
static_pages:
|
|
864
|
-
actions:
|
|
865
|
-
view: Προβολή δημόσιας σελίδας
|
|
866
808
|
create:
|
|
867
809
|
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία μιας νέας σελίδας.
|
|
868
810
|
success: Η σελίδα δημιουργήθηκε με επιτυχία.
|
|
@@ -877,7 +819,6 @@ el:
|
|
|
877
819
|
index:
|
|
878
820
|
last_notable_change: Τελευταία σημαντική αλλαγή
|
|
879
821
|
new:
|
|
880
|
-
create: Δημιουργία σελίδας
|
|
881
822
|
title: Νέα σελίδα
|
|
882
823
|
topic:
|
|
883
824
|
empty: Δεν υπάρχουν σελίδες κάτω από αυτό το θέμα.
|
|
@@ -893,40 +834,11 @@ el:
|
|
|
893
834
|
dashboard: Πίνακας εργαλείων
|
|
894
835
|
impersonatable_users: Διαχειρίσιμοι συμμετέχοντες
|
|
895
836
|
impersonations: Διαχείριση συμμετεχόντων
|
|
896
|
-
metrics: Μετρικά
|
|
897
837
|
panel: Διαχειριστής
|
|
898
838
|
participants: Συμμετέχοντες
|
|
899
839
|
scope_types: Τύποι πεδίου εφαρμογής
|
|
900
840
|
scopes: Πεδία εφαρμογής
|
|
901
|
-
statistics: Δραστηριότητα
|
|
902
|
-
user_groups: Ομάδες
|
|
903
841
|
users: Διαχειριστές
|
|
904
|
-
user_group:
|
|
905
|
-
csv_verify:
|
|
906
|
-
invalid: Υπήρξε ένα πρόβλημα κατά την ανάγνωση του αρχείου CSV.
|
|
907
|
-
success: Το αρχείο CSV ανέβηκε με επιτυχία, επαληθεύουμε τις ομάδες που ταιριάζουν στα κριτήρια. Αυτό μπορεί να διαρκέσει λίγο.
|
|
908
|
-
reject:
|
|
909
|
-
invalid: Υπήρξε ένα πρόβλημα κατά την απόρριψη αυτής της ομάδας.
|
|
910
|
-
success: Η ομάδα απορρίφθηκε με επιτυχία.
|
|
911
|
-
verify:
|
|
912
|
-
invalid: Υπήρξε ένα πρόβλημα κατά την επαλήθευση αυτής της ομάδας.
|
|
913
|
-
success: Η ομάδα επαληθεύτηκε με επιτυχία.
|
|
914
|
-
user_groups:
|
|
915
|
-
index:
|
|
916
|
-
state:
|
|
917
|
-
pending: Εκκρεμεί
|
|
918
|
-
rejected: Απορρίφθηκε
|
|
919
|
-
verified: Επαληθεύτηκε
|
|
920
|
-
verify_via_csv: Επαλήθευση μέσω CSV
|
|
921
|
-
user_groups_csv_verifications:
|
|
922
|
-
new:
|
|
923
|
-
example_file: 'Παράδειγμα αρχείου:'
|
|
924
|
-
explanation: Πραγματοποιήστε αποστολή του αρχείου CSV. Πρέπει να έχει τις επίσημες διευθύνσεις email των ομάδων του οργανισμού σας στην πρώτη στήλη του αρχείου, χωρίς κεφαλίδες. Θα επικυρωθούν μόνο οι ομάδες που έχουν επιβεβαιώσει τη διεύθυνση email τους και το email εμφανίζεται στο αρχείο CSV.
|
|
925
|
-
explanation_example: |
|
|
926
|
-
acme@example.org
|
|
927
|
-
bubba.gump@example.org
|
|
928
|
-
title: Αποστολή του αρχείου σας CSV
|
|
929
|
-
upload: Αποστολή
|
|
930
842
|
users:
|
|
931
843
|
create:
|
|
932
844
|
error: Υπήρξε ένα πρόβλημα κατά την πρόσκληση αυτού του διαχειριστή.
|
|
@@ -953,16 +865,6 @@ el:
|
|
|
953
865
|
errors:
|
|
954
866
|
impersonate_user:
|
|
955
867
|
reason: Πρέπει να καταχωρήσετε έναν λόγο κατά τη διαχείριση ενός μη διαχειριζόμενου συμμετέχοντα.
|
|
956
|
-
metrics:
|
|
957
|
-
blocked_users:
|
|
958
|
-
object: αποκλεισμένοι χρήστες
|
|
959
|
-
title: Αποκλεισμένοι χρήστες
|
|
960
|
-
reported_users:
|
|
961
|
-
object: αναφερόμενοι χρήστες
|
|
962
|
-
title: Αναφερόμενοι χρήστες
|
|
963
|
-
user_reports:
|
|
964
|
-
object: αναφορές χρηστών
|
|
965
|
-
title: Αναφορές χρηστών
|
|
966
868
|
moderations:
|
|
967
869
|
actions:
|
|
968
870
|
expand: Επέκταση
|
|
@@ -970,8 +872,6 @@ el:
|
|
|
970
872
|
hide: Απόκρυψη
|
|
971
873
|
not_hidden: Δεν είναι κρυφό
|
|
972
874
|
title: Ενέργειες
|
|
973
|
-
unhide: Επανεμφάνιση
|
|
974
|
-
unreport: Κατάργηση αναφοράς
|
|
975
875
|
admin:
|
|
976
876
|
reportable:
|
|
977
877
|
hide:
|