Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Spanish locale and name sorting

by spectre9 (Beadle)
on May 01, 2009 at 19:08 UTC ( #761373=note: print w/replies, xml ) Need Help??


in reply to Spanish locale and name sorting

I'm no expert, but after reading perllocale it seems that checking the LANG environmetal variable might relevant to your issue... It is possible to override the language selection of a locale after the fact within many Unix systems. Sometimes I've seen an LC_LANG variable as well, or NLS_LANG (I think Oracle uses NLS_ variables for instance)

Might you examine your %ENV{} in the running Perl program and report back the LC_ variables? And anything that contains lang? These usually are locale related if my memory serves.

Here's some quick code that might work -- reply back with the output if your still 'bugged' by the sort order and I'll be happy to take a closer look. I know Spanish (Madrid, Spain) somewhat well and understand what your trying to achieve.

foreach my $env (keys %ENV){ if($env =~ /^LC_/i || $env =~ /lang/i){ print "$env => $ENV{$env}\n"; } }

"Strictly speaking, there are no enlightened people, there is only enlightened activity." -- Shunryu Suzuki

Replies are listed 'Best First'.
Re^2: Spanish locale and name sorting
by Jorge_de_Burgos (Beadle) on May 01, 2009 at 20:21 UTC
    Right away to your suggestion, spectr9. This is my output from your routine:
    LANG => es_AR.UTF-8 GDM_LANG => es_AR.UTF-8
    That's the correct locale for my system here in Buenos Aires. (I wouldn't like to change that by the way.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://761373]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2023-03-22 02:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (60 votes). Check out past polls.

    Notices?