diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2016-02-27 13:41:54 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-29 14:27:58 -0800 |
commit | 4636f651234b3fe950246cd1aa2c8b0a5955ea6b (patch) | |
tree | dee8553f724874ac95dae67b503370feacf0038c | |
parent | f02fbc4f9433937ee0463d0342d6d7d97e1f6f1e (diff) | |
download | git-4636f651234b3fe950246cd1aa2c8b0a5955ea6b.tar.gz |
builtin/checkout.c: mark strings for translation
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/checkout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c index cfa66e25eb..efcbd8f6b5 100644 --- a/builtin/checkout.c +++ b/builtin/checkout.c @@ -662,7 +662,7 @@ static void update_refs_for_switch(const struct checkout_opts *opts, } } else if (new->path) { /* Switch branches. */ if (create_symref("HEAD", new->path, msg.buf) < 0) - die("unable to update HEAD"); + die(_("unable to update HEAD")); if (!opts->quiet) { if (old->path && !strcmp(new->path, old->path)) { if (opts->new_branch_force) |