From 74fc9a851ee3441f5aca8d32ec53955ba18bfe7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Dembowski?= Date: Mon, 26 Sep 2022 13:37:50 +0000 Subject: [PATCH 1/2] [en] Update events.js --- locale/en/calendar/events.js | 1 + 1 file changed, 1 insertion(+) diff --git a/locale/en/calendar/events.js b/locale/en/calendar/events.js index c16fa0a68..55198a16d 100644 --- a/locale/en/calendar/events.js +++ b/locale/en/calendar/events.js @@ -94,6 +94,7 @@ module.exports = [ new Event('{https://en.wikipedia.org/wiki/2022_Oslo_shooting=Oslo Pride Shooting} Remembrance Day', '_black-ribbon', 6, day(25), EventLevel.Day), new Event('{/terminology#two%20spirit=Two-Spirit} and Indigenous LGBTQQIA+ Awareness to Celebration Day (Canada)', 'Two Spirit_', 3, day(21), EventLevel.Day, ['two spirit']), new Event('Marriage Equality Day (Slovenia)', '_hrc', 7, day(8), EventLevel.Day), + new Event('Marriage Equality Day (Andorra)', '_hrc', 2, day(17), EventLevel.Day), new Event('Butch Appreciation Day', '_Butch', 8, day(18), EventLevel.Day), // --- dynamic date --- 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 2/2] [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), ];