web: add feature limits in almost all places

This commit is contained in:
Abdullah Atta
2025-07-14 12:35:22 +05:00
parent e6dc5ddfed
commit bce063e1bd
49 changed files with 295 additions and 314 deletions

View File

@@ -940,10 +940,10 @@ $headline$: Use starting line of the note as title.`,
encryptingAttachmentDesc: (name = "attachment") =>
t`Please wait while we encrypt ${name} for upload.`,
fileTooLarge: () => t`File too big`,
fileTooLargeDesc: (sizeInMB: number) =>
t`File size should be less than ${sizeInMB}MB`,
imageTooLarge: (sizeInMB: number) =>
t`Image size should be less than ${sizeInMB}MB`,
fileTooLargeDesc: (sizeInMB: string) =>
t`File size should be less than ${sizeInMB}`,
imageTooLarge: (sizeInMB: string) =>
t`Image size should be less than ${sizeInMB}`,
failToOpen: () => t`Failed to open`,
fileMismatch: () => t`File mismatch`,
noNoteProperties: () => t`Start writing to create a new note`,