From 828fc3375e521b800e3e76596d8c9de7f1a9bd1e Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Tue, 6 Jun 2017 10:10:23 -0600 Subject: [PATCH] Change message from warning to note for failed to load translator The message for failing to find and load a language translator was misleading. There is no problem running Manuskript with the default English language (no translation loaded). The word **Warning** implied that something was wrong with manuskript and could be confusing to users. --- manuskript/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manuskript/main.py b/manuskript/main.py index 9ac331a2..df321539 100644 --- a/manuskript/main.py +++ b/manuskript/main.py @@ -53,7 +53,7 @@ def run(): print(app.tr("Loaded translation: {}.").format(translation)) else: - print(app.tr("Warning: failed to load translator for locale {}...").format(locale)) + print(app.tr("Note: No translator found or loaded for locale {}.").format(locale)) QIcon.setThemeSearchPaths(QIcon.themeSearchPaths() + [appPath("icons")]) QIcon.setThemeName("NumixMsk")