(final String locale)
| 103 | } |
| 104 | |
| 105 | public static void setLocale(final String locale) { |
| 106 | if (ViaProxy.getSaveManager() == null) { |
| 107 | throw new IllegalStateException("ViaProxy is not yet initialized"); |
| 108 | } |
| 109 | |
| 110 | currentLocale = locale; |
| 111 | ViaProxy.getSaveManager().uiSave.put("locale", locale); |
| 112 | ViaProxy.getSaveManager().save(); |
| 113 | } |
| 114 | |
| 115 | public static Collection<String> getAvailableLocales() { |
| 116 | return LOCALES.keySet(); |
no test coverage detected