Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
dd8eea4961
|
@ -8,4 +8,10 @@ module.exports = [
|
|||
new Event('Jahrestag der Ehe für alle in Belgien', null, 6, day(1), EventLevel.Day),
|
||||
new Event('Jahrestag der Ehe für alle in Luxemburg', null, 1, day(1), EventLevel.Day),
|
||||
|
||||
// one-off events
|
||||
new Event('Ehe für alle in der Schweiz', 7, dayYear(1, 2022), EventLevel.Day),
|
||||
new Event('{https://www.csd-d.de/de/=CSD Düsseldorf}', 10, dayYear(16, 2021), EventLevel.Day),
|
||||
new Event('{https://csd-bielefeld.de/=CSD Bielefeld}', 10, dayYear(2, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/events/133873485389727=CSD Erfurt}', 10, dayYear(9, 2021), EventLevel.Day),
|
||||
|
||||
];
|
||||
|
|
|
@ -7,6 +7,7 @@ module.exports = [
|
|||
new Event('LGBT History Month (Ireland/Germany)', 'Progress Pride', 5, month, EventLevel.Month),
|
||||
new Event('Trans Visibility Month (Brazil)', 'Transgender', 1, month, EventLevel.Month),
|
||||
new Event('Lesbian Visibility Month (Brazil)', 'Lesbian', 8, month, EventLevel.Month),
|
||||
new Event('Diversity Month (Uruguay)', 'LGBTQ', 9, month, EventLevel.Month),
|
||||
|
||||
// static date
|
||||
new Event('Harvey Milk Day', null, 5, day(22), EventLevel.Day),
|
||||
|
@ -20,23 +21,23 @@ module.exports = [
|
|||
new Event('Marriage Equality Day (New Zealand)', null, 8, day(19), EventLevel.Day),
|
||||
new Event('Marriage Referendum Anniversary (Ireland)', null, 5, day(22), EventLevel.Day),
|
||||
new Event('Freedom to Marry Day (US)', null, 2, day(12), EventLevel.Day),
|
||||
new Event('Transgender HIV Testing Day (US)', 'Transgender', 4, day(18), EventLevel.Day),
|
||||
new Event('HIV Testing Day (US)', null, 6, day(27), EventLevel.Day),
|
||||
new Event('Black HIV Testing Day (US)', null, 2, day(7), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nthtd.html=Transgender HIV Testing Day} (US)', 'Transgender', 4, day(18), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/testingday.html=HIV Testing Day} (US)', null, 6, day(27), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nbhaad.html=Black HIV Testing Day} (US)', null, 2, day(7), EventLevel.Day),
|
||||
new Event('Anniversary of the Decriminalisation of Homosexuality in England and Wales (1967)', null, 7, day(27), EventLevel.Day),
|
||||
new Event('Anniversary of the Decriminalisation of Homosexuality in Scotland (1981)', null, 2, day(1), EventLevel.Day),
|
||||
new Event('Two Spirit Awareness Day', 'Two Spirit', 7, day(11), EventLevel.Day),
|
||||
new Event('Gay Men\'s HIV/AIDS Awareness Day (US)', null, 9, day(27), EventLevel.Day),
|
||||
new Event('HIV/AIDS and Aging Awareness Day (US)', null, 9, day(18), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/ngmhaad.html=Gay Men\'s HIV/AIDS Awareness Day} (US)', null, 9, day(27), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nhaad.html=HIV/AIDS and Aging Awareness Day} (US)', null, 9, day(18), EventLevel.Day),
|
||||
new Event('LGBT Center Awareness Day (US)', null, 10, day(19), EventLevel.Day),
|
||||
new Event('{https://twitter.com/_EQUALGROUND_/status/1440232964286124050=Lesbian Visibility Day} (Sri Lanka)', 'Lesbian', 9, day(21), EventLevel.Day),
|
||||
new Event('Latinx AIDS Awareness Day (US)', null, 10, day(15), EventLevel.Day),
|
||||
new Event('Southern HIV/AIDS Awareness Day (US)', null, 8, day(20), EventLevel.Day),
|
||||
new Event('Asian and Pacific Islander HIV/AIDS Awareness Day (US)', null, 5, day(19), EventLevel.Day),
|
||||
new Event('Youth HIV/AIDS Awareness Day (US)', null, 4, day(10), EventLevel.Day),
|
||||
new Event('Women and Girls HIV/AIDS Awareness Day (US)', null, 3, day(10), EventLevel.Day),
|
||||
new Event('Native HIV/AIDS Awareness Day (US)', null, 3, day(20), EventLevel.Day),
|
||||
new Event('HIV Long-Term Survivors Awareness Day (US)', null, 6, day(5), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nlaad.html=Latinx AIDS Awareness Day} (US)', null, 10, day(15), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/shaad.html=Southern HIV/AIDS Awareness Day} (US)', null, 8, day(20), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/napihaad.html=Asian and Pacific Islander HIV/AIDS Awareness Day} (US)', null, 5, day(19), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nyhaad.html=Youth HIV/AIDS Awareness Day} (US)', null, 4, day(10), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nwghaad.html=Women and Girls HIV/AIDS Awareness Day} (US)', null, 3, day(10), EventLevel.Day),
|
||||
new Event('{https://www.cdc.gov/hiv/library/awareness/nnhaad.html=Native HIV/AIDS Awareness Day} (US)', null, 3, day(20), EventLevel.Day),
|
||||
new Event('{https://www.hiv.gov/events/awareness-days/hiv-long-term-survivors-day=HIV Long-Term Survivors Awareness Day} (US)', null, 6, day(5), EventLevel.Day),
|
||||
new Event('Trans Visibility Day (Brazil)', 'Transgender', 1, day(29), EventLevel.Day),
|
||||
new Event('National Gay Pride Day (Brazil)', 'LGBTQ', 3, day(25), EventLevel.Day),
|
||||
new Event('Lesbian Visibility Day (Brazil)', 'Lesbian', 8, day(29), EventLevel.Day),
|
||||
|
|
|
@ -3,6 +3,7 @@ const {Event, day, week, month, dayYear, EventLevel} = require("../../src/calend
|
|||
module.exports = [
|
||||
// months
|
||||
new Event('Mes de la Historia LGBT (EE.UU.)', 'Progress Pride', 10, month, EventLevel.Month),
|
||||
new Event('Mes de la Diversidad (Uruguay)', 'LGBTQ', 9, month, EventLevel.Month),
|
||||
|
||||
// static date
|
||||
new Event('Día de la Igualdad Matrimonial (EE.UU.)', null, 6, day(26), EventLevel.Day),
|
||||
|
@ -21,18 +22,20 @@ module.exports = [
|
|||
new Event('Aniversario de la Sanción de la Ley de Identidad de Género en Argentina', 'Transgender', 5, day(9), EventLevel.Day),
|
||||
new Event('Aniversario del {https://es.wikipedia.org/wiki/Baile_de_los_cuarenta_y_uno=Baile de los Cuarenta y Uno} (México)', null, 11, day(18), EventLevel.Day),
|
||||
new Event('Día de la Comunidad Muxe (Vela de las Intrépidas)', 'Muxe', 11, day(15), EventLevel.Day),
|
||||
new Event('Día Nacional de la Libertad para Casarse (EE.UU.)', null, 2, day(12), EventLevel.Day),
|
||||
new Event('Día Nacional de la Prueba del VIH en Personas Transgénero (EE.UU.)', 'Transgender', 4, day(18), EventLevel.Day),
|
||||
new Event('Día Nacional de la Prueba del VIH (EE.UU.)', null, 6, day(27), EventLevel.Day),
|
||||
new Event('Día Nacional de Concientización sobre el VIH/SIDA entre las Personas de Raza Negra (EE.UU.)', null, 2, day(7), EventLevel.Day),
|
||||
new Event('Día Nacional de Concientización sobre el VIH/SIDA entre los Hombres Gais (EE.UU.)', null, 9, day(27), EventLevel.Day),
|
||||
new Event('Día Nacional de Concientización sobre el VIH/SIDA y el Envejecimiento (EE.UU.)', null, 9, day(18), EventLevel.Day),
|
||||
new Event('Día de la Libertad para Casarse (EE.UU.)', null, 2, day(12), EventLevel.Day),
|
||||
new Event('Día de la Prueba del VIH en Personas Transgénero (EE.UU.)', 'Transgender', 4, day(18), EventLevel.Day),
|
||||
new Event('Día de la Prueba del VIH (EE.UU.)', null, 6, day(27), EventLevel.Day),
|
||||
new Event('Día de Concientización sobre el VIH/SIDA entre las Personas de Raza Negra (EE.UU.)', null, 2, day(7), EventLevel.Day),
|
||||
new Event('Día de Concientización sobre el VIH/SIDA entre los Hombres Gais (EE.UU.)', null, 9, day(27), EventLevel.Day),
|
||||
new Event('Día de Concientización sobre el VIH/SIDA y el Envejecimiento (EE.UU.)', null, 9, day(18), EventLevel.Day),
|
||||
new Event('Día de la Conciencia de los Centros de la Comunidad LGBT (EE.UU.)', null, 10, day(19), EventLevel.Day),
|
||||
new Event('Día Nacional Latinx de Concientización sobre el VIH (EE.UU.)', null, 10, day(15), EventLevel.Day),
|
||||
new Event('Día Nacional de Concientización sobre el VIH/SIDA entre los Jóvenes (EE.UU.)', null, 4, day(10), EventLevel.Day),
|
||||
new Event('Día Nacional de Concientización sobre el VIH/SIDA entre las Mujeres y Niñas (EE.UU.)', null, 3, day(10), EventLevel.Day),
|
||||
new Event('Día Latinx de Concientización sobre el VIH (EE.UU.)', null, 10, day(15), EventLevel.Day),
|
||||
new Event('Día de Concientización sobre el VIH/SIDA entre los Jóvenes (EE.UU.)', null, 4, day(10), EventLevel.Day),
|
||||
new Event('Día de Concientización sobre el VIH/SIDA entre las Mujeres y Niñas (EE.UU.)', null, 3, day(10), EventLevel.Day),
|
||||
new Event('Día de Concientización para los Sobrevivientes a Largo Plazo del VIH (EE.UU.)', null, 6, day(5), EventLevel.Day),
|
||||
|
||||
|
||||
// one-off events
|
||||
new Event('{https://www.facebook.com/marchadelorgulloar/=Marcha del Orgullo Buenos Aires} (Argentina)', 11, dayYear(6, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/marchaporladiversidad.uy=Marcha por la Diversidad} (Uruguay)', 9, dayYear(24, 2021), EventLevel.Day),
|
||||
|
||||
];
|
||||
|
|
|
@ -25,6 +25,7 @@ module.exports = [
|
|||
new Event('{https://www.facebook.com/events/1593757500834654=13. Wrocławski Marsz Równości}', 'LGBTQ', 10, dayYear(2, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/events/1066052000600920=II Marsz Równości w Białymstoku}', 'LGBTQ', 10, dayYear(9, 2021), EventLevel.Day),
|
||||
new Event('{http://marszlublin.pl/=III Marsz Równości w Lublinie}', 'LGBTQ', 10, dayYear(23, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/events/1549709465370766=I Wodzisławski Marsz Równości}', 'LGBTQ', 10, dayYear(16, 2021), EventLevel.Day),
|
||||
|
||||
|
||||
// dynamic date
|
||||
|
|
|
@ -29,5 +29,8 @@ module.exports = [
|
|||
new Event('{https://dezanove.pt/marcha-do-orgulho-do-porto-avanca-a-3-1465870=Marcha do Orgulho LGBTI do Porto} (Portugal)', 'LGBTQ', 7, dayYear(3, 2021), EventLevel.Day),
|
||||
new Event('{https://dezanove.pt/o-primeiro-no-alentejo-beja-vai-1466394=Beja Pride} (Portugal)', 'LGBTQ', 7, dayYear(3, 2021), EventLevel.Day),
|
||||
new Event('{https://dezanove.pt/esta-vai-ser-a-primeira-marcha-do-1453592=2ª Marcha pelos Direitos LGBTI de Aveiro} (Portugal)', 'LGBTQ', 6, dayYear(12, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/events/805150373339790=21° Parada Da Diversidade LGBTI De Curitiba} (Brasil)', 'LGBTQ', 11, dayYear(14, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/events/357900524910000=25ª Parada do Orgulho LGBT de São Paulo} (Brasil)', 'LGBTQ', 6, dayYear(6, 2021), EventLevel.Day),
|
||||
new Event('{https://www.facebook.com/events/1175941416231293=15ª Parada do Orgulho LGBTI+ de Itaquaquecetuba} (Brasil)', 'LGBTQ', 8, dayYear(28, 2022), EventLevel.Day),
|
||||
|
||||
];
|
||||
|
|
Reference in New Issue