Date::Ethiopic::ER::gez - Ge'ez Calendar Data for L<Date::Ethiopic>.


NAME

Date::Ethiopic::ER::gez - Ge'ez Calendar Data for the Date::Ethiopic manpage.


SYNOPSIS

 use Date::Ethiopic::ER::gez;
 #
 #  typical instantiation:
 #
 my $gez = new Date::Ethiopic::ER::gez ( ical => '19950629' );
 #
 # Print Ge'ez day and month names:
 #
 print "  Day   Name: ", $gez->day_name, "\n";
 print "  Month Name: ", $gez->month_name, "\n";
 #
 # POSIX long date format:
 #
 print "  Long  Date: ", $gez->long_date, "\n";
 print "  Long  Date: ", $gez->long_date('ethio'), "\n";
 #
 # POSIX full date format:
 #
 print "  Full  Date: ", $gez->full_date, "\n";
 #
 # Convert all numbers into Ethiopic:
 #
 print "  Full  Date: ", $gez->full_date('ethio'), "\n";
 #
 # Turn transcription on:
 #
 $gez->useTranscription ( 1 );
 print "  Full  Date: ", $gez->full_date, "\n";
 #
 # Turn transcription off:
 #
 $gez->useTranscription ( 0 );
 print "  Full  Date: ", $gez->full_date, "\n";


DESCRIPTION

The Date::Ethiopic::ER::gez module provides methods for accessing date information in the Ethiopic calendar system. The module will also convert dates to and from the Gregorian system.


CREDITS

Yeha: http://yeha.sourceforge.net


REQUIRES

Date::Ethiopic, which is distributed in the same package with this file.


COPYRIGHT

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


BUGS

None presently known.


AUTHOR

Daniel Yacob, dyacob@cpan.org


SEE ALSO

The Yeha Project: http://yeha.sourceforge.net

 Date::Ethiopic::ER::gez - Ge'ez Calendar Data for L<Date::Ethiopic>.