Vasco Almeida <vascomalmeida@xxxxxxx> writes: > Some translations might also translate "<remote>" and "<branch>". > ... > fprintf_ln(stderr, _("See git-pull(1) for details.")); > fprintf(stderr, "\n"); > - fprintf_ln(stderr, " git pull <remote> <branch>"); > + fprintf_ln(stderr, _(" git pull <remote> <branch>")); But "git pull" itself must never be translated, and there is no hint given to those who are working on *.po files to prevent it. Wouldn't it make more sense to do it like this? fprintf_ln(stderr, " git pull <%s> <%s>", _("remote"), _("branch")); -- 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