From 1ae066287218f96630e8765f518d974ba020f6ce Mon Sep 17 00:00:00 2001
From: Michael Telatynski <7t3chguy@gmail.com>
Date: Fri, 14 Apr 2023 09:58:08 +0100
Subject: [PATCH] Update setting description to match reality (#10600)
---
src/i18n/strings/en_EN.json | 2 +-
src/settings/Settings.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/i18n/strings/en_EN.json b/src/i18n/strings/en_EN.json
index 9d2ade976e..438f64e355 100644
--- a/src/i18n/strings/en_EN.json
+++ b/src/i18n/strings/en_EN.json
@@ -1017,7 +1017,7 @@
"Surround selected text when typing special characters": "Surround selected text when typing special characters",
"Automatically replace plain text Emoji": "Automatically replace plain text Emoji",
"Enable Markdown": "Enable Markdown",
- "Start messages with /plain
to send without markdown and /md
to send with.": "Start messages with /plain
to send without markdown and /md
to send with.",
+ "Start messages with /plain
to send without markdown.": "Start messages with /plain
to send without markdown.",
"Mirror local video feed": "Mirror local video feed",
"Match system theme": "Match system theme",
"Use a system font": "Use a system font",
diff --git a/src/settings/Settings.tsx b/src/settings/Settings.tsx
index a4271653d7..5c78f30134 100644
--- a/src/settings/Settings.tsx
+++ b/src/settings/Settings.tsx
@@ -683,7 +683,7 @@ export const SETTINGS: { [setting: string]: ISetting } = {
displayName: _td("Enable Markdown"),
description: () =>
_t(
- "Start messages with /plain
to send without markdown and /md
to send with.",
+ "Start messages with /plain
to send without markdown.",
{},
{ code: (sub) => {sub}
},
),