1
0
Fork 0
mirror of https://github.com/Luzifer/go-holidays.git synced 2024-10-18 06:04:19 +00:00

Allow to query localized name

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-12-27 05:04:34 +01:00
parent 3307a07901
commit c361e5ea47
Signed by: luzifer
GPG key ID: 0066F03ED215AD7D

View file

@ -65,6 +65,7 @@ func handleHolidays(res http.ResponseWriter, r *http.Request) {
var (
countryCode = vars["country-code"]
format = vars["format"]
locale = r.FormValue("locale")
year = time.Now().Year()
)
@ -99,8 +100,13 @@ func handleHolidays(res http.ResponseWriter, r *http.Request) {
case "ics":
cal := iCalendar{}
for _, h := range outputSet {
name := h.Name
if h.LocalizedName != nil && h.LocalizedName[locale] != "" {
name = h.LocalizedName[locale]
}
cal.Events = append(cal.Events, iCalendarEvent{
Summary: h.Name,
Summary: name,
Date: h.ParsedDate,
UID: fmt.Sprintf("%s_%s@hoiday-api.fyi", countryCode, h.ParsedDate.Format("20060102")),
})