[pl] Update events.js

This commit is contained in:
Paweł Dembowski 2022-09-26 13:39:37 +00:00
parent 74fc9a851e
commit b62f0fb962

View File

@ -119,4 +119,16 @@ module.exports = [
}
}
}, EventLevel.Day),
// Sep 24 - Oct 1
new Event('{https://www.facebook.com/voicecelebration/=Tydzień Głosu Osób Queerowych w Iranie}', 'Progress Pride', 9, function* (monthDays) {
let lastDay = null;
for (let d of monthDays) {
if (d.day >= 24) {
yield d;
}
lastDay = d;
}
yield new Day(lastDay.year, 10, 1);
}, EventLevel.Week),
];