app.json Reference: i18n

The i18n object allows per-tool localization overrides.

Structure

app.json
"i18n": {
  "en": {
    "title": "Upload",
    "uploadExplanation": "Upload files.",
    "transformationErrors": {
      "NO_FEATURE_WRITTEN": "The process did not return any output."
    },
    "fme_published_parameter": {
      "opt_requesteremail": "Enter Email Address"
    }
  },
  "de": {
    "title": "Upload"
  }
}
Property Type Required Default Notes

i18n.<lang>.title

String

No

-

Tool title override.

i18n.<lang>.uploadExplanation etc.

String

No

-

Dialog text overrides.

i18n.<lang>.transformationErrors

Object

No

-

Maps backend error keys to localized user messages.

i18n.<lang>.fme_published_parameter

Object

No

-

Overrides labels of Published Parameters by parameter name.