[grilo/0.2.x] grl-launch: Fix help messages in some locales



commit dcd3676a23a540bdf4ee346811ba97b0d886aa02
Author: Ting-Wei Lan <lantw src gnome org>
Date:   Mon Jan 11 20:26:12 2016 +0800

    grl-launch: Fix help messages in some locales
    
    Call setlocale() first thing in the main() function
    
    https://bugzilla.gnome.org/show_bug.cgi?id=760426

 tools/grilo-launch/grl-launch.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/tools/grilo-launch/grl-launch.c b/tools/grilo-launch/grl-launch.c
index 7c2d39a..38920ea 100644
--- a/tools/grilo-launch/grl-launch.c
+++ b/tools/grilo-launch/grl-launch.c
@@ -22,6 +22,7 @@
 
 #include <grilo.h>
 #include <glib.h>
+#include <locale.h>
 
 #include "config.h"
 
@@ -815,6 +816,8 @@ main (int argc, char *argv[])
 {
   GError *error = NULL;
 
+  setlocale (LC_ALL, "");
+
   context = g_option_context_new ("OPERATION PARAMETERS...");
   g_option_context_add_main_entries (context, entries, NULL);
   g_option_context_add_group (context, grl_init_get_option_group ());


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]