diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2012-08-20 19:32:54 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-08-22 12:02:28 -0700 |
commit | b0ff96547ec66979487707ad71f89c23f5e0669d (patch) | |
tree | 9be9e0941ac3540cb177fdc5ec192f518cf87ef1 /archive.c | |
parent | i18n: write-tree: mark parseopt strings for translation (diff) | |
download | tgif-b0ff96547ec66979487707ad71f89c23f5e0669d.tar.xz |
Reduce translations by using same terminologies
Somewhere in help usage, we use both "message" and "msg", "command"
and "cmd", "key id" and "key-id". This patch makes all help text from
parseopt use the first form. Clearer and 3 fewer strings for
translators.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'archive.c')
-rw-r--r-- | archive.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -343,7 +343,7 @@ static int parse_archive_args(int argc, const char **argv, OPT_GROUP(""), OPT_STRING(0, "remote", &remote, N_("repo"), N_("retrieve the archive from remote repository <repo>")), - OPT_STRING(0, "exec", &exec, N_("cmd"), + OPT_STRING(0, "exec", &exec, N_("command"), N_("path to the remote git-upload-archive command")), OPT_END() }; |