trypost/lang/ja/common.php
Paulo Castellano d8149ef058
Remove the automations module (#333)
* 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
2026-09-05 11:03:23 -03:00

68 lines
2.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' => '推奨: 正方形の画像、最大 2 MB。',
'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' => 'クリップボードへのコピーに失敗しました',
],
];