* Remove the automations module Drops the visual workflow builder end to end: actions, node runners, commands, jobs, models, observers, policy, resources, requests, routes, broadcast channel, scheduler entries, Horizon supervisor, Vue pages and components, canvas undo/redo history, CodeEditor, translations, factories and tests. A new migration rewrites posts.created_via = 'automation' to 'web' and drops the five automation tables. The CreatedVia::Automation enum case is removed. The 2026-08-21 social-account identity migration now skips its automation node repointing when the automations table no longer exists, so it stays re-runnable after the drop. Orphaned dependencies removed: simplepie/simplepie, @vue-flow/*, codemirror and @codemirror/*. * Drop the orphaned common.beta translation key * Remove automation leftovers: ResolvableUrl rule, feed fixtures, useShortcut, nav badge * Drop the unused chart wrapper and @unovis packages * Address review: keep the shipped migration untouched, drop the dead previewOnly chain - Restore 2026_08_21 migration to exactly what production ran; the rehearsal test now recreates the automations table it expects instead. - Mark the drop migration's down() irreversible like its siblings. - Simplify DropAutomationTablesMigrationTest to the sibling shape. - Remove previewOnly / aiGenerateVariants: the only caller that set the prop was the deleted automation Generate node. - Run pint over lang/*/common.php after the beta key removal. * Exercise the drop migration against the real automation tables and their FKs * Drop DuplicateIdentityRehearsalTest: it re-ran a frozen migration that reads the removed automations table
68 lines
2.1 KiB
PHP
68 lines
2.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'back' => 'Zurück',
|
|
|
|
'confirm_modal' => [
|
|
'cannot_be_undone' => 'Dies kann nicht rückgängig gemacht werden.',
|
|
'type' => 'Gib',
|
|
'to_confirm' => 'zur Bestätigung ein.',
|
|
'copy_to_clipboard' => 'In die Zwischenablage kopieren',
|
|
'delete_keyword' => 'löschen',
|
|
],
|
|
|
|
'photo_upload' => [
|
|
'upload' => 'Hochladen',
|
|
'uploading' => 'Wird hochgeladen...',
|
|
'remove' => 'Foto entfernen',
|
|
'hint' => 'Empfohlen: quadratisches Bild, max. 2 MB.',
|
|
'crop_title' => 'Bild zuschneiden',
|
|
'crop_description' => 'Wählen Sie den Bereich aus, den Sie behalten möchten.',
|
|
'crop_hint' => 'Zum Verschieben ziehen oder an einer Ecke die Größe ändern.',
|
|
'crop_save' => 'Speichern',
|
|
'crop_cancel' => 'Abbrechen',
|
|
'crop_error' => 'Dieses Bild konnte nicht geladen werden. Versuchen Sie eine andere Datei.',
|
|
],
|
|
|
|
'timezone' => [
|
|
'select' => 'Zeitzone auswählen',
|
|
'search' => 'Zeitzone suchen...',
|
|
'empty' => 'Keine Zeitzone gefunden',
|
|
],
|
|
|
|
'just_now' => 'Gerade eben',
|
|
|
|
'date_picker' => [
|
|
'label' => 'Datumsauswahl',
|
|
'select' => 'Datum auswählen',
|
|
],
|
|
|
|
'date_range_picker' => [
|
|
'placeholder' => 'Zeitraum wählen',
|
|
'today' => 'Heute',
|
|
'yesterday' => 'Gestern',
|
|
'last_7_days' => 'Letzte 7 Tage',
|
|
'last_30_days' => 'Letzte 30 Tage',
|
|
'last_3_months' => 'Letzte 3 Monate',
|
|
'last_6_months' => 'Letzte 6 Monate',
|
|
'last_12_months' => 'Letzte 12 Monate',
|
|
'this_month' => 'Dieser Monat',
|
|
'last_month' => 'Letzter Monat',
|
|
'year_to_date' => 'Seit Jahresbeginn',
|
|
'last_year' => 'Letztes Jahr',
|
|
],
|
|
|
|
'cancel' => 'Abbrechen',
|
|
'clear' => 'Zurücksetzen',
|
|
'close' => 'Schließen',
|
|
'loading_more' => 'Weitere werden geladen...',
|
|
|
|
'actions' => [
|
|
'copy' => 'Kopieren',
|
|
'copied' => 'Kopiert',
|
|
'copy_failed' => 'Kopieren in die Zwischenablage fehlgeschlagen',
|
|
],
|
|
];
|