description → descriptions
This commit is contained in:
parent
1a858ec585
commit
f88fc85e4b
1 changed files with 4 additions and 5 deletions
|
@ -57,13 +57,13 @@ class Route:
|
||||||
if item.waytype.join_edges and next_item and next_item.waytype == item.waytype:
|
if item.waytype.join_edges and next_item and next_item.waytype == item.waytype:
|
||||||
continue
|
continue
|
||||||
if item.waytype.up_separate and item.edge.rise > 0:
|
if item.waytype.up_separate and item.edge.rise > 0:
|
||||||
item.description.append(item.waytype.description_up)
|
item.descriptions.append(item.waytype.description_up)
|
||||||
else:
|
else:
|
||||||
item.description.append(item.waytype.description)
|
item.descriptions.append(item.waytype.description)
|
||||||
elif item.new_space:
|
elif item.new_space:
|
||||||
pass # todo: custom space transition descriptions
|
pass # todo: custom space transition descriptions
|
||||||
|
|
||||||
items[-1].description.append(_('You have reached your destination.'))
|
items[-1].descriptions.append(_('You have reached your destination.'))
|
||||||
|
|
||||||
return OrderedDict((
|
return OrderedDict((
|
||||||
('origin', describe_location(self.origin, locations)),
|
('origin', describe_location(self.origin, locations)),
|
||||||
|
@ -118,8 +118,7 @@ class RouteItem:
|
||||||
if self.new_level:
|
if self.new_level:
|
||||||
result['level'] = describe_location(self.level, locations)
|
result['level'] = describe_location(self.level, locations)
|
||||||
|
|
||||||
if self.description:
|
result['descriptions'] = self.descriptions
|
||||||
result['description'] = self.description
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue