[Video] Add a string for localization (#5240)

This commit is contained in:
Hailey 2024-09-09 12:44:41 -07:00 committed by GitHub
parent 9e1eb1f9f1
commit 723a5e488e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 79 additions and 50 deletions

View file

@ -180,6 +180,11 @@ export function useUploadVideo({
msg`You've reached your daily limit for video uploads (too many videos)`,
)
break
case 'Account is not old enough to upload videos':
message = _(
msg`Your account is not yet old enough to upload videos. Please try again later.`,
)
break
default:
message = e.message
break