-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translation of parshaEvent into Hebrew on Shabbats where there is no parsha #499
Comments
Thanks for the bug report. Maybe you could use something like this instead? let myHDate = new HDate(new Date(2025, 9, 11))
let sedra = getSedra(myHDate.getFullYear(), true).lookup(myHDate)
let event
if (sedra.chag) {
event = getHolidaysOnDate(myHDate, true)[0]
} else {
let parasha = sedra.parsha
event = new ParshaEvent(myHDate, parasha, true)
}
console.log(event.render('he')) // סוּכּוֹת ה׳ (חוה״מ) |
תודה לך על המענה, זה מקדם אותי! |
אני גם עם אותה בעיה, מה שאני חושב לעשות זה לבנות json פשוט עם כל מקרי הקצה האלה. לא אידיאלי, אבל יפתור את הבעיה |
There is some logic in the @hebcal/leyning package to render a title like "Shabbat Chol haMoed Sukkot" in both English and Hebrew. That API builds on top of @hebcal/core and also includes details on which exact verses are read on each day https://hebcal.github.io/api/leyning/functions/getLeyningOnDate.html |
שלום וברכה,
קודם כל תודה רבה על הספרייה המושקעת!!
אני רוצה להשתמש בספרייה כדי להציג את השם של השבת הנוכחית. בדרך כלל זה
ואני מגיע לזה כך:
אבל בשבתות חול המועד וכדומה שאין פרשה זה אמור להיות
וכדומה.
כרגע הוא מציג שבתות אלו בצורה פחות יפה להדפסה. למשל:
14/04/2025 הוא מציג
,
11/10/2025 הוא מציג
תודה מראש
The text was updated successfully, but these errors were encountered: