If you want to upload it to servers already you can just run after:
Copy
npx locale-sync upload
This will send your translations to the repository specified in your config file, upserting languages and strings from your file.Somewhere in your app (we recommend inside main function) you’ll need to setup the sdk, you can do so by adding:
Copy
const translator = new Translator("en", "your-api-token", "your-repository-id");translator.fetch();
You just need to call .fetch() if you want to use the over-the-air feature, otherwise you can just use raw translator object