@@ -86,3 +86,74 @@ export const solarMonthNames = [
8686 "Baisakh" , "Jestha" , "Ashadh" , "Shrawan" , "Bhadra" , "Ashwin" ,
8787 "Kartik" , "Mangsir" , "Poush" , "Magh" , "Falgun" , "Chaitra"
8888] ;
89+
90+ /** Array of Tithi names (lunar days) in the Hindu calendar (Nepali transliteration).
91+ * Contains 30 entries representing the lunar phases:
92+ * - First 15 entries are for Shukla Paksha (waxing moon phase)
93+ * - Last 15 entries are for Krishna Paksha (waning moon phase)
94+ * @readonly
95+ */
96+ export const tithiNp = [
97+ "प्रतिपदा" , "द्वितीया" , "तृतीया" , "चतुर्थी" , "पञ्चमी" ,
98+ "षष्ठी" , "सप्तमी" , "अष्टमी" , "नवमी" , "दशमी" , "एकादशी" ,
99+ "द्वादशी" , "त्रयोदशी" , "चतुर्दशी" , "पूर्णिमा" , "प्रतिपदा" ,
100+ "द्वितीया" , "तृतीया" , "चतुर्थी" , "पञ्चमी" , "षष्ठी" ,
101+ "सप्तमी" , "अष्टमी" , "नवमी" , "दशमी" , "एकादशी" ,
102+ "द्वादशी" , "त्रयोदशी" , "चतुर्दशी" , "औंसी"
103+ ] ;
104+
105+ /** Array of Nakshatra names (lunar mansions/constellations) in the Hindu calendar (Nepali transliteration).
106+ * Contains 27 entries representing the celestial divisions along the ecliptic
107+ * through which the moon passes during its monthly cycle.
108+ * @readonly
109+ */
110+ export const nakshatraNp = [
111+ "अश्विनी" , "भरणी" , "कृत्तिका" , "रोहिणी" , "मृगशिरा" , "आर्द्रा" ,
112+ "पुनर्वसु" , "पुष्य" , "आश्लेषा" , "मघा" , "पूर्व फाल्गुनी" , "उत्तर फाल्गुनी" ,
113+ "हस्त" , "चित्रा" , "स्वाति" , "विशाखा" , "अनुराधा" , "ज्येष्ठा" , "मूल" ,
114+ "पूर्वाषाढा" , "उत्तराषाढा" , "श्रवण" , "धनिष्ठा" , "शतभिषा" ,
115+ "पूर्व भाद्रपद" , "उत्तर भाद्रपद" , "रेवती"
116+ ] ;
117+
118+ /** Array of Rashi names (zodiac signs) in the Hindu calendar (Nepali transliteration).
119+ * Contains 12 entries representing the zodiacal constellations
120+ * through which the sun appears to pass during its yearly cycle.
121+ * @readonly
122+ */
123+ export const rashiNp = [
124+ "मेष" , "वृष" , "मिथुन" , "कर्कट" , "सिंह" , "कन्या" ,
125+ "तुला" , "वृश्चिक" , "धनु" , "मकर" , "कुम्भ" , "मीन"
126+ ] ;
127+
128+ /** Array of Karana names (half of a lunar day) in the Hindu calendar (Nepali transliteration).
129+ * Contains 11 entries representing the different karanas that repeat
130+ * in a cycle throughout the lunar month.
131+ * @readonly
132+ */
133+ export const karanNp = [
134+ "बव" , "बालव" , "कौलव" , "तैतिल" , "गर" , "वणिज" ,
135+ "विष्टि" , "शकुनि" , "चतुष्पद" , "नाग" , "किंस्तुघ्न"
136+ ] ;
137+
138+ /** Array of Yoga names in the Hindu calendar (Nepali transliteration).
139+ * Contains 27 entries representing the angular relationship
140+ * between the sun and moon, calculated by their joint motion.
141+ * @readonly
142+ */
143+ export const yogaNp = [
144+ "विश्कम्भ" , "प्रीति" , "आयुष्मान" , "सौभाग्य" , "शोभन" ,
145+ "अतिगण्ड" , "सुकर्मा" , "धृति" , "शूल" , "गण्ड" , "वृद्धि" ,
146+ "ध्रुव" , "व्याघात" , "हर्षण" , "वज्र" , "सिद्धि" , "व्यतीपात" ,
147+ "वरीयान" , "परिघ" , "शिव" , "सिद्ध" , "साध्य" , "शुभ" , "शुक्ल" ,
148+ "ब्रह्मा" , "इन्द्र" , "वैधृति"
149+ ] ;
150+
151+ /** Array of Solar Month names in the Hindu calendar (Nepal variant) (Nepali transliteration).
152+ * Contains 12 entries representing the solar months
153+ * as used in the traditional Nepali calendar.
154+ * @readonly
155+ */
156+ export const solarMonthNamesNp = [
157+ "बैशाख" , "जेठ" , "असार" , "श्रावण" , "भदौ" , "आश्विन" ,
158+ "कार्तिक" , "मंसिर" , "पुष" , "माघ" , "फाल्गुन" , "चैत्र"
159+ ] ;
0 commit comments