2023-01-11 09:39:39 +03:00
|
|
|
# i18n
|
|
|
|
|
|
|
|
## Usages
|
|
|
|
|
|
|
|
- Update missing translations into the base resources, a.k.a the `src/resources/en.json`
|
|
|
|
- Replace literal text with translation keys
|
|
|
|
|
|
|
|
```tsx
|
2023-05-04 08:35:09 +03:00
|
|
|
import { useAFFiNEI18N } from '@affine/i18n/hooks';
|
2023-09-02 21:18:48 +03:00
|
|
|
import { LOCALES, useI18N } from '@affine/i18n';
|
2023-01-11 09:39:39 +03:00
|
|
|
// src/resources/en.json
|
|
|
|
// {
|
|
|
|
// 'Text': 'some text',
|
|
|
|
// 'Switch to language': 'Switch to {{language}}', // <- you can interpolation by curly brackets
|
|
|
|
// };
|
|
|
|
|
|
|
|
const App = () => {
|
2023-05-04 08:35:09 +03:00
|
|
|
const t = useAFFiNEI18N();
|
2023-09-02 21:18:48 +03:00
|
|
|
const i18n = useI18N();
|
2023-01-11 09:39:39 +03:00
|
|
|
const changeLanguage = (language: string) => {
|
|
|
|
i18n.changeLanguage(language);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
2023-06-29 11:20:25 +03:00
|
|
|
<div>{t['Workspace Settings']()}</div>
|
2023-09-02 21:18:48 +03:00
|
|
|
<>
|
|
|
|
{LOCALES.map(option => {
|
|
|
|
return (
|
|
|
|
<button
|
|
|
|
key={option.name}
|
|
|
|
onClick={() => {
|
|
|
|
changeLanguage(option.tag);
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{option.originalName}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</>
|
2023-01-11 09:39:39 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
2023-01-12 09:29:18 +03:00
|
|
|
## How the i18n workflow works?
|
|
|
|
|
|
|
|
- When the `src/resources/en.json`(base language) updated and merged to the develop branch, will trigger the `languages-sync` action.
|
|
|
|
- The `languages-sync` action will check the base language and add missing translations to the Tolgee platform.
|
|
|
|
- This way, partners from the community can update the translations.
|
|
|
|
|
2023-01-11 09:39:39 +03:00
|
|
|
## How to sync translations manually
|
|
|
|
|
|
|
|
- Set token as environment variable
|
|
|
|
|
|
|
|
```shell
|
|
|
|
export TOLGEE_API_KEY=tgpak_XXXXXXX
|
|
|
|
```
|
|
|
|
|
|
|
|
- Run the `sync-languages:check` to check all languages
|
2023-01-12 09:29:18 +03:00
|
|
|
- Run the `sync-languages` script to add new keys to the Tolgee platform
|
|
|
|
- Run the `download-resources` script to download the latest full-translation translation resources from the Tolgee platform
|
2023-01-11 09:39:39 +03:00
|
|
|
|
|
|
|
## References
|
|
|
|
|
|
|
|
- [AFFiNE | Tolgee](https://i18n.affine.pro/)
|
|
|
|
- [Tolgee Documentation](https://tolgee.io/docs/)
|
|
|
|
- [i18next](https://www.i18next.com/)
|
|
|
|
- [react-i18next](https://react.i18next.com/)
|