Skip to content

Commit

Permalink
i18n: git-am gettext + gettext to stderr message
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
avar authored and gitster committed May 21, 2011
1 parent a4372c3 commit 22fdd11
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions git-am.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,11 @@ safe_to_abort () {
then
return 0
fi
echo >&2 "You seem to have moved HEAD since the last 'am' failure."
echo >&2 "Not rewinding to ORIG_HEAD"
(
gettext "You seem to have moved HEAD since the last 'am' failure.
Not rewinding to ORIG_HEAD" &&
echo
) >&2
return 1
}

Expand Down

0 comments on commit 22fdd11

Please sign in to comment.