| 109 | } |
| 110 | |
| 111 | std::string LowerCaseString(const std::string &str) { |
| 112 | auto copy = str; |
| 113 | std::transform(copy.begin(), copy.end(), copy.begin(), tolower); |
| 114 | return copy; |
| 115 | } |
| 116 | |
| 117 | Language GetLanguageBySystemLanguage(const SetLanguage sys_lang) { |
| 118 | for(const auto &[lang, sys_langs] : g_SystemLanguagesMap) { |
no outgoing calls
no test coverage detected