feat: add Japanese (ja) localization

- Add ja translations for common, settings, and chores namespaces
- Register ja in AVAILABLE_LANGUAGES so it appears in the language picker
- Import moment/locale/ja so date and relative-time formatting uses Japanese
This commit is contained in:
tanomitsu
2026-05-26 15:28:29 +09:00
committed by Mo Tarbin
parent 7889c32be0
commit 2fd6d5cd2e
5 changed files with 284 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ export const AVAILABLE_LANGUAGES = [
{ code: 'fr', name: 'French', nativeName: 'Français' },
{ code: 'nl', name: 'Dutch', nativeName: 'Nederlands' },
{ code: 'pt', name: 'Portuguese (Brazil)', nativeName: 'Português (Brasil)' },
{ code: 'ja', name: 'Japanese', nativeName: '日本語' },
]
export const LocalizationProvider = ({ children }) => {