in reply to Re: approaches to debugging a platform-dependant bug
in thread approaches to debugging a platform-dependant bug
Your idea about $LANG is interesting. What I'm doing is this:
So if red hat sets it to "en_US.utf8", it seems that the language would still be correctly recognized as "en". However, I think it's very likely that something along the lines of what you're saying must be the problem. Just on general principles, I should probably also do more error checking and sanity checking on the language code I'm extracting from $LANG.if (exists $ENV{LANG}) { $ENV{LANG} =~ m/^(..)/; $preferences{'language'} = lc($1); }
|
---|