In Date::Language::*, I mentioned that I need to create some Date::Language modules since most of the work is already done.

Take a look at my old (extremely ugly & improperly encoded) script for the Greek example.

#!/usr/bin/perl my ($tsec,$tmin,$thour,$tmday,$tmon,$tyear,$twd,$tyd,$tds) = localtime +(time); my (@tweekdays) = ( 'Κυριακή', 'Δευτέρα', 'Τρίτη', 'Τετάρτη', 'Πέμπτη', 'Παρασκευή', 'Σάββατο' ); my (@tmonths) = ( 'Ιανουαρίου', 'Φεβρουαρίου', 'Μαρτίου', 'Απριλίου', 'Μαϊου', 'Ιουνίου', 'Ιουλίου', 'Αυγούστου', 'Σεπτεμβρίου', 'Οκτωβρίου', 'Νοεμβρίου', 'Δεκεμβρίου' ); my ($tweekday) = $tweekdays[$twd]; my ($tmonth) = $tmonths[$tmon]; $tyear += 1900; my ($tdate) = "$tweekday, $tmday $tmonth, $tyear"; print "Content-type: text/html\n\n"; print "$tdate\n";
It displays the date like this: Παρασκευή 25 Οκτωβρίου 2002.
In the web page that calls the script I have the following HTML:
<html lang="el"> <head> <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-12 +53">

Will using the proper unicode be enough? Or will I need to force a locale as well? I may not even be asking the right questions!


In reply to Unicode & Locales by Mr. Muskrat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.