Overriding NLS
Similar to the configuration system above, the content of the NLS files can be overridden via JSON defined under the “nls” entry in the config.jsonc file. The path beneath this entry can be determined by the folder structure and the JSON content of the file. The example given in exampleCustomConfig.jsonc is the authority tool. The authority NLS file is found at:
dist/baseconfig/product/flex/nls/client/tools/authority.jsonc
and it is overridden with this path:
"nls": {
"client": {
"tools": {
"authority": {
"columns": {
"zoneName": "Name"
}
...
 
Refer to the product configuration files to see what strings there are and the path to override them. In the example above, the columns are defined like this:
{
"columns": {
"zoneName": "Zone Name",
"user": "Users",
"ruleset": "Rule Set",
"omaSelfAssign": "OMA Self Assign",
"suppress_callbacks": "Callbacks",
},
...