/t/lib/MyApp/I18N/abc_de.pm

http://github.com/gshank/html-formhandler · Perl · 11 lines · 8 code · 2 blank · 1 comment · 0 complexity · 5dca9d8d2b9579eb8375992b99ddeeee MD5 · raw file

  1. package MyApp::I18N::abc_de;
  2. use base 'HTML::FormHandler::I18N';
  3. # Auto define lexicon
  4. our %Lexicon = (
  5. '_AUTO' => 1,
  6. 'You lost, insert coin' => 'Loser! coin needed',
  7. 'Test field' => 'Asdf lkjh',
  8. );
  9. 1;