From d1331805e3ecf3b09ae999f354846b2eeb553a3b Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 17 Dec 2025 11:08:08 +0000 Subject: [PATCH] Test invalid i18n change --- src/SlashCommands.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SlashCommands.tsx b/src/SlashCommands.tsx index cf87bc79d0..2b7b51bb07 100644 --- a/src/SlashCommands.tsx +++ b/src/SlashCommands.tsx @@ -68,7 +68,7 @@ export const Commands = [ new Command({ command: "spoiler", args: "", - description: _td("slash_command|spoiler"), + description: _td("test|not_a_valid_translation"), runFn: function (cli, roomId, threadId, message = "") { return successSync(ContentHelpers.makeHtmlMessage(message, `${message}`)); },