diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2014-08-10 09:29:29 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-08-11 10:48:06 -0700 |
commit | eac0ccc2cd0022546b5037a5aabef8ec687bb60a (patch) | |
tree | 7e299eb550a41bb6e7dd6161dd40bcc7c337d0a9 /builtin/mv.c | |
parent | 67de23ddb1ed5471e302f6a84fae7a9037a0d980 (diff) | |
download | git-eac0ccc2cd0022546b5037a5aabef8ec687bb60a.tar.gz |
mv: mark strings for translations
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 'builtin/mv.c')
-rw-r--r-- | builtin/mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/mv.c b/builtin/mv.c index 6ffe540c20..b892f63df9 100644 --- a/builtin/mv.c +++ b/builtin/mv.c @@ -108,7 +108,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix) destination = internal_copy_pathspec(dest_path[0], argv, argc, DUP_BASENAME); } else { if (argc != 1) - die("destination '%s' is not a directory", dest_path[0]); + die(_("destination '%s' is not a directory"), dest_path[0]); destination = dest_path; } |