Issue 9822. Change search language on change map language
Signed-off-by: Kiryl Razhdzestvenski <kirill.rozh@gmail.com>
This commit is contained in:
parent
95d6918f8e
commit
a634c76ac5
3 changed files with 11 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <optional>
|
||||
#include <unordered_set>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
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
|
||||
|
|
Reference in a new issue