Package net.kyori.adventure.translation
Interface Translator
-
- All Known Subinterfaces:
GlobalTranslator
,TranslationRegistry
public interface Translator
A message translator.To see how to create a
Translator
with aResourceBundle
seeTranslationRegistry.registerAll(Locale, ResourceBundle, boolean)
To bypass vanilla's
MessageFormat
-based translation system, seetranslate(TranslatableComponent, Locale)
After creating a
Translator
you can add it to theGlobalTranslator
to enable automatic translations by the platforms.- Since:
- 4.0.0
- See Also:
TranslationRegistry
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @NotNull Key
name()
A key identifying this translation source.static @Nullable java.util.Locale
parseLocale(@NotNull java.lang.String string)
Parses aLocale
from aString
.@Nullable java.text.MessageFormat
translate(@NotNull java.lang.String key, @NotNull java.util.Locale locale)
Gets a message format from a key and locale.default @Nullable Component
translate(@NotNull TranslatableComponent component, @NotNull java.util.Locale locale)
Gets a translated component from a translatable component and locale.
-
-
-
Method Detail
-
parseLocale
@Nullable static @Nullable java.util.Locale parseLocale(@NotNull @NotNull java.lang.String string)
Parses aLocale
from aString
.- Parameters:
string
- the string- Returns:
- a locale
- Since:
- 4.0.0
-
name
@NotNull @NotNull Key name()
A key identifying this translation source.Intended to be used for display to users.
- Returns:
- an identifier for this translation source
- Since:
- 4.0.0
-
translate
@Nullable @Nullable java.text.MessageFormat translate(@NotNull @NotNull java.lang.String key, @NotNull @NotNull java.util.Locale locale)
Gets a message format from a key and locale.When used in the
GlobalTranslator
, this method is called only iftranslate(TranslatableComponent, Locale)
returnsnull
.- Parameters:
locale
- a localekey
- a translation key- Returns:
- a message format or
null
to skip translation - Since:
- 4.0.0
-
translate
@Nullable default @Nullable Component translate(@NotNull @NotNull TranslatableComponent component, @NotNull @NotNull java.util.Locale locale)
Gets a translated component from a translatable component and locale.- Parameters:
locale
- a localecomponent
- a translatable component- Returns:
- a translated component or
null
to usetranslate(String, Locale)
instead (if available) - Since:
- 4.13.0
-
-