Custom Text
You can customize the default text displayed in the AuthUI or provide your own translations by editing translation.json. Custom Text allows you to override specific UI strings across different languages.
Follow these steps to change any text in AuthUI.
Go to Portal > Branding > Custom Text
In the text box, add new key–value pairs or modify the values of existing keys in the JSON object.
See default translation.json here for a list of available keys and their default values.
Authgear uses ICU Message Format for message values.

Example: Displaying the Application Client Name in AuthUI
The AuthUI normally displays:
“Sign up or Log in to [Organization Name]”
This helps users understand that they will authenticate using credentials shared across all applications in the organization.
In some cases, however, you may want to display the client application's name instead of the organization name. You can achieve this using a select expression in ICU Message Format:
Variables
AppName: The organization name configured in the Design page.ClientName: The name of the application client, found in the application’s Details page.
With this configuration:
If
ClientNameis not provided, AuthUI will show the organization name (AppName).If
ClientNameis available, it will show the client application's name instead.
Last updated
Was this helpful?