Add bulgarian locale.

This commit is contained in:
Kishore Nallan 2023-09-04 18:43:01 +05:30
parent 8ab753f571
commit f3353ed81f

View File

@ -336,7 +336,7 @@ bool Tokenizer::next(std::string &token, size_t &token_index) {
}
bool Tokenizer::is_cyrillic(const std::string& locale) {
return locale == "el" ||
return locale == "el" || locale == "bg" ||
locale == "ru" || locale == "sr" || locale == "uk" || locale == "be";
}