多言語対応(i18n)
SKILL.md
多言語対応(i18n)実装ガイド
アーキテクチャ
lib/i18n/
├── get-language.ts # ユーザーの言語設定取得
└── page-titles.ts # ページタイトルの翻訳(共通)
app/[module]/
├── page.tsx # モジュールページ
└── translations.ts # モジュール固有の翻訳ファイル
lib/i18n/
├── get-language.ts # ユーザーの言語設定取得
└── page-titles.ts # ページタイトルの翻訳(共通)
app/[module]/
├── page.tsx # モジュールページ
└── translations.ts # モジュール固有の翻訳ファイル