summaryrefslogtreecommitdiff
path: root/src/option.c
diff options
context:
space:
mode:
authorGlynn Foster <glynn.foster@sun.com>2005-02-06 23:13:16 +0000
committerGlynn Foster <gman@src.gnome.org>2005-02-06 23:13:16 +0000
commit717b814028ea3ade38710d32b561af46615358b9 (patch)
tree7d574402e86c370928f46b8ce3af8d5269f59013 /src/option.c
parent41a1261664f137de42f3324e65c98950a35a7adb (diff)
Update docs to add the new goption help stuff. Update to be in line with
2005-02-07 Glynn Foster <glynn.foster@sun.com> * help/C/zenity.xml: Update docs to add the new goption help stuff. * src/option.c: Update to be in line with the documentation descriptions.
Diffstat (limited to 'src/option.c')
-rw-r--r--src/option.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/option.c b/src/option.c
index cfc95e9..603ce04 100644
--- a/src/option.c
+++ b/src/option.c
@@ -1257,8 +1257,8 @@ zenity_create_context (void)
/* Adds notification option entries */
a_group = g_option_group_new("notification",
- N_("Notification options"),
- N_("Show notification options"), NULL, 0);
+ N_("Notification icon options"),
+ N_("Show notification icon options"), NULL, 0);
g_option_group_add_entries(a_group, notification_options);
g_option_group_set_parse_hooks (a_group,
zenity_notification_pre_callback, zenity_notification_post_callback);
@@ -1296,9 +1296,9 @@ zenity_create_context (void)
g_option_context_add_group(tmp_ctx, a_group);
/* Adds text option entries */
- a_group = g_option_group_new("text",
- N_("Text options"),
- N_("Show text options"), NULL, 0);
+ a_group = g_option_group_new("text-info",
+ N_("Text information options"),
+ N_("Show text information options"), NULL, 0);
g_option_group_add_entries(a_group, text_options);
g_option_group_set_parse_hooks (a_group,
zenity_text_pre_callback, zenity_text_post_callback);