OSDN Git Service

Merge branch 'jk/write-file'
[git-core/git.git] / builtin / branch.c
index 1d41251..bf06725 100644 (file)
@@ -614,9 +614,9 @@ static int edit_branch_description(const char *branch_name)
        if (!buf.len || buf.buf[buf.len-1] != '\n')
                strbuf_addch(&buf, '\n');
        strbuf_commented_addf(&buf,
-                   "Please edit the description for the branch\n"
-                   "  %s\n"
-                   "Lines starting with '%c' will be stripped.\n",
+                   _("Please edit the description for the branch\n"
+                     "  %s\n"
+                     "Lines starting with '%c' will be stripped.\n"),
                    branch_name, comment_line_char);
        write_file_buf(git_path(edit_description), buf.buf, buf.len);
        strbuf_reset(&buf);