summaryrefslogtreecommitdiffstats
path: root/src/virt-viewer-main.c
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2012-01-27 14:51:29 +0100
committerDaniel P. Berrange <berrange@redhat.com>2012-01-31 12:36:14 +0000
commit091bff3cc216810db478be571de73cda46ad1188 (patch)
treed81b957ea48cc4803fbdb49f4c1319d46c44a503 /src/virt-viewer-main.c
parent15b9f669a7df541908f03e5d8ac714a2a49749b3 (diff)
downloadvirt-viewer-091bff3cc216810db478be571de73cda46ad1188.tar.gz
virt-viewer-091bff3cc216810db478be571de73cda46ad1188.tar.xz
virt-viewer-091bff3cc216810db478be571de73cda46ad1188.zip
Use a first letter capital in help
The GLib/GNOME convention seems to have first letter as capital for option description strings.
Diffstat (limited to 'src/virt-viewer-main.c')
-rw-r--r--src/virt-viewer-main.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/virt-viewer-main.c b/src/virt-viewer-main.c
index 07534b4..c8e1082 100644
--- a/src/virt-viewer-main.c
+++ b/src/virt-viewer-main.c
@@ -59,21 +59,21 @@ int main(int argc, char **argv)
const char *help_msg = N_("Run '" PACKAGE " --help' to see a full list of available command line options");
const GOptionEntry options [] = {
{ "version", 'V', G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK,
- virt_viewer_version, N_("display version information"), NULL },
+ virt_viewer_version, N_("Display version information"), NULL },
{ "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
- N_("display verbose information"), NULL },
+ N_("Display verbose information"), NULL },
{ "direct", 'd', 0, G_OPTION_ARG_NONE, &direct,
- N_("direct connection with no automatic tunnels"), NULL },
+ N_("Direct connection with no automatic tunnels"), NULL },
{ "connect", 'c', 0, G_OPTION_ARG_STRING, &uri,
- N_("connect to hypervisor"), "URI"},
+ N_("Connect to hypervisor"), "URI"},
{ "wait", 'w', 0, G_OPTION_ARG_NONE, &waitvm,
- N_("wait for domain to start"), NULL },
+ N_("Wait for domain to start"), NULL },
{ "reconnect", 'r', 0, G_OPTION_ARG_NONE, &reconnect,
- N_("reconnect to domain upon restart"), NULL },
+ N_("Reconnect to domain upon restart"), NULL },
{ "zoom", 'z', 0, G_OPTION_ARG_INT, &zoom,
N_("Zoom level of window, in percentage"), "ZOOM" },
{ "debug", '\0', 0, G_OPTION_ARG_NONE, &debug,
- N_("display debugging information"), NULL },
+ N_("Display debugging information"), NULL },
{ "full-screen", 'f', 0, G_OPTION_ARG_NONE, &fullscreen,
N_("Open in full screen mode"), NULL },
{ G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_STRING_ARRAY, &args,