Understand how joins work by interacting and see it visually
git clone git@github.com:spathon/Visual-JOIN.gitcd Visual-JOINnpm installnpm run dev
To add a new language:
-
Create a file under
src/i18n/locales/(seept.tsas an example). -
Implement all required keys from the
Translationstype. -
Register the locale in
src/i18n/types.ts:
export const SUPPORTED_LOCALES = ['en', 'es', 'fr', 'de', 'sv', 'pt'] as const
export const LOCALES = {
...
pt: 'Português',
}