doc / ch.tutteli.atrium.domain.builders.reporting / TranslatorOption

TranslatorOption

interface TranslatorOption (source)

Provides options to create a Translator.

Properties

localeOrderDecider

abstract val localeOrderDecider: LocaleOrderDecider

The previously chosen LocaleOrderDecider.

translationSupplier

abstract val translationSupplier: TranslationSupplier

The previously chosen TranslationSupplier.

Functions

withDefaultTranslator

abstract fun withDefaultTranslator(primaryLocale: Locale, vararg fallbackLocales: Locale): ObjectFormatterOption

Uses CoreFactory.newTranslator as Translator where the specified translationSupplier is used to retrieve translations, the specified localeOrderDecider to determine candidate Locales and primaryLocale is used as primary Locale and the optional fallbackLocales as fallback Locales.

withTranslator

abstract fun withTranslator(factory: (TranslationSupplier, LocaleOrderDecider) -> Translator): ObjectFormatterOption

Uses the given factory to build a Translator.