1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-30 09:15:38 +00:00

Ignore duplicated preferred l10n locales

This commit is contained in:
Petr Mikheev 2023-03-04 01:16:30 +01:00
parent 88567cd363
commit e70ab80b90
2 changed files with 7 additions and 5 deletions

View file

@ -94,7 +94,6 @@ you_have_arrows: "Arrows count: {count}"
internal::CaptureStdout();
l.safe_script("t1 = l10n('Test1')");
EXPECT_THAT(internal::GetCapturedStdout(),
"Fallback locale: en\n"
"Language file \"l10n/Test1/de.yaml\" is enabled\n"
"Language file \"l10n/Test1/en.yaml\" is enabled\n");

View file

@ -1,5 +1,6 @@
#include "manager.hpp"
#include <set>
#include <unicode/errorcode.h>
#include <components/debug/debuglog.hpp>
@ -11,8 +12,14 @@ namespace l10n
void Manager::setPreferredLocales(const std::vector<std::string>& langs)
{
mPreferredLocales.clear();
std::set<std::string> langSet;
for (const auto& lang : langs)
{
if (langSet.contains(lang))
continue;
langSet.insert(lang);
mPreferredLocales.push_back(icu::Locale(lang.c_str()));
}
{
Log msg(Debug::Info);
msg << "Preferred locales:";
@ -83,10 +90,6 @@ namespace l10n
throw std::runtime_error(std::string("Invalid l10n context name: ") + contextName);
icu::Locale fallbackLocale(fallbackLocaleName.c_str());
std::shared_ptr<MessageBundles> ctx = std::make_shared<MessageBundles>(mPreferredLocales, fallbackLocale);
{
Log msg(Debug::Verbose);
msg << "Fallback locale: " << fallbackLocale.getName();
}
updateContext(contextName, *ctx);
mCache.emplace(key, ctx);
return ctx;