Config

Translator

Defines display behavior during translation.


translator

defineIntorConfig({
  translator: {...},
});

loadingMessage

The display message used when translation messages is not yet available.

Defaults to the translation key when not specified.

defineIntorConfig({
  translator: {
    loadingMessage: "Loading...",
  },
});

missingMessage

The display message used when a translation key does not exist or cannot be resolved.

Defaults to the translation key when not specified.

defineIntorConfig({
  translator: {
    missingMessage: "Translation not found",
  },
});