I'm using SVN 1.7.2 binaries on my German Windows XP machine. What I need to do to make it output text in English instead of German?

link|improve this question

feedback

1 Answer

This should do the trick:

export LANG=C
export LC_MESSAGES=C

It tells svn not to translate any message (english being the default). Alternatively, you can force it to english by using:

export LANG=en_US
export LC_MESSAGES=en_US
link|improve this answer
1  
Mike is using Windows - therefore "export" will not work. Anyway setting LANG=en_US works. – Robert Dec 19 '11 at 14:56
I assumed he used svn under Cygwin, which supports "export". – Ravachol Dec 19 '11 at 14:57
Setting LC_MESSAGES is not necessary if it was not set already; LANG is enough. – grawity Dec 19 '11 at 15:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.