Do not force lower case after colon

This commit is contained in:
sonora 2016-11-29 07:56:03 +01:00
parent a9dd47b7e3
commit 9d39ff6153

View file

@ -380,7 +380,7 @@ public class AmenityMenuBuilder extends MenuBuilder {
} }
if (!pType.isText()) { if (!pType.isText()) {
if (!Algorithms.isEmpty(pType.getPoiAdditionalCategory())) { if (!Algorithms.isEmpty(pType.getPoiAdditionalCategory())) {
vl = pType.getPoiAdditionalCategoryTranslation() + ": " + pType.getTranslation().toLowerCase(); vl = pType.getPoiAdditionalCategoryTranslation() + ": " + pType.getTranslation();
} else { } else {
vl = pType.getTranslation(); vl = pType.getTranslation();
} }