From d3c1383b4e2ab1a7049891380c5e8faaa503e3e8 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Wed, 21 Dec 2011 13:48:03 +0100 Subject: [PATCH] core: fix domain for g_option_context_set_translation_domain() (bgo #666652) --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index afedd502ab..c360e74602 100644 --- a/src/main.c +++ b/src/main.c @@ -394,7 +394,7 @@ main (int argc, char *argv[]) /* Parse options */ opt_ctx = g_option_context_new (""); - g_option_context_set_translation_domain (opt_ctx, "UTF-8"); + g_option_context_set_translation_domain (opt_ctx, GETTEXT_PACKAGE); g_option_context_set_ignore_unknown_options (opt_ctx, FALSE); g_option_context_set_help_enabled (opt_ctx, TRUE); g_option_context_add_main_entries (opt_ctx, options, NULL);