diff options
-rw-r--r-- | core/qt-init.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/qt-init.cpp b/core/qt-init.cpp index 1e74e9b07..02b3c78b1 100644 --- a/core/qt-init.cpp +++ b/core/qt-init.cpp @@ -52,7 +52,8 @@ void init_qt_late() if (qtTranslator->load(loc, "qt", "_", translationLocation)) { application->installTranslator(qtTranslator); } else { - qDebug() << "can't find Qt localization for locale" << uiLang << "searching in" << translationLocation; + if (uiLang != "en_US" && uiLang != "en-US") + qDebug() << "can't find Qt localization for locale" << uiLang << "searching in" << translationLocation; } ssrfTranslator = new QTranslator; if (ssrfTranslator->load(loc, "subsurface", "_") || |