diff options
author | Brian Tarricone <brian@tarricone.org> | 2008-10-12 07:45:34 +0000 |
---|---|---|
committer | Brian Tarricone <brian@tarricone.org> | 2008-10-12 07:45:34 +0000 |
commit | 0b342f94dffe590070519b8753566b1c65e92413 (patch) | |
tree | c25f1e8bbbebd90a7d36185306c44c9f4c876c14 /xfconf-query | |
parent | a93dd6f40add263b52f178a8b587089bd4b56c07 (diff) | |
download | xfconf-0b342f94dffe590070519b8753566b1c65e92413.tar.gz |
fix a bunch of strings
(Old svn revision: 28161)
Diffstat (limited to 'xfconf-query')
-rw-r--r-- | xfconf-query/main.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xfconf-query/main.c b/xfconf-query/main.c index fa7b655..5616c71 100644 --- a/xfconf-query/main.c +++ b/xfconf-query/main.c @@ -145,19 +145,19 @@ static GOptionEntry entries[] = NULL }, { "channel", 'c', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &channel_name, - N_("pick the channel"), + N_("Pick the channel"), NULL }, { "property", 'p', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &property_name, - N_("pick the property"), + N_("Pick the property"), NULL }, { "set", 's', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING_ARRAY, &set_value, - N_("set (change the value)"), + N_("Change or set the value of the property"), NULL }, { "list", 'l', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &list, - N_("List properties"), + N_("List properties (or channels if -c isn't specified)"), NULL }, { "verbose", 'v', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_NONE, &verbose, @@ -185,11 +185,11 @@ static GOptionEntry entries[] = NULL }, { "export", 'x', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &export_file, - N_("Export channel"), + N_("Export channel to file"), NULL, }, { "import", 'i', G_OPTION_FLAG_IN_MAIN, G_OPTION_ARG_STRING, &import_file, - N_("Import channel"), + N_("Import channel from file"), NULL, }, { NULL } |