in locales-common/src/main/java/com/spotify/i18n/locales/common/impl/LocalesResolverBaseImpl.java [426:434]
private ULocale getLocaleForFormatting(
final Map<ULocale, Set<ULocale>> supportedLocalesMap,
final String localeToMatch,
final ULocale localeForTranslations) {
return Optional.ofNullable(
getLocaleMatcher(supportedLocalesMap.get(localeForTranslations))
.getBestMatch(localeToMatch))
.orElse(localeForTranslations);
}