Where do you store your text now? If, as I would hope, you have your text in templates (whether using Text Template, HTML::Template, or another similar solution), those templates are going to be stored either on disk or in a database. If it's in a database, simply add a new column for language (I suggest using ISO-standard language identifiers, either 2-letter (en), or 4-letter-with-middle-underscore (en_US), or 4-letter-with-middle-underscore-dot-encoding-name (en_US.iso88591)). If it's on disk, then use the language identifier as a directory name instead.

Also, don't forget that if a particular template is not found in the location you want, you need to be able to fall back to a reasonable default. e.g., if the desired files aren't found, and your default language is English, then fall back to English. If it's not there, then you have real problems ;-)

I've always noticed that it's easier to design this in from the ground up than it is to add in after the fact.


In reply to Re: Multi-language web app by Tanktalus
in thread Multi-language web app by diego_de_lima

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.