1
0
mirror of https://git.boykissers.com/pawkey/pawkey-sk.git synced 2025-12-20 04:04:16 +00:00

add new note search file types (module, flash) and optimize file type query

This commit is contained in:
Hazelnoot
2025-02-13 09:28:46 -05:00
parent 5276d6024d
commit ed981a6970
8 changed files with 135 additions and 59 deletions

36
locales/index.d.ts vendored
View File

@@ -11706,6 +11706,42 @@ export interface Locale extends ILocale {
*/
"title": string;
};
"_noteSearch": {
/**
* Sort by newest to oldest
*/
"newestToOldest": string;
/**
* File Type
*/
"fileType": string;
"_fileType": {
/**
* None
*/
"none": string;
/**
* Images
*/
"image": string;
/**
* Videos
*/
"video": string;
/**
* Audio
*/
"audio": string;
/**
* Module
*/
"module": string;
/**
* Flash
*/
"flash": string;
};
};
}
declare const locales: {
[lang: string]: Locale;