fix localization issues (#148)

This commit is contained in:
Athou
2013-05-24 12:34:04 +02:00
parent 8039915bcf
commit f5951f178c
6 changed files with 9 additions and 9 deletions

View File

@@ -44,7 +44,7 @@ public class HTMLConcat {
while (m.find()) {
String var = m.group(1);
Object replacement = props.get(var);
m.appendReplacement(sb, replacement == null ? var : replacement.toString().split("#")[0].trim());
m.appendReplacement(sb, replacement == null ? var : replacement.toString().split("#")[0]);
}
m.appendTail(sb);
return sb.toString();