frontend dialog for "clear cached files"

This commit is contained in:
dakkar 2025-06-24 16:16:14 +01:00
parent 50ca5e8688
commit d847dd00c5
3 changed files with 71 additions and 7 deletions

30
locales/index.d.ts vendored
View file

@ -13265,6 +13265,36 @@ export interface Locale extends ILocale {
* Signup Reason
*/
"signupReason": string;
"clearCachedFilesOptions": {
/**
* Delete all cached remote files
*/
"title": string;
/**
* Only delete files older than:
*/
"olderThan": string;
/**
* now
*/
"now": string;
/**
* one week
*/
"oneWeek": string;
/**
* one month
*/
"oneMonth": string;
/**
* one year
*/
"oneYear": string;
/**
* Don't delete files used as avatars&c
*/
"keepFilesInUse": string;
};
}
declare const locales: {
[lang: string]: Locale;