mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
parent
3a8c37181a
commit
857dbcd572
1 changed files with 7 additions and 8 deletions
|
@ -144,14 +144,13 @@ void Translations::loadTranslation(const std::string &data)
|
||||||
}
|
}
|
||||||
|
|
||||||
std::wstring oword1 = word1.str(), oword2 = word2.str();
|
std::wstring oword1 = word1.str(), oword2 = word2.str();
|
||||||
if (oword2.empty()) {
|
if (!oword2.empty()) {
|
||||||
oword2 = oword1;
|
std::wstring translation_index = textdomain + L"|";
|
||||||
errorstream << "Ignoring empty translation for \""
|
translation_index.append(oword1);
|
||||||
<< wide_to_utf8(oword1) << "\"" << std::endl;
|
m_translations[translation_index] = oword2;
|
||||||
|
} else {
|
||||||
|
infostream << "Ignoring empty translation for \""
|
||||||
|
<< wide_to_utf8(oword1) << "\"" << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::wstring translation_index = textdomain + L"|";
|
|
||||||
translation_index.append(oword1);
|
|
||||||
m_translations[translation_index] = oword2;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue