* 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 KiB
PHP
68 lines
2 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' => '권장: 정사각형 이미지, 최대 2MB.',
|
|
'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' => '클립보드에 복사하지 못했습니다',
|
|
],
|
|
];
|