AFFiNE/packages/frontend/i18n
devin-ai-integration e100d252b2
fix(core): add null checks for timeout refs and event listeners for React 19 compatibility (#9116)
## Description
- Add null checks before clearTimeout calls in colorful-fallback.tsx, edgeless.dialog.tsx, and local.dialog.tsx
- Fix event listener cleanup in unfolding.tsx
- Update tsconfig.jsx to use react-jsx transform

## Testing
- [x] Verified type safety improvements for React 19 compatibility
- [x] Ensured proper cleanup of event listeners and timeouts
- [x] Confirmed no unintended side effects from the changes

Link to Devin run: https://app.devin.ai/sessions/2e790f3ea0d84402837ec6c3c6f83e4c
2024-12-12 09:43:42 +00:00
..
src fix(core): wrong billing information display (#9117) 2024-12-12 06:16:31 +00:00
.gitignore refactor(i18n): lazy load languages (#8456) 2024-10-10 09:03:06 +00:00
.i18n-codegen.json refactor(i18n): lazy load languages (#8456) 2024-10-10 09:03:06 +00:00
build.mjs refactor(i18n): lazy load languages (#8456) 2024-10-10 09:03:06 +00:00
cleanup.mjs chore(i18n): cleanup i18n file (#8318) 2024-09-20 06:25:17 +00:00
crowdin.yml feat: sync i18n with crowdin (#8293) 2024-09-19 05:30:18 +00:00
package.json fix(core): add null checks for timeout refs and event listeners for React 19 compatibility (#9116) 2024-12-12 09:43:42 +00:00
project.json refactor(infra): directory structure (#4615) 2023-10-18 15:30:08 +00:00
README.md refactor(i18n): new hook api (#7273) 2024-06-20 02:19:41 +00:00
tsconfig.json refactor(i18n): lazy load languages (#8456) 2024-10-10 09:03:06 +00:00
tsconfig.resources.json refactor(i18n): lazy load languages (#8456) 2024-10-10 09:03:06 +00:00

i18n

Usages

  • Update missing translations into the base resources, a.k.a the src/resources/en.json
  • Replace literal text with translation keys
import { useI18n, LOCALES } from '@affine/i18n';
// src/resources/en.json
// {
//     'Text': 'some text',
//     'Switch to language': 'Switch to {{language}}', // <- you can interpolation by curly brackets
// };

const App = () => {
  const i18n = useI18n();
  const changeLanguage = (language: string) => {
    i18n.changeLanguage(language);
  };

  return (
    <div>
      <div>{i18n['Workspace Settings']()}</div>
      <>
        {LOCALES.map(option => {
          return (
            <button
              key={option.name}
              onClick={() => {
                changeLanguage(option.tag);
              }}
            >
              {option.originalName}
            </button>
          );
        })}
      </>
    </div>
  );
};

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.

How to sync translations manually

  • Set token as environment variable
export TOLGEE_API_KEY=tgpak_XXXXXXX
  • Run the sync-languages:check to check all languages
  • 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

References