Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> writes: > @@ -886,17 +886,17 @@ static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, > ... > if (!another || memcmp(another, name, len + 1)) > - die("git apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr); > + die(_("git apply: bad git-diff - inconsistent %s filename on line %d"), oldnew, linenr); > free(another); > return orig_name; > } In this function, the parameter oldnew has "old" or "new" and the callers (gitdiff_oldname() and gitdiff_newname()) do not have it marked for translation. Even if they did, it would result in a lego composition, so you may have to switch between two translatable messages here. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html