format(a, b) is equivalent to String.format(translate(a), b). Args: translationKey, params...
(String translateKey, Object... parameters)
| 15 | * format(a, b) is equivalent to String.format(translate(a), b). Args: translationKey, params... |
| 16 | */ |
| 17 | public static String format(String translateKey, Object... parameters) |
| 18 | { |
| 19 | return i18nLocale.formatMessage(translateKey, parameters); |
| 20 | } |
| 21 | |
| 22 | public static Map getLocaleProperties() |
| 23 | { |
no test coverage detected