9276: ability to search alternate place names when selecting place

This commit is contained in:
romjerome 2016-12-05 09:37:24 +01:00
parent aca78ad3d5
commit 5cd646d22b

View File

@ -126,7 +126,8 @@ class PlaceBaseModel(object):
return value
def column_name(self, data):
return str(data[6][0])
# need for spacing on the french translation
return _(',').join([data[6][0]] + [name[0] for name in data[7]])
def column_longitude(self, data):
if not data[3]: