On Mon, Aug 27, 2007 at 04:32:00PM +0200, A Mennucc wrote:
> as the name says, this patch adds a simple animation to the start screen,
> and names for the monsters (in en and it locale - you may add fr)
> +LANG = getenv('LC_MESSAGES') or getenv('LC_ALL') or getenv('LANG') or ''
This is not optimal. Probably it should be:
LANG = getenv('LC_ALL') or getenv('LC_MESSAGES') or getenv('LANG') or ''
LC_ALL has for C programs always a higher priority than LC_MESSAGES ...
Jens
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]