* 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.3 KiB
PHP
68 lines
2.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'back' => 'رجوع',
|
|
|
|
'confirm_modal' => [
|
|
'cannot_be_undone' => 'لا يمكن التراجع عن هذا الإجراء.',
|
|
'type' => 'اكتب',
|
|
'to_confirm' => 'للتأكيد.',
|
|
'copy_to_clipboard' => 'نسخ إلى الحافظة',
|
|
'delete_keyword' => 'حذف',
|
|
],
|
|
|
|
'photo_upload' => [
|
|
'upload' => 'رفع',
|
|
'uploading' => 'جارٍ الرفع...',
|
|
'remove' => 'إزالة الصورة',
|
|
'hint' => 'موصى به: صورة مربعة، بحد أقصى 2 ميغابايت.',
|
|
'crop_title' => 'قص الصورة',
|
|
'crop_description' => 'حدّد المنطقة التي تريد الاحتفاظ بها.',
|
|
'crop_hint' => 'اسحب للتحريك، أو زاوية لتغيير الحجم.',
|
|
'crop_save' => 'حفظ',
|
|
'crop_cancel' => 'إلغاء',
|
|
'crop_error' => 'تعذّر تحميل هذه الصورة. جرّب ملفًا آخر.',
|
|
],
|
|
|
|
'timezone' => [
|
|
'select' => 'اختر المنطقة الزمنية',
|
|
'search' => 'البحث عن منطقة زمنية...',
|
|
'empty' => 'لم يتم العثور على منطقة زمنية',
|
|
],
|
|
|
|
'just_now' => 'الآن',
|
|
|
|
'date_picker' => [
|
|
'label' => 'منتقي التاريخ',
|
|
'select' => 'اختر التاريخ',
|
|
],
|
|
|
|
'date_range_picker' => [
|
|
'placeholder' => 'اختر نطاقًا زمنيًا',
|
|
'today' => 'اليوم',
|
|
'yesterday' => 'أمس',
|
|
'last_7_days' => 'آخر 7 أيام',
|
|
'last_30_days' => 'آخر 30 يومًا',
|
|
'last_3_months' => 'آخر 3 أشهر',
|
|
'last_6_months' => 'آخر 6 أشهر',
|
|
'last_12_months' => 'آخر 12 شهرًا',
|
|
'this_month' => 'هذا الشهر',
|
|
'last_month' => 'الشهر الماضي',
|
|
'year_to_date' => 'منذ بداية العام',
|
|
'last_year' => 'العام الماضي',
|
|
],
|
|
|
|
'cancel' => 'إلغاء',
|
|
'clear' => 'مسح',
|
|
'close' => 'إغلاق',
|
|
'loading_more' => 'جارٍ تحميل المزيد...',
|
|
|
|
'actions' => [
|
|
'copy' => 'نسخ',
|
|
'copied' => 'تم النسخ',
|
|
'copy_failed' => 'فشل النسخ إلى الحافظة',
|
|
],
|
|
];
|