| Time-Elapsed documentation | Contained in the Time-Elapsed distribution. |
Time::Elapsed::Lang::TR - Turkish language file.
Private module.
This document describes version 0.31 of Time::Elapsed::Lang::TR
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::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__