diff options
author | Nathanaƫl Courant <Ekdohibs@users.noreply.github.com> | 2019-02-02 12:00:06 +0100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2019-02-02 12:00:06 +0100 |
commit | 91e5a33cfa44dcd1ff504b2353e89ccd557f89f2 (patch) | |
tree | 40e39fd265f56f8cd813b314ca30e14b228e7962 | |
parent | d521e61ba7c6e661db17def880ef600aa6e81149 (diff) | |
download | minetest-91e5a33cfa44dcd1ff504b2353e89ccd557f89f2.tar.gz minetest-91e5a33cfa44dcd1ff504b2353e89ccd557f89f2.tar.bz2 minetest-91e5a33cfa44dcd1ff504b2353e89ccd557f89f2.zip |
Move missing translations warnings to verbosestream (#8156)
They should not spam the console and logs.
-rw-r--r-- | src/translation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/translation.cpp b/src/translation.cpp index 60531be67..649c3b282 100644 --- a/src/translation.cpp +++ b/src/translation.cpp @@ -41,7 +41,7 @@ const std::wstring &Translations::getTranslation( try { return m_translations.at(key); } catch (const std::out_of_range &) { - warningstream << "Translations: can't find translation for string \"" + verbosestream << "Translations: can't find translation for string \"" << wide_to_utf8(s) << "\" in textdomain \"" << wide_to_utf8(textdomain) << "\"" << std::endl; // Silence that warning in the future |