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__ =pod =encoding utf8 =head1 NAME Time::Elapsed::Lang::TR - Turkish language file. =head1 SYNOPSIS Private module. =head1 DESCRIPTION This document describes version C<0.31> of C released on C<9 February 2011>. Private module. =head1 METHODS =head2 singular =head2 plural =head2 other =head1 SEE ALSO L. =head1 AUTHOR Burak Gursoy . =head1 COPYRIGHT Copyright 2007 - 2011 Burak Gursoy. All rights reserved. =head1 LICENSE 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. =cut