doc / ch.tutteli.atrium.reporting.translating / UsingDefaultTranslator

UsingDefaultTranslator

class UsingDefaultTranslator : ArgumentsSupportingTranslator (source)

This translator does not translate but uses Translatable.getDefault instead and uses getDefaultLocale as primaryLocale if not defined differently via constructor parameter.

Constructors

<init>

UsingDefaultTranslator(primaryLocale: Locale = getDefaultLocale())

This translator does not translate but uses Translatable.getDefault instead.

Inherited Properties

fallbackLocales

val fallbackLocales: List<Locale>

Used in case a translation for a given Translatable is not defined for primaryLocale or one of its secondary alternatives -- the fallback Locales are used in the given order.

primaryLocale

val primaryLocale: Locale

The Locale to which the translator translates per default as well as the Locale which will be used in String.format, which in turn is used to substitute the placeholders in the resulting translation of TranslatableWithArgs.translatable with the TranslatableWithArgs.arguments.

Functions

translateWithoutArgs

fun translateWithoutArgs(translatable: Translatable): String

Do not call this method in case you want to translate a TranslatableWithArgs use translate in this case.

Inherited Functions

translate

fun translate(translatable: Translatable): String

Returns the translation of the given translatable or its getDefault in case there is not a translation defined for it.