Generate Source Template

How to generate a source template for your project

Usage

npx gtx-cli generate

Overview

The gtx-cli generate command generates a source file for your project for your default locale and supported locales.

The generated files are compatible with the gt-next and gt-react libraries, and are the same format used by the translate command.

After generating the source files, you can use local translations to serve the translations to your users.

This command is only useful if you are using your own translation service.

If you are using the General Translation API, you should use the translate command instead.

Parameters

ParameterDescriptionTypeOptionalDefault
--src <paths>Specify the source directory(s) to scan[string]true./src && ./app && ./pages && ./components
--dictionary <path>Specify a path to the dictionary filestringtrue
--tsconfig, --jsconfig <path>Specify a path to the TS or JS config filestringtrue
--inlineInclude inline <T> tags in addition to the dictionarybooleantruetrue
--default-locale <locale>The source locale for the projectstringtrueen
--ignore-errorsIgnore errors and force translation for valid contentflagtruefalse

Setup

First, run the gtx-cli init command to configure your project.

npx gtx-cli init

This will create a gt.config.json file in the root of your project.

Then, run the gtx-cli generate command to generate template files for your project.

npx gtx-cli generate

Configuration file

Read more about the gt.config.json file here.

On this page