Add documentation on languages

This commit is contained in:
mrjvs 2024-01-03 20:14:18 +01:00
parent aca7827a15
commit 97bd63ca39
2 changed files with 10 additions and 1 deletions

9
src/assets/README.md Normal file
View File

@ -0,0 +1,9 @@
# About the languages
Locales are difficult, here is some guidance.
## Process on adding new languages
1. Use weblate to add translations, see contributing guidelines.
2. Add your language to `@/assets/languages.ts`. Must be iso format. For joke languages, use any format.
3. If you language doesn't have a region specified. Add a default region in `@/utils/language.ts` at `defaultLanguageCodes`
4. If the flag in the language dropdown doesn't match the correct one. Add a default country in `@/utils/language.ts` at `countryPriority`.

View File

@ -46,7 +46,7 @@ export const locales = {
et,
tok,
hi,
pt: ptbr,
"pt-BR": ptbr,
uk,
};
export type Locales = keyof typeof locales;