How can I add internationalization to my Perl script? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:09:59Z http://stackoverflow.com/feeds/question/164931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/164931/how-can-i-add-internationalization-to-my-perl-script 5 How can I add internationalization to my Perl script? kierse 2008-10-02T22:43:02Z 2009-08-29T07:58:05Z <p>Hi there,</p> <p>I'm looking at introducing multi-lingual support to a mature CGI application written in Perl. I had originally considered rolling my own solution using a Perl hash (stored on disk) for translation files but then I came across a CPAN module which appears to do just what I want (<a href="http://search.cpan.org/~audreyt/i18n-0.10/lib/i18n.pm" rel="nofollow" title="i18n">i18n</a>). </p> <p>Does anyone have any experience with internationalization (specifically the i18n CPAN module) in Perl? Is the i18n module the preferred method for multi-lingual support or should I reconsider a custom solution?</p> <p>Thanks</p> http://stackoverflow.com/questions/164931/how-can-i-add-internationalization-to-my-perl-script/164969#164969 4 Answer by bmdhacks for How can I add internationalization to my Perl script? bmdhacks 2008-10-02T23:00:38Z 2008-10-02T23:00:38Z <p>In a response to <a href="http://stackoverflow.com/questions/155719/best-practices-for-internationalizing-web-applications">my question about this</a> one of the comments suggested reading <a href="http://interglacial.com/~sburke/tpj/as_html/tpj13.html" rel="nofollow">this article</a> about localizing perl code.</p> http://stackoverflow.com/questions/164931/how-can-i-add-internationalization-to-my-perl-script/164970#164970 14 Answer by pjf for How can I add internationalization to my Perl script? pjf 2008-10-02T23:00:49Z 2008-10-02T23:00:49Z <p>There is a <a href="http://search.cpan.org/perldoc?Locale::Maketext::TPJ13" rel="nofollow">Perl Journal article</a> on software localisation. It will provide you with a good idea of what you can expect when adding multi-lingual support. It's beautifully written and humourous.</p> <p>Specifically, the article is written by the folks who wrote and maintain <a href="http://search.cpan.org/perldoc?Locale::Maketext" rel="nofollow"><code>Locale::Maketext</code></a>, so I would recommend that module simply based upon the amount of pain it is clear the authors have had to endure to make it work correctly.</p> http://stackoverflow.com/questions/164931/how-can-i-add-internationalization-to-my-perl-script/191130#191130 3 Answer by EvdB for How can I add internationalization to my Perl script? EvdB 2008-10-10T12:56:59Z 2008-10-10T12:56:59Z <p>If you have the time then do take a look at the way the I18N is done in the <a href="http://search.cpan.org/dist/Jifty/" rel="nofollow">Jifty</a> framework - although initially quite confusing it is very elegant and usable.</p> <p>They overload <code>_</code> so that you can use <code>_("text to translate")</code> anywhere in the code. These strings are then translated using <a href="http://search.cpan.org/dist/Locale-Maketext/" rel="nofollow">Locale::Maketext</a> as normal.</p> <p>What makes it really powerful is that they defer the translation until the string is needed using <a href="http://search.cpan.org/dist/Scalar-Defer/" rel="nofollow">Scalar::Defer</a> so that you can start adding the strings at any time, even before you know which language they will be translated into. For example in config files etc. This really make I18N easy to work with.</p> http://stackoverflow.com/questions/164931/how-can-i-add-internationalization-to-my-perl-script/1350808#1350808 0 Answer by Sergey for How can I add internationalization to my Perl script? Sergey 2009-08-29T07:58:05Z 2009-08-29T07:58:05Z <p>See <a href="http://rassie.org/archives/247" rel="nofollow">http://rassie.org/archives/247</a> for comparison of modern GNU gettext, Locale::Maketext and Locale::TextDomain.</p>