diff --git a/map/framework.cpp b/map/framework.cpp index b5d6e0feae..9aba3fbbd9 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2458,6 +2458,9 @@ void Framework::SetMapLanguageCode(std::string const & langCode) settings::Set(settings::kMapLanguageCode, langCode); if (m_drapeEngine) ApplyMapLanguageCode(langCode); + + if (m_searchAPI) + m_searchAPI->SetLocale(langCode); } void Framework::ApplyMapLanguageCode(std::string const & langCode) diff --git a/map/search_api.cpp b/map/search_api.cpp index 9ebf8a4108..9e905986bc 100644 --- a/map/search_api.cpp +++ b/map/search_api.cpp @@ -422,6 +422,11 @@ void SearchAPI::SetViewportIfPossible(SearchParams & params) params.m_viewport = m_viewport; } +void SearchAPI::SetLocale(std::string const & locale) +{ + m_engine.SetLocale(locale); +} + bool SearchAPI::QueryMayBeSkipped(SearchParams const & prevParams, SearchParams const & currParams) const { diff --git a/map/search_api.hpp b/map/search_api.hpp index 88498cc4cf..41d887f0c4 100644 --- a/map/search_api.hpp +++ b/map/search_api.hpp @@ -21,6 +21,7 @@ #include #include #include +#include class DataSource; @@ -113,6 +114,8 @@ public: void EnableIndexingOfBookmarksDescriptions(bool enable); + void SetLocale(std::string const & locale); + // By default all created bookmarks are saved in BookmarksProcessor // but we do not index them in an attempt to save time and memory. // This method must be used to enable or disable indexing all current and future