feat(i18n): #352 다국어 뼈대 ko/en/ja/es
- next-intl 5.x 도입
- src/i18n/config.ts: LOCALES 상수, detectBrowserLocale, LOCALE_LABELS(국기/네이티브명)
- src/i18n/LocaleProvider.tsx: NextIntlClientProvider wrap + localStorage tasteby_locale 저장
- src/messages/{ko,en,ja,es}.json: 초기 30개 키 (header/actions/filter/restaurant/review 5 카테고리)
- src/components/LanguageSwitcher.tsx: 헤더용 드롭다운 (국기 + native, ARIA listbox, 44px 터치)
- providers.tsx: LocaleProvider로 AuthProvider 감싸기
- page.tsx 헤더에 LanguageSwitcher 배치
설계서: docs/design/352-i18n-skeleton/README.md (Approved)
언어 선택 근거:
- ko: 기본
- en: 글로벌 1순위
- ja: 일본 사용자 + 한국 음식 관광
- es: 5억 화자, 라틴아메리카 + 스페인 확장
미번역 키는 ko fallback. URL 라우팅(/en/)/SEO meta/사용자 콘텐츠 번역은 후속.
Refs: #352
This commit is contained in:
41
frontend/src/messages/ko.json
Normal file
41
frontend/src/messages/ko.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"header": {
|
||||
"search": "검색",
|
||||
"login": "로그인",
|
||||
"logout": "로그아웃",
|
||||
"menu": "메뉴",
|
||||
"myReviews": "내 리뷰",
|
||||
"favorites": "즐겨찾기"
|
||||
},
|
||||
"actions": {
|
||||
"save": "저장",
|
||||
"cancel": "취소",
|
||||
"delete": "삭제",
|
||||
"edit": "수정",
|
||||
"confirm": "확인",
|
||||
"close": "닫기",
|
||||
"loading": "로딩 중...",
|
||||
"submit": "제출"
|
||||
},
|
||||
"filter": {
|
||||
"title": "필터",
|
||||
"cuisine": "음식 종류",
|
||||
"price": "가격대",
|
||||
"region": "지역",
|
||||
"channel": "채널",
|
||||
"reset": "초기화"
|
||||
},
|
||||
"restaurant": {
|
||||
"rating": "평점",
|
||||
"address": "주소",
|
||||
"phone": "전화",
|
||||
"website": "웹사이트",
|
||||
"closed": "폐업",
|
||||
"tempClosed": "임시휴업"
|
||||
},
|
||||
"review": {
|
||||
"title": "리뷰",
|
||||
"write": "리뷰 작성",
|
||||
"noReviews": "아직 리뷰가 없습니다"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user