Time::Elapsed::Lang::TR - Turkish language file.


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

Index


Code Index:

NAME

Top

Time::Elapsed::Lang::TR - Turkish language file.

SYNOPSIS

Top

Private module.

DESCRIPTION

Top

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

$VERSION = '0.31';

*plural = \&singular;

sub singular {
   return qw/
   second  saniye
   minute  dakika
   hour    saat
   day     gün
   week    hafta
   month   ay
   year    yıl
   /
}

sub other {
   return qw/
   and     ve
   ago     önce
   /,
   zero => q{sıfır saniye},
}

1;

__END__