forked from organicmaps/organicmaps
Minor improvements & comments.
This commit is contained in:
parent
6b1d28eda8
commit
2fa5ed29f1
4 changed files with 8 additions and 2 deletions
|
@ -2,6 +2,11 @@
|
|||
|
||||
#include "defines.hpp"
|
||||
|
||||
// TODO(AlexZ): Review and replace invalid languages which does not map correctly to
|
||||
// iOS/Android locales/UI by valid and more popular ones.
|
||||
// Languages below were choosen after sorting name:<lang> tags in 2011.
|
||||
// Note, that it's not feasible to increase languages number here due to
|
||||
// our current encoding (6 bit to store language code).
|
||||
static char const * gLangs[] = {
|
||||
"default",
|
||||
"en", "ja", "fr", "ko_rm", "ar", "de", "int_name", "ru", "sv", "zh", "fi", "be", "ka", "ko",
|
||||
|
|
|
@ -212,6 +212,8 @@ int8_t CategoriesHolder::MapLocaleToInteger(string const & locale)
|
|||
char const * m_name;
|
||||
int8_t m_code;
|
||||
};
|
||||
// TODO(AlexZ): These constants should be updated when adding new
|
||||
// translation into categories.txt
|
||||
static const Mapping mapping[] = {
|
||||
{"en", 1 },
|
||||
{"ru", 2 },
|
||||
|
|
|
@ -255,7 +255,7 @@ struct BestMatchedLangNames
|
|||
|
||||
bool operator()(int8_t code, string const & name)
|
||||
{
|
||||
static int8_t defaultCode = StringUtf8Multilang::GetLangIndex("default");
|
||||
static int8_t const defaultCode = StringUtf8Multilang::GetLangIndex("default");
|
||||
static int8_t const nativeCode = StringUtf8Multilang::GetLangIndex(languages::GetCurrentNorm());
|
||||
static int8_t const intCode = StringUtf8Multilang::GetLangIndex("int_name");
|
||||
static int8_t const englishCode = StringUtf8Multilang::GetLangIndex("en");
|
||||
|
|
|
@ -73,7 +73,6 @@ MwmSet::MwmHandle & MwmSet::MwmHandle::operator=(MwmHandle && handle)
|
|||
return *this;
|
||||
}
|
||||
|
||||
|
||||
MwmSet::MwmId MwmSet::GetMwmIdByCountryFileImpl(CountryFile const & countryFile) const
|
||||
{
|
||||
string const & name = countryFile.GetNameWithoutExt();
|
||||
|
|
Loading…
Add table
Reference in a new issue