Skip to content

Instantly share code, notes, and snippets.

@smeghead
Created April 20, 2012 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smeghead/2429253 to your computer and use it in GitHub Desktop.
Save smeghead/2429253 to your computer and use it in GitHub Desktop.
Locale::Maketext::Simpleが動かない
msgid "hello"
msgstr "konnnitiwa"
use strict;
use warnings;
use Locale::Maketext::Simple { Style => 'gettext', };
sub text {
Locale::Maketext::Simple->import({Path => '.'});
loc_lang('ja');
return loc('hello');
}
print text, "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment