diff options
author | Glynn Foster <glynn.foster@sun.com> | 2005-02-06 23:13:16 +0000 |
---|---|---|
committer | Glynn Foster <gman@src.gnome.org> | 2005-02-06 23:13:16 +0000 |
commit | 717b814028ea3ade38710d32b561af46615358b9 (patch) | |
tree | 7d574402e86c370928f46b8ce3af8d5269f59013 /src | |
parent | Updated Korean translation. (diff) | |
download | zenity-717b814028ea3ade38710d32b561af46615358b9.tar.gz zenity-717b814028ea3ade38710d32b561af46615358b9.tar.bz2 zenity-717b814028ea3ade38710d32b561af46615358b9.zip |
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')
-rw-r--r-- | src/option.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/option.c b/src/option.c index cfc95e95..603ce04b 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); |