From 7e8b5f961037e15f1ccb76c6058616a03b317c82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 14 May 2022 09:14:57 +0200 Subject: [PATCH] main: minor rewording of non-UTF8 locale warnings and errors --- main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.c b/main.c index 56fc1a01..4617a3c7 100644 --- a/main.c +++ b/main.c @@ -455,12 +455,12 @@ main(int argc, char *const *argv) const char *const fallback_locale = fallback_locales[i]; if (setlocale(LC_CTYPE, fallback_locale) != NULL) { - LOG_WARN("locale '%s' is not UTF-8, using '%s' instead", + LOG_WARN("'%s' is not a UTF-8 locale, using '%s' instead", locale, fallback_locale); user_notification_add_fmt( &user_notifications, USER_NOTIFICATION_WARNING, - "locale '%s' is not UTF-8, using '%s' instead", + "'%s' is not a UTF-8 locale, using '%s' instead", locale, fallback_locale); bad_locale = false; @@ -469,13 +469,13 @@ main(int argc, char *const *argv) } if (bad_locale) { - LOG_ERR("locale '%s' is not UTF-8, " - "and failed to enable a fallback locale", locale); + LOG_ERR( + "'%s' is not a UTF-8 locale, and failed to find a fallback", + locale); user_notification_add_fmt( &user_notifications, USER_NOTIFICATION_ERROR, - "locale '%s' is not UTF-8, " - "and failed to enable a fallback locale", + "'%s' is not a UTF-8 locale, and failed to find a fallback", locale); } }