<T>
API Reference for the <T> component
Overview
The <T>
component is the main translation method in gt-react
.
The <T>
component supports translating plain text as well as complex JSX structures.
Additionally, it provides features for handling variables, plurals, and context-specific translations.
Buildtime Translation:
<T>
translations occur at buildtime.
This means translation happens before deployment to reduce latency.
Make sure to follow the deployment guide here.
Reference
Props
Prop | Type | Default |
---|---|---|
children | any | - |
id | string | - |
context? | string | undefined |
Descriptions
Prop | Description |
---|---|
children | The content to be translated. This can include plain text or JSX structures. |
id | A unique identifier for the translation string. This ensures consistent translation across your app. |
context | Additional context to refine the translation. Useful for resolving ambiguous phrases. |
Returns
React.JSX.Element|undefined
which contains the rendered translation or fallback content based on the provided configuration.
Behavior
Production
During the CD process, any children inside of a <T>
will be translated before your application is deployed.
This ensures fast load times for all locales, but it can only translate content known at build time.
Once generated, translations are either (1) stored in the CDN or (2) stored in your app's build output, according to your configuration. From there, the translated content is served to your users. If a translation is not found, it will fallback to the originial content.
Make sure to follow the deployment guide here.
Development
During development, the <T>
function will translate content on demand.
This is useful for prototyping what your app will look like in different languages.
Remember to add a Dev API key to your environment to enable this behavior.
While loading, <T>
will return undefined unless languages are similar (en-US vs en-GB), though this behavior can be customized with render settings.
If an error occurs, <T>
will return the original content.
You will see a delay during on-demand translation in development. This delay will not occur during for production builds as everything will already be translated.
Examples
Basic usage
The <T>
component can translate simple strings using an id
and its children.
Remember, the <T>
component must be used inside a <GTProvider>
to access the translations.
With variables
The <T>
component can include variables for dynamic content within translations.
With plurals
The <T>
component also supports pluralization using the <Plural>
component.
Limitations
The <T>
component does not translate content that is dynamic.
The <T>
function translates its descendants.
Note: A good rule of thumb is that any content that is literally between the two <T>
in the file will be translated.
You can always add another <T>
to translate the content that is not being translated, though nesting <T>
components is not recommended.
Notes
- The
<T>
component is designed for translating content in your application. It is the primary method for localization ingt-react
. - Use the
<T>
component to translate plain text or JSX structures, including variables and pluralization. - Ensure the
<T>
component is wrapped in a<GTProvider>
to access the translation context.
Next steps
- Look into more advanced features like on-demand translation, variables, context, and handling plurals, refer to the
<T>
Design Patterns documentation. - For translating strings, look into
useGT()
. - Checkout using variable components and using branching components for more advanced translation patterns.