Starting from v0.10.0-beta1, ChatterUI will be accepting localization PRs.
Currently untranslated strings
- contents of
lib/*, mostly toasts and errors
Currently supported languages:
Adding Your Translations:
- use the
dev branch of ChatterUI
- use
i18n/locales/en.json for guidance on strings used in the app
- add your localization json to
i18n/locales/[your language].json
- import your localization file to
i18n/i18n.ts:
import your_language from './locales/your_language.json'
export const supportedLanguages: Language[] = [
...
{
id: 'xx', // use the relevant IETF language tag https://en.wikipedia.org/wiki/IETF_language_tag
translation: your_language,
label: 'Your Language',
},
]
- it is recommended to use the vscode i18n-ally extension to scan the app for missing localizations
- be sure to name your locale after the corresponding IETF language tag
Starting from v0.10.0-beta1, ChatterUI will be accepting localization PRs.
Currently untranslated strings
lib/*, mostly toasts and errorsCurrently supported languages:
Adding Your Translations:
devbranch of ChatterUIi18n/locales/en.jsonfor guidance on strings used in the appi18n/locales/[your language].jsoni18n/i18n.ts: