Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Date::Calc 1

Status
Not open for further replies.

mmaz

Programmer
Nov 22, 2000
347
Hi,

A Perl application I downloaded from the net uses the Decode_Month() function from the Date::Calc package. This functions accepts one argument (number from 1 - 12) and returns the month's name.

My question is, what should I do so that it returns the month names in French??

Thanks,

Marie
 
You should:
[tt]use Date::Calc qw(Language Decode_Language);
Language(Decode_Language("Français"));
[/tt]
 
Thank you so much!

Marie :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top