Fix [2856097] The "Enter new Location/Address" countries are not translate / fix for zkwebui

Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2856097
This commit is contained in:
Carlos Ruiz 2010-04-19 23:05:21 +00:00
parent 95c5b756be
commit 359f90cee2
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ public class WLocationDialog extends Window implements EventListener
MCountry.setDisplayLanguage(Env.getAD_Language(Env.getCtx()));
for (MCountry country:MCountry.getCountries(Env.getCtx()))
{
lstCountry.appendItem(country.getName(), country);
lstCountry.appendItem(country.toString(), country);
}
setCountry();
lstCountry.addEventListener(Events.ON_SELECT,this);