mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Don't show localization warning unless verbose
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
022b3e450b
commit
bebee64ca9
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ void init_qt_late()
|
|||
if (qtTranslator->load(loc, "qt", "_", translationLocation)) {
|
||||
application->installTranslator(qtTranslator);
|
||||
} else {
|
||||
if (uiLang != "en_US" && uiLang != "en-US")
|
||||
if (verbose && uiLang != "en_US" && uiLang != "en-US")
|
||||
qDebug() << "can't find Qt localization for locale" << uiLang << "searching in" << translationLocation;
|
||||
}
|
||||
ssrfTranslator = new QTranslator;
|
||||
|
|
Loading…
Reference in a new issue