Localization for Ethiopian date, time and number Nodejs implementation
alfa-geez is a light-weight package that makes an easy way for converting other calendar(date-time) to Ethiopic datetime. Currently alfa-aeez package supports conversion from
- Gregorian Calendar
- From Any time zone to Ethiopic time
Install via NPM:
$ npm install alfa-geez-nodevar alfaGeez = require('alfa-geez-node');
var date = new Date(); // Create new date
var alfaGeezDatetime = new alfaGeez.DateTime(date);
var eth_datetime = alfaGeezDatetime.convert(
local = alfaGeez.Local.ETHIOPIC,
language = alfaGeez.Language.AMHARIC
); // Return key-value paired datetime
// output => { year: 2012, month: 11, day: 2, hour: 11, minute: 45, second: 20 }Local.ETHIOPICto Ethiopic date timeLocal.GREGORIANto Gregorian date time
Langauge.ARABICfor Arabic LanguageLangauge.COPTICfor Greek LanguageLangauge.GEEZfor GEEZ LanguageLangauge.ENGLISHfor ENGLISH LanguageLangauge.AMHARICfor AMHARIC LanguageLangauge.TIGRINYAfor TIGRINYA Language
$ npm testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING
This project is licensed under the terms of the MIT license.