* adding Brazilian Portuguese translation; added a repository on Docker Hub to use in Umbrel — version ptbr jovaniojunior/kan-ptbr:latest * add notes to changelog.md * adjust pt-BR date format in date-fns * improve Portuguese integration across code functions and other small pt-BR tweaks * chore: gen missing translations --------- Co-authored-by: Henry <henry_ball@hotmail.co.uk>
16 lines
339 B
TypeScript
16 lines
339 B
TypeScript
import type { LinguiConfig } from "@lingui/conf";
|
|
|
|
const config: LinguiConfig = {
|
|
locales: ["en", "fr", "de", "es", "it", "nl", "ru", "pl","ptbr"],
|
|
sourceLocale: "en",
|
|
catalogs: [
|
|
{
|
|
path: "src/locales/{locale}/messages",
|
|
include: ["src"],
|
|
exclude: ["**/node_modules/**"],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|