From f766c156cc32fb6545355f7d680b90d95d9c38bb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Tue, 6 Oct 2009 19:20:55 +0000 Subject: [PATCH] * make locale not found messages less alarming --- webcit/gettext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webcit/gettext.c b/webcit/gettext.c index 1a2346378..d12ff3cf5 100644 --- a/webcit/gettext.c +++ b/webcit/gettext.c @@ -294,13 +294,13 @@ void initialize_locales(void) { (((i > 0) && (wc_locales[0] != NULL)) ? wc_locales[0] : Empty_Locale) ); if (wc_locales[nLocalesLoaded] == NULL) { - lprintf(1, "Error configuring locale for "LOCALEDIR"locale/%s: %s\n", + lprintf(1, "locale for "LOCALEDIR"locale/%s: %s; disabled\n", buf, strerror(errno) ); } else { - lprintf(3, "Configured available locale: %s\n", buf); + lprintf(3, "Found locale: %s\n", buf); AvailLangLoaded[nLocalesLoaded] = AvailLang[i]; nLocalesLoaded++; } -- 2.30.2