forked from organicmaps/organicmaps
Added strings for entrance and exit.
This commit is contained in:
parent
5a28e8e4d8
commit
00d5e176be
3 changed files with 8 additions and 2 deletions
|
@ -407,6 +407,8 @@ Framework::Framework(FrameworkParams const & params)
|
|||
// It's better to use strings form strings.txt intead of hardcoding them here.
|
||||
m_stringsBundle.SetDefaultString("placepage_unknown_place", "Unknown Place");
|
||||
m_stringsBundle.SetDefaultString("my_places", "My Places");
|
||||
m_stringsBundle.SetDefaultString("entrance", "Entrance");
|
||||
m_stringsBundle.SetDefaultString("exit", "Exit");
|
||||
m_stringsBundle.SetDefaultString("routes", "Routes");
|
||||
m_stringsBundle.SetDefaultString("wifi", "WiFi");
|
||||
|
||||
|
|
|
@ -439,7 +439,7 @@ void FillTransitStyleForRendering(vector<RouteSegment> const & segments, Transit
|
|||
|
||||
gateMarkInfo.m_featureId = fid;
|
||||
gateMarkInfo.m_symbolName = symbolName;
|
||||
string title = pendingEntrance ? "entrance" : "exit";//getStringsBundleFn().GetString(pendingEntrance ? "entrance" : "exit");
|
||||
auto const title = getStringsBundleFn().GetString(pendingEntrance ? "entrance" : "exit");
|
||||
gateMarkInfo.m_titles.push_back(TransitTitle(title, df::GetTransitTextColorName("default")));
|
||||
}
|
||||
|
||||
|
|
|
@ -27551,4 +27551,8 @@
|
|||
|
||||
[discover_button_other_loading_title]
|
||||
en = Data is loading
|
||||
ru = Данные загружаются
|
||||
ru = Данные загружаются
|
||||
|
||||
[entrance]
|
||||
en = Entrance
|
||||
ru = Вход
|
||||
|
|
Loading…
Add table
Reference in a new issue