diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-06-04 14:20:06 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-06-04 14:20:06 -0400 |
| commit | 3bf1cb1545c09e970fa0e308e35af5620593f840 (patch) | |
| tree | 05350926b5fce7936205acfb012ad1aa277c0bd6 /locales | |
| parent | merge: Rework queries and add indexes to improve timeline performance (!1091) (diff) | |
| download | sharkey-3bf1cb1545c09e970fa0e308e35af5620593f840.tar.gz sharkey-3bf1cb1545c09e970fa0e308e35af5620593f840.tar.bz2 sharkey-3bf1cb1545c09e970fa0e308e35af5620593f840.zip | |
add option to keep CWs with "RE:" prefix
Diffstat (limited to 'locales')
| -rw-r--r-- | locales/index.d.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/locales/index.d.ts b/locales/index.d.ts index cee973a0a2..9c7cf467ba 100644 --- a/locales/index.d.ts +++ b/locales/index.d.ts @@ -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; |