Fix locale parsing issues.

Fixes #1463
This commit is contained in:
GJ
2013-09-17 14:03:00 -04:00
parent 4a0e1ba444
commit e865acd871
14 changed files with 192 additions and 192 deletions

View File

@ -46,7 +46,7 @@ public final class LocaleLoader {
}
private static String getString(String key, ResourceBundle bundle, Object... messageArguments) throws MissingResourceException {
return formatString(bundle.getString(key), messageArguments);
return formatString(bundle.getString(key).replace("\'", "''"), messageArguments);
}
public static String formatString(String string, Object... messageArguments) {