in reply to Re: Localized weekday names
in thread Localized weekday names

It seems that you spent a lot of time on your answer, but unfortunately it seems you misunderstood my question.

I simply want a list of the localized names of weekdays.

Look at the other answers if it is still unclear.

Thanks for your attempt, though.

Replies are listed 'Best First'.
Re^3: Localized weekday names
by thanos1983 (Parson) on Nov 06, 2017 at 16:52 UTC

    Hello Sec,

    Sorry for the late reply, but I just noticed your reply.

    Here is a sample of the same process and module by using French as everyone is providing you:?

    #!/usr/bin/perl use strict; use warnings; use Date::Manip; use feature 'say'; Date_Init("Language=French"); say UnixDate(DateCalc( ParseDate("aujourd'hui"), $_ . " jours plus tard") , '%A') for (1..7); __END__ $ perl test.pl mardi mercredi jeudi vendredi samedi dimanche lundi

    More information regarding the languages that the module can support Date::Manip::Lang.

    Hope this helps, BR.

    Seeking for Perl wisdom...on the process of learning...not there...yet!