1
0

add option to keep CWs with "RE:" prefix

This commit is contained in:
Hazelnoot
2025-06-04 14:20:06 -04:00
parent dae544b353
commit 3bf1cb1545
6 changed files with 51 additions and 22 deletions
+16
View File
@@ -13217,6 +13217,22 @@ export interface Locale extends ILocale {
* Hibernated
*/
"hibernated": string;
/**
* When replying to a post with a Content Warning, automatically use the same CW for the reply.
*/
"keepCwDescription": string;
/**
* Disabled (do not keep CWs)
*/
"keepCwDisabled": string;
/**
* Enabled (copy CWs verbatim)
*/
"keepCwEnabled": string;
/**
* Enabled (copy CW and prepend "RE:", like email)
*/
"keepCwPrependRe": string;
}
declare const locales: {
[lang: string]: Locale;