add UI for testing word mutes

This commit is contained in:
Hazelnoot 2025-05-10 22:32:19 -04:00
parent 9dbdb97bb5
commit 32b860c352
3 changed files with 102 additions and 34 deletions

24
locales/index.d.ts vendored
View file

@ -12969,6 +12969,30 @@ export interface Locale extends ILocale {
*/
"text": string;
};
/**
* Test word mutes
*/
"wordMuteTestLabel": string;
/**
* Enter some text here to test your word mute patterns. The matched words, if any, will be displayed below.
*/
"wordMuteTestDescription": string;
/**
* Test
*/
"wordMuteTestTest": string;
/**
* Matched words: {words}
*/
"wordMuteTestMatch": ParameterizedString<"words">;
/**
* No results yet, enter some text and click "Test" to check it.
*/
"wordMuteTestNoResults": string;
/**
* Text does not match any word mutes.
*/
"wordMuteTestNoMatch": string;
}
declare const locales: {
[lang: string]: Locale;