/** * Get a localized string. * * @param key the localization key * @param arguments arguments for formatting strings * @return localized */ public static String get(String key, Object... arguments) { // Static method wrapper return INSTANCE.getFormatted(key, arguments); }
/** * Get a localized string. * * @param key the localization key * @return the localized string */ public static String get(String key) { // Static method wrapper return INSTANCE.getFormatted(key); }