Get translation from bundles.
(String key)
| 200 | |
| 201 | /** Get translation from bundles. */ |
| 202 | static public String text(String key) { |
| 203 | String value = get(key); |
| 204 | if (value == null) { |
| 205 | // MissingResourceException and null values |
| 206 | return key; |
| 207 | } |
| 208 | return value; |
| 209 | } |
| 210 | |
| 211 | |
| 212 | static public String interpolate(String key, Object... arguments) { |
no test coverage detected