| Time-Elapsed documentation | Contained in the Time-Elapsed distribution. |
Time::Elapsed::Lang::EN - English language file.
Private module.
This document describes version 0.31 of Time::Elapsed::Lang::EN
released on 9 February 2011.
Private module.
Burak Gursoy <burak@cpan.org>.
Copyright 2007 - 2011 Burak Gursoy. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.1 or, at your option, any later version of Perl 5 you may have available.
| Time-Elapsed documentation | Contained in the Time-Elapsed distribution. |
package Time::Elapsed::Lang::EN; use strict; use warnings; use utf8; use vars qw( $VERSION ); $VERSION = '0.31'; sub singular { return qw/ second second minute minute hour hour day day week week month month year year / } sub plural { return qw/ second seconds minute minutes hour hours day days week weeks month months year years / } sub other { return qw/ and and ago ago /, zero => q{zero seconds}, } 1; __END__