Time::Elapsed::Lang::EN - English language file.


Time-Elapsed documentation Contained in the Time-Elapsed distribution.

Index


Code Index:

NAME

Top

Time::Elapsed::Lang::EN - English language file.

SYNOPSIS

Top

Private module.

DESCRIPTION

Top

This document describes version 0.31 of Time::Elapsed::Lang::EN released on 9 February 2011.

Private module.

METHODS

Top

singular

plural

other

SEE ALSO

Top

Time::Elapsed.

AUTHOR

Top

Burak Gursoy <burak@cpan.org>.

COPYRIGHT

Top

LICENSE

Top

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__