summaryrefslogtreecommitdiff
path: root/src/programs/pkaction.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/programs/pkaction.c')
-rw-r--r--src/programs/pkaction.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/programs/pkaction.c b/src/programs/pkaction.c
index f2969cc..3778b33 100644
--- a/src/programs/pkaction.c
+++ b/src/programs/pkaction.c
@@ -90,6 +90,7 @@ main (int argc, char *argv[])
{
guint ret;
gchar *opt_action_id;
+ gchar *s;
gboolean opt_show_version;
gboolean opt_verbose;
GOptionEntry options[] =
@@ -127,6 +128,11 @@ main (int argc, char *argv[])
error = NULL;
context = g_option_context_new (N_("[--action-id ACTION]"));
+ s = g_strdup_printf (_("Report bugs to: %s\n"
+ "%s home page: <%s>"), PACKAGE_BUGREPORT,
+ PACKAGE_NAME, PACKAGE_URL);
+ g_option_context_set_description (context, s);
+ g_free (s);
g_option_context_add_main_entries (context, options, GETTEXT_PACKAGE);
if (!g_option_context_parse (context, &argc, &argv, &error))
{