Skip to content

Instantly share code, notes, and snippets.

@yasircs4
Last active October 4, 2019 09:45
Show Gist options
  • Save yasircs4/a449664b123abd1209cd1d17c5b9d0f5 to your computer and use it in GitHub Desktop.
Save yasircs4/a449664b123abd1209cd1d17c5b9d0f5 to your computer and use it in GitHub Desktop.
الأشهر الهجرية The Islamic calendar is the religious calendar used by Muslims to determine the proper days to observe religious events such as Ramadan, attend hajj and celebrate other holidays.
// @link https://pollylingu.al/ar/en/lessons/1138
const months = [
{ ar: 'مُحَرَّم', en: 'muharram',},
{ ar: 'صَفَر', en: 'safar',},
{ ar: 'رَبِيْعُ الأَوّل', en: 'rabi al-awwal',},
{ ar: 'رَبِيْعُ الثَّانِي', en: 'rabi al-thani',},
{ ar: 'جَمَادِي الأَوّل', en: 'jumadi al-awwal',},
{ ar: 'جَمَادِي الثَّانِي', en: 'jumadi al-thani',},
{ ar: 'رَجَب', en: 'rajab',},
{ ar: 'شَعْبَان', en: 'shaaban',},
{ ar: 'رَمَضَان', en: 'ramadan',},
{ ar: 'شَوَّال', en: 'shawwal',},
{ ar: 'ذُوالْقَعْدَة', en: 'dhu al-qaada',},
{ ar: 'ذُوالْحِجَّة', en: 'dhu al-hijja',},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment