Add Brazilian Portuguese (pt-BR) translation

Adds public/locales/pt-BR/ with complete translations for common,
chores, and settings namespaces. Registers pt-BR in the
AVAILABLE_LANGUAGES picker in LocalizationContext.jsx.

Tone: informal 'você' form, natural Brazilian Portuguese.
This commit is contained in:
Felipe Camargo
2026-04-13 07:49:34 -07:00
parent c6865f48f5
commit 016a613fd5
4 changed files with 283 additions and 0 deletions

View File

@@ -25,6 +25,7 @@ export const AVAILABLE_LANGUAGES = [
{ code: 'es', name: 'Spanish', nativeName: 'Español' },
{ code: 'fr', name: 'French', nativeName: 'Français' },
{ code: 'nl', name: 'Dutch', nativeName: 'Nederlands' },
{ code: 'pt-BR', name: 'Portuguese (Brazil)', nativeName: 'Português (Brasil)' },
]
export const LocalizationProvider = ({ children }) => {