package Hello::I18N; use parent 'Locale::Maketext'; use Locale::Maketext::Lexicon { en => [ Properties => "en_US/hello.properties" ], }; package main; my $lh = Hello ...
Properties files are used to store and maintain the localized strings at the heart of most internationalized Java applications. It’s too bad maintaining several properties files can be such a headache ...
日時の表記や通貨の単位などロケールに依存した処理はいろいろあります。 たとえば、第51回と第52回で取りあげた和暦もロケールに応じて選択されることを紹介しました。 Javaではすでに様々なロケールが用意されています。頻繁に使用されるen_USやja_JP ...