diff --git a/.gitignore b/.gitignore index d089d77..92e39a5 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ node_modules /published /analytics/database.sqlite /analytics/RAW +/public/gdb.zip diff --git a/build/_concats.js b/build/_concats.js index a4754c2..925daff 100644 --- a/build/_concats.js +++ b/build/_concats.js @@ -1,101 +1,7 @@ module.exports = exports = [ - { - output: 'public/en/printable.md', - sources: [ - 'public/en/index.md', - 'public/en/what-is-gender.md', - 'public/en/history.md', - 'public/en/euphoria.md', - 'public/en/physical-dysphoria.md', - 'public/en/biochemical-dysphoria.md', - 'public/en/social-dysphoria.md', - 'public/en/societal-dysphoria.md', - 'public/en/sexual-dysphoria.md', - 'public/en/presentational-dysphoria.md', - 'public/en/existential-dysphoria.md', - 'public/en/managed-dysphoria.md', - 'public/en/impostor-syndrome.md', - 'public/en/am-i-trans.md', - 'public/en/diagnoses.md', - 'public/en/treatment.md', - 'public/en/causes.md', - 'public/en/chromosomes.md', - 'public/en/hormones.md', - 'public/en/second-puberty-masc.md', - 'public/en/second-puberty-fem.md', - 'public/en/conclusion.md', - ], - meta: { - title: 'The Gender Dysphoria Bible', - description: 'A dive into the multitude of ways that gender dysphoria manifests and what it means to be transgender.', - classes: [ 'gdb', 'longform' ], - preBody: '_disclaimer', - }, - }, - { - output: 'public/zh/printable.md', - sources: [ - 'public/zh/index.md', - 'public/zh/什么是性别.md', - 'public/zh/历史.md', - 'public/zh/亢奋.md', - 'public/zh/身体烦躁.md', - 'public/zh/生化烦躁.md', - 'public/zh/社交烦躁.md', - 'public/zh/社会烦躁.md', - 'public/zh/性烦躁.md', - 'public/zh/外表烦躁.md', - 'public/zh/存在烦躁.md', - 'public/zh/掌控烦躁.md', - 'public/zh/冒名顶替综合征.md', - 'public/zh/诊断.md', - 'public/zh/治疗.md', - 'public/zh/成因.md', - 'public/zh/染色体.md', - 'public/zh/激素.md', - 'public/zh/雄二青春期.md', - 'public/zh/雌二青春期.md', - 'public/zh/结语.md', - ], - meta: { - title: '性别烦躁指南', - description: '为那些正在质疑探索中的人、那些在跨性别道路上的人和单纯想成为盟友的人提供资源。', - classes: [ 'gdb', 'longform' ], - preBody: '_disclaimer', - }, - }, - { - output: 'public/es/imprimible.md', - sources: [ - 'public/es/index.md', - 'public/es/que-es-el-genero.md', - 'public/es/historia.md', - 'public/es/euforia.md', - 'public/es/disforia-fisica.md', - 'public/es/disforia-bioquimica.md', - 'public/es/disforia-social.md', - 'public/es/disforia-societal.md', - 'public/es/disforia-sexual.md', - 'public/es/disforia-de-presentacion.md', - 'public/es/disforia-historica.md', - 'public/es/disforia-gestionada.md', - 'public/es/sindrome-del-impostor.md', - 'public/es/diagnosticos.md', - 'public/es/tratamiento.md', - 'public/es/causas.md', - 'public/es/cromosomas.md', - 'public/es/hormonas.md', - 'public/es/segunda-pubertad-masc.md', - 'public/es/segunda-pubertad-fem.md', - 'public/es/conclusion.md', - ], - meta: { - title: 'La Biblia de la Disforia de Género', - lang: 'es', - description: 'Un clavado a las multitudes de formas en que se manifiesta la disforia de género y lo que significa ser transgénero.', - classes: [ 'gdb', 'longform' ], - preBody: '_declaracion', - }, - }, + require('../public/en/_concat.json'), + require('../public/zh/_concat.json'), + require('../public/es/_concat.json'), + require('../public/de/_concat.json'), ]; diff --git a/public/de/_concat.json b/public/de/_concat.json new file mode 100644 index 0000000..06ae36a --- /dev/null +++ b/public/de/_concat.json @@ -0,0 +1,34 @@ +{ + "output": "public/de/druckbar.md", + "sources": [ + "public/de/index.md", + "public/de/was-ist-gender.md", + "public/de/geschichte.md", + "public/de/euphorie.md", + "public/de/körperliche-dysphorie.md", + "public/de/biochemische-dysphorie.md", + "public/de/soziale-dysphorie.md", + "public/de/gesellschaftliche-dysphorie.md", + "public/de/sexuelle-dysphorie.md", + "public/de/präsentationsdysphorie.md", + "public/de/existentielle-dysphorie.md", + "public/de/gemanagte-dysphorie.md", + "public/de/impostor-syndrom.md", + "public/de/bin-ich-trans.md", + "public/de/diagnose.md", + "public/de/behandlung.md", + "public/de/ursache.md", + "public/de/chromosomen.md", + "public/de/hormone.md", + "public/de/androgene-zweite-pubertät.md", + "public/de/östrogene-zweite-pubertat.md", + "public/de/zusammenfassung.md" + ], + "meta": { + "title": "Die Gender Dysphorie Bibel", + "lang": "de", + "description": "Eine ressource für diejenigen, die ihr geschlecht hinterfragen, sich bereits auf einer Gender-Reise befinden oder einfach nur mehr darüber erfahren möchten, was es bedeutet, transgender zu sein.", + "classes": [ "gdb", "longform" ], + "preBody": "_disclaimer" + } +} diff --git a/public/de/_images/_titlecard.png b/public/de/_images/_titlecard.png index 3e616ea..28bedd2 100644 Binary files a/public/de/_images/_titlecard.png and b/public/de/_images/_titlecard.png differ diff --git a/public/de/_menu.hbs b/public/de/_menu.hbs index 5c45ef4..33d629f 100644 --- a/public/de/_menu.hbs +++ b/public/de/_menu.hbs @@ -1,28 +1,28 @@ diff --git a/public/de/androgene-zweite-pubertät.md b/public/de/androgene-zweite-pubertät.md index 38d1585..03563c1 100644 --- a/public/de/androgene-zweite-pubertät.md +++ b/public/de/androgene-zweite-pubertät.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Androgene zweite Pubertät 101" linkTitle: "Androgene Pubertät" -description: "What to expect from masculinizing HRT" +description: "Was ist von einer maskulinisierenden Hormonersatztherapie zu erwarten?" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/behandlung.md b/public/de/behandlung.md index 5b9a087..6ac02ba 100644 --- a/public/de/behandlung.md +++ b/public/de/behandlung.md @@ -1,7 +1,7 @@ --- date: "2020-01-26T20:41:55.827Z" title: "Die Behandlung von Gender Dysphorie" -description: "Transition is the cure." +description: "Übergang ist das Heilmittel." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/bin-ich-trans.md b/public/de/bin-ich-trans.md index bf4bfcc..f907aea 100644 --- a/public/de/bin-ich-trans.md +++ b/public/de/bin-ich-trans.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Bin ich Trans?" linkTitle: "Bin ich Trans?" -description: "A Roadmap To Figuring Out The Toughest Question" +description: "Eine Karte, die ihnen hilft, die schwierigsten fragen zu beantworten" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/biochemische-dysphorie.md b/public/de/biochemische-dysphorie.md index 9aed058..1ac5d4c 100644 --- a/public/de/biochemische-dysphorie.md +++ b/public/de/biochemische-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Biochemische Dysphorie" linkTitle: "Biochemische Dysphorie" -description: "The very real and biological factors of Gender Dysphoria that cause mental disturbance." +description: "Die sehr realen und biologischen Faktoren der Geschlechtsdysphorie, die psychische Störungen verursachen." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/chromosomen.md b/public/de/chromosomen.md index 11c38b1..94b86cc 100644 --- a/public/de/chromosomen.md +++ b/public/de/chromosomen.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Störungen der Geschlechtsentwicklung: Gender ist nicht chromosomal" linkTitle: "Chromosomen" -description: "DNA is more what you'd call guidelines, than actual rules." +description: "DNA ist eher das, was man richtlinien nennt, als tatsächliche regeln." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/diagnose.md b/public/de/diagnose.md index 3320354..8ac6d71 100644 --- a/public/de/diagnose.md +++ b/public/de/diagnose.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie wird Gender Dysphorie diagnostiziert?" linkTitle: "Klinische Diagnosen" -description: "It's clinical." +description: "Es ist klinisch." preBody: '_disclaimer' lang: de classes: diff --git a/public/de/existentielle-dysphorie.md b/public/de/existentielle-dysphorie.md index 8317917..3407387 100644 --- a/public/de/existentielle-dysphorie.md +++ b/public/de/existentielle-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Existentielle Dysphorie" linkTitle: "Existentielle Dysphorie" -description: "I don't regret the things I have done, I regret the things I didn't do when I had the chance." +description: "Ich bereue nicht die Dinge, die ich getan habe, ich bereue die Dinge, zu denen ich keine Gelegenheit hatte." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/gemanagte-dysphorie.md b/public/de/gemanagte-dysphorie.md index c02feaa..fde9c74 100644 --- a/public/de/gemanagte-dysphorie.md +++ b/public/de/gemanagte-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Gemanagte Dysphorie: Das verkappte Gender" linkTitle: "Gemanagte Dysphorie" -description: "I don't regret the things I have done, I regret the things I didn't do when I had the chance." +description: "Die art und weise, wie wir damit fertig geworden sind." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/geschichte.md b/public/de/geschichte.md index 0fb6d4e..6ab48ca 100644 --- a/public/de/geschichte.md +++ b/public/de/geschichte.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Eine kurze Geschichtsstunde zu Gender Dysphorie" linkTitle: "Eine Geschichtstunde zu Gender Dysphorie" -description: "The origins of Gender Dysphoria and the current meaning today." +description: "Die Ursprünge der Geschlechtsdysphorie und die heutige Bedeutung." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/gesellschaftliche-dysphorie.md b/public/de/gesellschaftliche-dysphorie.md index 9140876..6f21c01 100644 --- a/public/de/gesellschaftliche-dysphorie.md +++ b/public/de/gesellschaftliche-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Gesellschaftliche Dysphorie" linkTitle: "Gesellschaftliche Dysphorie" -description: "Because a Role is a Role, and a Toll is a Toll, and it's a heavy toll to live the wrong role." +description: "Das Leben in der falschen Rolle fordert einen sehr hohen Tribut" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/hormone.md b/public/de/hormone.md index 210ce1b..b716f8d 100644 --- a/public/de/hormone.md +++ b/public/de/hormone.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Hormone: Wie sie funktionieren" linkTitle: "Wie Hormone funktionieren" -description: "It's nothing like magnets." +description: "Schlüssel, Schlösser und Autozündungen" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/index.md b/public/de/index.md index bfe001b..fbb1cd1 100644 --- a/public/de/index.md +++ b/public/de/index.md @@ -2,7 +2,7 @@ date: "2021-11-04T12:06:06.311Z" title: "Die Gender Dysphorie Bibel" linkTitle: Einleitung -description: "A dive into the multitude of ways that gender dysphoria manifests and what it means to be transgender." +description: "Ein Eintauchen in die Vielfalt der Arten, wie sich Gender-Dysphorie manifestiert und was es bedeutet, Transgender zu sein." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/körperliche-dysphorie.md b/public/de/körperliche-dysphorie.md index 806b92c..b33a258 100644 --- a/public/de/körperliche-dysphorie.md +++ b/public/de/körperliche-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Körperliche Dysphorie" linkTitle: "Körperliche Dysphorie" -description: "Body discomfort is only one of the many ways Gender Dysphoria manifests." +description: "Körperliche Unzufriedenheit ist nur eine von vielen Formen der Geschlechtsdysphorie." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/präsentationsdysphorie.md b/public/de/präsentationsdysphorie.md index a928428..13d7453 100644 --- a/public/de/präsentationsdysphorie.md +++ b/public/de/präsentationsdysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Präsentationsdysphorie" linkTitle: "Präsentationsdysphorie" -description: "Hoodies and sweatpants never go out of style." +description: "Hoodies und Jogginghosen kommen nie aus der Mode." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/sexuelle-dysphorie.md b/public/de/sexuelle-dysphorie.md index 2855e51..4e06b8b 100644 --- a/public/de/sexuelle-dysphorie.md +++ b/public/de/sexuelle-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Sexuelle Dysphorie" linkTitle: "Sexuelle Dysphorie" -description: "Sometimes a Cigar doesn't want to be smoked." +description: "Manchmal möchte eine Zigarre nicht geraucht werden." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/soziale-dysphorie.md b/public/de/soziale-dysphorie.md index 298fe61..04000d5 100644 --- a/public/de/soziale-dysphorie.md +++ b/public/de/soziale-dysphorie.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Wie sich Gender Dysphorie äußert: Soziale Dysphorie" linkTitle: "Soziale Dysphorie" -description: "Pronouns and Deadnames and Gendering, oh my." +description: "Pronomen, Totenamen und Geschlechtsannahme." preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/ursache.md b/public/de/ursache.md index 7aca35f..9f48dd9 100644 --- a/public/de/ursache.md +++ b/public/de/ursache.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Was ist die Ursache des Geschlechtskonflikts?" linkTitle: "Die Ursache des Geschlechtskonflikts" -description: "It's the hormones, baby." +description: "Chromosomen sind nur ein Ablenkungsmanöver, es sind die Hormone, die Sie im Auge behalten müssen" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/was-ist-gender.md b/public/de/was-ist-gender.md index c1fa3d6..bf3de38 100644 --- a/public/de/was-ist-gender.md +++ b/public/de/was-ist-gender.md @@ -1,7 +1,7 @@ --- date: "2021-11-04T22:05:11.183" title: "Was ist Gender?" -description: "How do we define the concept of Gender, and how does it differ from Sex?" +description: "Wie definieren wir das Konzept von Gender und wie unterscheidet es sich von Sex?" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/zusammenfassung.md b/public/de/zusammenfassung.md index 0bf9249..ce36073 100644 --- a/public/de/zusammenfassung.md +++ b/public/de/zusammenfassung.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Zusammenfassung" linkTitle: "Zusammenfassung" -description: "Enough with the gatekeeping already." +description: "GKein Gatekeeping mehr" preBody: '_disclaimer' lang: de siblings: diff --git a/public/de/östrogene-zweite-pubertat.md b/public/de/östrogene-zweite-pubertat.md index 05886c3..46b88bb 100644 --- a/public/de/östrogene-zweite-pubertat.md +++ b/public/de/östrogene-zweite-pubertat.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Östrogene zweite Pubertät 101" linkTitle: Östrogene Pubertät -description: "What to expect from feminizing HRT" +description: "Was Sie von einer feminisierenden Hormonersatztherapie erwarten können" preBody: '_disclaimer' lang: de siblings: diff --git a/public/en/_concat.json b/public/en/_concat.json new file mode 100644 index 0000000..e911bef --- /dev/null +++ b/public/en/_concat.json @@ -0,0 +1,33 @@ +{ + "output": "public/en/printable.md", + "sources": [ + "public/en/index.md", + "public/en/what-is-gender.md", + "public/en/history.md", + "public/en/euphoria.md", + "public/en/physical-dysphoria.md", + "public/en/biochemical-dysphoria.md", + "public/en/social-dysphoria.md", + "public/en/societal-dysphoria.md", + "public/en/sexual-dysphoria.md", + "public/en/presentational-dysphoria.md", + "public/en/existential-dysphoria.md", + "public/en/managed-dysphoria.md", + "public/en/impostor-syndrome.md", + "public/en/am-i-trans.md", + "public/en/diagnoses.md", + "public/en/treatment.md", + "public/en/causes.md", + "public/en/chromosomes.md", + "public/en/hormones.md", + "public/en/second-puberty-masc.md", + "public/en/second-puberty-fem.md", + "public/en/conclusion.md" + ], + "meta": { + "title": "The Gender Dysphoria Bible", + "description": "A dive into the multitude of ways that gender dysphoria manifests and what it means to be transgender.", + "classes": [ "gdb", "longform" ], + "preBody": "_disclaimer" + } +} diff --git a/public/en/hormones.md b/public/en/hormones.md index a963dd8..3f18ca7 100644 --- a/public/en/hormones.md +++ b/public/en/hormones.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Hormones: How do they work" linkTitle: "How Hormones Work" -description: "It's nothing like magnets." +description: "Keys, Locks, and Car Ignitions" preBody: '_disclaimer' siblings: prev: /en/chromosomes diff --git a/public/en/managed-dysphoria.md b/public/en/managed-dysphoria.md index 384fce5..d33dd30 100644 --- a/public/en/managed-dysphoria.md +++ b/public/en/managed-dysphoria.md @@ -2,7 +2,7 @@ date: "2020-01-26T20:41:55.827Z" title: "Managed Dysphoria: Gender in Disguise" linkTitle: "Managed Dysphoria" -description: "I don't regret the things I have done, I regret the things I didn't do when I had the chance." +description: "The ways we've coped." preBody: '_disclaimer' siblings: prev: /en/existential-dysphoria diff --git a/public/es/_concat.json b/public/es/_concat.json new file mode 100644 index 0000000..8ae8c6f --- /dev/null +++ b/public/es/_concat.json @@ -0,0 +1,33 @@ +{ + "output": "public/es/imprimible.md", + "sources": [ + "public/es/index.md", + "public/es/que-es-el-genero.md", + "public/es/historia.md", + "public/es/euforia.md", + "public/es/disforia-fisica.md", + "public/es/disforia-bioquimica.md", + "public/es/disforia-social.md", + "public/es/disforia-societal.md", + "public/es/disforia-sexual.md", + "public/es/disforia-de-presentacion.md", + "public/es/disforia-historica.md", + "public/es/disforia-gestionada.md", + "public/es/sindrome-del-impostor.md", + "public/es/diagnosticos.md", + "public/es/tratamiento.md", + "public/es/causas.md", + "public/es/cromosomas.md", + "public/es/hormonas.md", + "public/es/segunda-pubertad-masc.md", + "public/es/segunda-pubertad-fem.md", + "public/es/conclusion.md" + ], + "meta": { + "title": "La Biblia de la Disforia de Género", + "lang": "es", + "description": "Un clavado a las multitudes de formas en que se manifiesta la disforia de género y lo que significa ser transgénero.", + "classes": [ "gdb", "longform" ], + "preBody": "_declaracion" + } +} diff --git a/public/gdb.zip b/public/gdb.zip deleted file mode 100644 index 61bd620..0000000 Binary files a/public/gdb.zip and /dev/null differ diff --git a/public/zh/_concat.json b/public/zh/_concat.json new file mode 100644 index 0000000..1586309 --- /dev/null +++ b/public/zh/_concat.json @@ -0,0 +1,32 @@ +{ + "output": "public/zh/printable.md", + "sources": [ + "public/zh/index.md", + "public/zh/什么是性别.md", + "public/zh/历史.md", + "public/zh/亢奋.md", + "public/zh/身体烦躁.md", + "public/zh/生化烦躁.md", + "public/zh/社交烦躁.md", + "public/zh/社会烦躁.md", + "public/zh/性烦躁.md", + "public/zh/外表烦躁.md", + "public/zh/存在烦躁.md", + "public/zh/掌控烦躁.md", + "public/zh/冒名顶替综合征.md", + "public/zh/诊断.md", + "public/zh/治疗.md", + "public/zh/成因.md", + "public/zh/染色体.md", + "public/zh/激素.md", + "public/zh/雄二青春期.md", + "public/zh/雌二青春期.md", + "public/zh/结语.md" + ], + "meta": { + "title": "性别烦躁指南", + "description": "为那些正在质疑探索中的人、那些在跨性别道路上的人和单纯想成为盟友的人提供资源。", + "classes": [ "gdb", "longform" ], + "preBody": "_disclaimer" + } +} diff --git a/resources/gdb.acorn b/resources/gdb.acorn index bb71bec..7458de7 100644 Binary files a/resources/gdb.acorn and b/resources/gdb.acorn differ