{"id":28430971,"url":"https://github.com/elixir-cldr/cldr_calendars_ethiopic","last_synced_at":"2026-01-20T16:50:51.658Z","repository":{"id":57499620,"uuid":"226960410","full_name":"elixir-cldr/cldr_calendars_ethiopic","owner":"elixir-cldr","description":"Ethiopic localised calendar for Elixir and CLDR","archived":false,"fork":false,"pushed_at":"2025-03-19T00:27:56.000Z","size":327,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-12T08:49:56.708Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elixir","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elixir-cldr.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2019-12-09T20:22:45.000Z","updated_at":"2025-03-19T00:27:13.000Z","dependencies_parsed_at":"2025-07-04T17:47:48.923Z","dependency_job_id":null,"html_url":"https://github.com/elixir-cldr/cldr_calendars_ethiopic","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/elixir-cldr/cldr_calendars_ethiopic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixir-cldr%2Fcldr_calendars_ethiopic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixir-cldr%2Fcldr_calendars_ethiopic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixir-cldr%2Fcldr_calendars_ethiopic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixir-cldr%2Fcldr_calendars_ethiopic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elixir-cldr","download_url":"https://codeload.github.com/elixir-cldr/cldr_calendars_ethiopic/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elixir-cldr%2Fcldr_calendars_ethiopic/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267464525,"owners_count":24091505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-05T14:30:41.251Z","updated_at":"2026-01-20T16:50:51.615Z","avatar_url":"https://github.com/elixir-cldr.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ethiopic Calendar\n\nThis library implements the Ethiopic calendar.\n\nFrom [wikipedia](https://en.wikipedia.org/wiki/Ethiopian_calendar):\n\nThe Ethiopian calendar (Amharic: የኢትዮጵያ ዘመን አቆጣጠር; yä'Ityoṗṗya zëmän aḳoṭaṭär) or Eritrean calendar is the principal calendar used in Ethiopia and also serves as the liturgical year for Christians in Eritrea and Ethiopia belonging to the Eritrean Orthodox Tewahedo Church, Ethiopian Orthodox Tewahedo Church, Eastern Catholic Churches, the Coptic Orthodox Church of Alexandria, and P'ent'ay (Ethiopian-Eritrean Evangelical) Churches (most Protestants in the diaspora have the option of choosing the Ethiopian calendar and/or the Gregorian calendar for religious holidays, with this option being used when the corresponding eastern celebration is not a public holiday in the western world). The Ethiopian calendar is a solar calendar which in turn derives from the Egyptian calendar, but like the Julian calendar, it adds a leap day every four years without exception, and begins the year on August 29 or August 30 in the Julian calendar. A gap of 7–8 years between the Ethiopian and Gregorian calendars results from an alternative calculation in determining the date of the Annunciation.\n\nLike the Coptic calendar, the Ethiopic calendar has 12 months of 30 days plus 5 or 6 epagomenal days, which comprise a thirteenth month. The Ethiopian months begin on the same days as those of the Coptic calendar, but their names are in Ge'ez. A 6th epagomenal day is added every 4 years, without exception, on August 29 of the Julian calendar, 6 months before the corresponding Julian leap day. Thus the first day of the Ethiopian year, 1 Mäskäräm, for years between 1900 and 2099 (inclusive), is usually September 11 (Gregorian). However, it falls on September 12 in years before the Gregorian leap year.\n\n## Usage\n\n[ex_cldr_calendars_ethiopic](https://hex.pm/packages/ex_cldr_calendars_ethiopic) conforms to both the `Calendar` and `Cldr.Calendar` behaviours and therefore the functions in the `Date`, `DateTime`, `NaiveDateTime`, `Time` and `Calendar` functions are supported.\n\nFor Elixir versions up to and including 1.9, a date can be created by:\n```elixir\niex\u003e {:ok, date} = Date.new(2012, 3, 30, Cldr.Calendar.Ethiopic]\n{:ok, ~D[2012-03-30 Cldr.Calendar.Ethiopic]}\n```\nFor Elixir version 1.10 and later `Sigil_D` supports user-defined calendars:\n```\niex\u003e ~D[2012-03-30 Cldr.Calendar.Ethiopic]\n~D[2012-03-30 Cldr.Calendar.Ethiopic]\n```\n\n## Localization\n\n`ex_cldr_calendars_ethiopic` depends on [ex_cldr_calendars](https://hex.pm/packages/ex_cldr_calendars) which supports calendar localization. For full date and time formatting see [ex_cldr_dates_times](https://hex.pm/packages/ex_cldr_dates_times).\n\nBasic localization is executed by the `Cldr.Calendar.localize/3`. For example:\n\n```elixir\niex\u003e {:ok, date} = Date.new(2012,03,30, Cldr.Calendar.Ethiopic)\n{:ok, ~D[2012-03-30 Cldr.Calendar.Ethiopic]}\n\niex\u003e Cldr.Calendar.localize(date, :month, locale: \"en\")\n\"Hator\"\n\niex\u003e Cldr.Calendar.localize(date, :month, locale: \"am\")\n\"ኅዳር\"\n\niex\u003e Cldr.Calendar.localize(date, :day_of_week, locale: \"en\")\n\"Tue\"\n\niex\u003e Cldr.Calendar.localize(date, :day_of_week, locale: \"am\")\n\"ማክሰ\"\n```\n\n## Relationship to other libraries\n\nThis library is part of the [CLDR](https://cldr.unicode.org)-based libraries for Elixir including:\n\n* [ex_cldr](https://hex.pm/packages/ex_cldr)\n* [ex_cldr_numbers](https://hex.pm/packages/ex_cldr_numbers)\n* [ex_cldr_dates_times](https://hex.pm/packages/ex_cldr_dates_times)\n* [ex_cldr_units](https://hex.pm/packages/ex_cldr_units)\n* [ex_cldr_lists](https://hex.pm/packages/ex_cldr_lists)\n* [ex_cldr_messages](https://hex.pm/packages/ex_cldr_messages)\n* [ex_cldr_calendars](https://hex.pm/packages/ex_cldr_calendars)\n* [ex_cldr_currencies](https://hex.pm/packages/ex_cldr_currencies)\n\n## Installation\n\nThe package can be installed by adding `cldr_calendars_ethiopic` to your list of dependencies in `mix.exs`:\n\n```elixir\ndef deps do\n  [\n    {:ex_cldr_calendars_ethiopic, \"~\u003e 1.0\"}\n  ]\nend\n```\nDocumentation can be found at [https://hexdocs.pm/ex_cldr_calendars_ethiopic](https://hexdocs.pm/ex_cldr_calendars_ethiopic).\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felixir-cldr%2Fcldr_calendars_ethiopic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felixir-cldr%2Fcldr_calendars_ethiopic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felixir-cldr%2Fcldr_calendars_ethiopic/lists"}