From 6d59e55d8d882a2659c59a5846558d90aeb39a5f Mon Sep 17 00:00:00 2001 From: o9000 Date: Sun, 1 Nov 2015 12:53:48 +0100 Subject: [PATCH] tint2conf: Call setlocale with no locale to use system default instead of C --- src/tint2conf/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tint2conf/main.c b/src/tint2conf/main.c index 70c2560..065f275 100644 --- a/src/tint2conf/main.c +++ b/src/tint2conf/main.c @@ -124,6 +124,7 @@ static const char *global_ui = int main(int argc, char **argv) { + setlocale(LC_ALL, ""); bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR); bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8"); textdomain(GETTEXT_PACKAGE);