This guide explains how to use Tolgee for localization in your project, specifically how to add new keys and synchronize them with the Tolgee platform.
You will find the following commands in the package.json
(and some more):
"scripts": {
"tolgee:compare": "pnpm tolgee compare --config ./apps/shell/.tolgeerc.js", // Shows new and unused keys
"tolgee:sync": "pnpm tolgee sync --config ./apps/shell/.tolgeerc.js" // Synchronizes keys with Tolgee platform
}
-
Add a New Key: Add a new string in your code:
<div className="font-clash text-pink-300"> {t('newKey', 'This is a new key', { ns: 'common' })} </div>
-
Compare Keys: Run the following command to check for new and unused keys:
pnpm run tolgee:compare
You will see that the new key 'newKey' has been detected.
-
Synchronize Keys: Synchronize the updated keys with the Tolgee platform:
pnpm run tolgee:sync
You can add optional flags here, for example the
--remove-unused
flag. More options here.
- Full Tolgee CLI Documentation: https://docs.tolgee.io/tolgee-cli/
- Syncing Strings: https://docs.tolgee.io/tolgee-cli/extraction/syncing-strings