Time::Elapsed::Lang::DE - German language file.


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

Index


Code Index:

NAME

Top

Time::Elapsed::Lang::DE - German language file.

SYNOPSIS

Top

Private module.

DESCRIPTION

Top

This document describes version 0.31 of Time::Elapsed::Lang::DE 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::DE;
use strict;
use warnings;
use utf8;
use vars qw( $VERSION );

$VERSION = '0.31';

sub singular {
   return qw/
   second  Sekunde
   minute  Minute
   hour    Stunde
   day     Tag
   week    Woche
   month   Monat
   year    Jahr
   /
}

sub plural {
   return qw/
   second  Sekunden
   minute  Minuten
   hour    Stunden
   day     Tage
   week    Wochen
   month   Monate
   year    Jahre
   /
}

sub other {
   return qw/
   and     und
   ago     vor
   /,
   zero => q{Nullsekunden},
}

1;

__END__