From b62f0fb9624079f56a6159e2d223188df5d66b1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Dembowski?= Date: Mon, 26 Sep 2022 13:39:37 +0000 Subject: [PATCH] [pl] Update events.js --- locale/pl/calendar/events.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/locale/pl/calendar/events.js b/locale/pl/calendar/events.js index 0720c333d..c60be46d4 100644 --- a/locale/pl/calendar/events.js +++ b/locale/pl/calendar/events.js @@ -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), ];