in reply to multiple language provision

Maybe you want something out of the Gettext namespace?

Replies are listed 'Best First'.
Re^2: multiple language provision
by lepetitalbert (Abbot) on Jan 22, 2010 at 10:28 UTC

    hi gskoli,

    you could create translation files :

    en.txt

    monday = monday tuesday = tuesday wednesday = wednesday thursday = thursday friday = friday saturday = saturday sunday = sunday

    fr.txt

    monday = lundi tuesday = mardi wednesday = mercredi thursday = jeudi friday = vendredi saturday = samedi sunday = dimanche

    create a function

    load_trans($lang)

    which loads the "$lang.txt" file in a hash and then use

    my %trans=load_trans('fr'); print $trans{'monday'};

    Have a nice day

    "There is only one good, namely knowledge, and only one evil, namely ignorance." Socrates
      Thanks Guys ...
      I am using locale::Maketext::Gettext Module ,
      But making Hash for hardcoded words bit tedious task ...
      So any other suggetion ...
      & what about variables ... How can i replace that ...
      Thanks in advance ...