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-node
var 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.ETHIOPIC
to Ethiopic date timeLocal.GREGORIAN
to Gregorian date time
Langauge.ARABIC
for Arabic LanguageLangauge.COPTIC
for Greek LanguageLangauge.GEEZ
for GEEZ LanguageLangauge.ENGLISH
for ENGLISH LanguageLangauge.AMHARIC
for AMHARIC LanguageLangauge.TIGRINYA
for TIGRINYA Language
$ npm test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING
This project is licensed under the terms of the MIT license.