FacesContext context = FacesContext.getCurrentInstance();
localizedList.add(new SelectItem ("",""));
for (int i = 0; i < propertyList.size(); i++) {
PropertyVO propertyVO = (PropertyVO)propertyList.get(i);
localizedList.add(new SelectItem (propertyVO.getPropertyKey(),
LocalizedString.getLocalizedString(context, prefix + propertyVO.getPropertyKey())));
}
return localizedList;
}