From 9063b319843e538889af3d1ab4e76c852ed8daed Mon Sep 17 00:00:00 2001 From: alexis Date: Mon, 30 Oct 2023 15:03:47 -0400 Subject: [PATCH] Clean up languages list --- CODE_OF_CONDUCT.md | 22 +++++++++++----------- scripts/compose.js | 12 +++--------- 2 files changed, 14 insertions(+), 20 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index c84526f..76e205b 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -17,23 +17,23 @@ diverse, inclusive, and healthy community. Examples of behavior that contributes to a positive environment for our community include: -* Demonstrating empathy and kindness toward other people -* Being respectful of differing opinions, viewpoints, and experiences -* Giving and gracefully accepting constructive feedback -* Accepting responsibility and apologizing to those affected by our mistakes, +- Demonstrating empathy and kindness toward other people +- Being respectful of differing opinions, viewpoints, and experiences +- Giving and gracefully accepting constructive feedback +- Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience -* Focusing on what is best not just for us as individuals, but for the +- Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: -* The use of sexualized language or imagery, and sexual attention or +- The use of sexualized language or imagery, and sexual attention or advances of any kind -* Trolling, insulting or derogatory comments, and personal or political attacks -* Public or private harassment -* Publishing others' private information, such as a physical or email +- Trolling, insulting or derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or email address, without their explicit permission -* Other conduct which could reasonably be considered inappropriate in a +- Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an +standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within diff --git a/scripts/compose.js b/scripts/compose.js index 286beb7..6e5fced 100644 --- a/scripts/compose.js +++ b/scripts/compose.js @@ -401,15 +401,9 @@ class EditorGrid extends Grid { this.languageInput = document.createElement("select"); this.languageInput.options.add(new Option("English", "en")); this.languageInput.options.add(new Option("Français", "fr")); - this.languageInput.options.add( - new Option("Deutsch (UI support coming soon)", "de"), - ); - this.languageInput.options.add( - new Option("Italian (UI support coming soon)", "it"), - ); - this.languageInput.options.add( - new Option("Spanish (UI support coming soon)", "es"), - ); + this.languageInput.options.add(new Option("Deutsch", "de")); + this.languageInput.options.add(new Option("Italiano", "it")); + this.languageInput.options.add(new Option("Español", "es")); this.languageInput.options.add(new Option("Other", null)); infoForm.appendChild(document.createElement("label")); infoForm.lastChild.textContent = "Language";