* Localize calendar date pickers to the active UI locale. Pass the Inertia locale into Reka calendars, translate a11y labels, and use dayjs LL/LLL for DatePicker display text. Co-authored-by: Cursor <cursoragent@cursor.com> * Localize remaining dayjs date displays across the UI. Route list/calendar/preview timestamps through localized LL/LLL helpers so formats follow the active UI locale instead of English or Portuguese-locked patterns. Co-authored-by: Cursor <cursoragent@cursor.com> * Use scheduled-or-now timestamps in platform previews. Drive preview labels from the post schedule when set, localize Discord without dayjs calendar(), and expose a single formatPreviewPostedAt helper. Co-authored-by: Cursor <cursoragent@cursor.com> * Fix preview schedule wiring and Discord/Facebook timestamp labels. Restore hasPickedTime from any saved scheduled_at, keep time on non-today Discord labels, and use a localized just-now fallback for unschedled Facebook previews. Co-authored-by: Cursor <cursoragent@cursor.com> * Fix API key expiry day shift and tighten calendar range titles. Format date-only expiry in UTC calendar days, and use compact dayjs titles for calendar day/week headers. Co-authored-by: Cursor <cursoragent@cursor.com> * Replace frontend date source greps with Inertia API key assertions. Drop the Vue/TS file scanner and assert expiry calendar days through ApiKeyController props instead. Co-authored-by: Cursor <cursoragent@cursor.com> * Localize calendar week titles with day-first dayjs formats. Avoid English month-day order in week headers and chart axis labels so locales like pt-BR keep natural day-first dates. Co-authored-by: Cursor <cursoragent@cursor.com> * Split preview timestamp formatting into named platform helpers. Replace the style-switch formatPreviewPostedAt with clear per-platform helpers so call sites read as formatDiscordPreview / formatXPreview / etc. Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
70 lines
2.2 KiB
PHP
70 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
'back' => '戻る',
|
|
|
|
'beta' => 'ベータ',
|
|
|
|
'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' => 'クリップボードへのコピーに失敗しました',
|
|
],
|
|
];
|