//$$ Testing - cania
//$$ java.util.Locale.setDefault(Locale.GERMANY);
Locale currentLocale = java.util.Locale.getDefault();
if (bundle == null) {
try{
bundle = java.util.ResourceBundle.getBundle("com.sun.media.customizer.Props", currentLocale);
} catch(java.util.MissingResourceException e){
e.printStackTrace();
System.out.println("Could not load Resources");
System.exit(0);
}
}
String value = new String("");
try{
value = (String) bundle.getObject(key);
} catch (java.util.MissingResourceException e){
System.out.println("Could not find " + key);}
return value;