* 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' => 'Retour',
|
||
|
||
'confirm_modal' => [
|
||
'cannot_be_undone' => 'Cette action est irréversible.',
|
||
'type' => 'Saisissez',
|
||
'to_confirm' => 'pour confirmer.',
|
||
'copy_to_clipboard' => 'Copier dans le presse-papiers',
|
||
'delete_keyword' => 'supprimer',
|
||
],
|
||
|
||
'photo_upload' => [
|
||
'upload' => 'Importer',
|
||
'uploading' => 'Import en cours...',
|
||
'remove' => 'Supprimer la photo',
|
||
'hint' => 'Recommandé : image carrée, 2 Mo maximum.',
|
||
'crop_title' => 'Recadrer l\'image',
|
||
'crop_description' => 'Sélectionnez la zone à conserver.',
|
||
'crop_hint' => 'Faites glisser pour déplacer, ou un coin pour redimensionner.',
|
||
'crop_save' => 'Enregistrer',
|
||
'crop_cancel' => 'Annuler',
|
||
'crop_error' => 'Impossible de charger cette image. Essayez un autre fichier.',
|
||
],
|
||
|
||
'timezone' => [
|
||
'select' => 'Sélectionner un fuseau horaire',
|
||
'search' => 'Rechercher un fuseau horaire...',
|
||
'empty' => 'Aucun fuseau horaire trouvé',
|
||
],
|
||
|
||
'just_now' => 'À l’instant',
|
||
|
||
'date_picker' => [
|
||
'label' => 'Sélecteur de date',
|
||
'select' => 'Sélectionner une date',
|
||
],
|
||
|
||
'date_range_picker' => [
|
||
'placeholder' => 'Choisir une plage de dates',
|
||
'today' => 'Aujourd\'hui',
|
||
'yesterday' => 'Hier',
|
||
'last_7_days' => '7 derniers jours',
|
||
'last_30_days' => '30 derniers jours',
|
||
'last_3_months' => '3 derniers mois',
|
||
'last_6_months' => '6 derniers mois',
|
||
'last_12_months' => '12 derniers mois',
|
||
'this_month' => 'Ce mois-ci',
|
||
'last_month' => 'Le mois dernier',
|
||
'year_to_date' => 'Depuis le début de l\'année',
|
||
'last_year' => 'L\'année dernière',
|
||
],
|
||
|
||
'cancel' => 'Annuler',
|
||
'clear' => 'Effacer',
|
||
'close' => 'Fermer',
|
||
'loading_more' => 'Chargement...',
|
||
|
||
'actions' => [
|
||
'copy' => 'Copier',
|
||
'copied' => 'Copié',
|
||
'copy_failed' => 'Échec de la copie dans le presse-papiers',
|
||
],
|
||
];
|