return null;
}
public static String fetchLabelForLanguage(WGAResourceBundleManager manager, String container, String file, String key, Locale locale) throws WGAPIException, IOException {
String label = null;
WGAResourceBundle bundle = manager.getBundle(container, file, locale);
if (bundle != null) {
try {
label = bundle.getString(key);
}
catch (MissingResourceException e) {
}
}