Translations

admin.attachmentsrestriction=Attachments Restriction
attachment.validation.filesize.errorMessage=File {0} is too large ({1}). Max file size: {2}.
attachment.validation.mimetype.errorMessage=File {0} has an invalid mimetype {1}.
attachment.validation.mimetype.allowedMimetypes=Allowed mimetypes: {0}
attachment.validation.mimetype.blockerMimetypes=Blocker mimetypes: {0}

XWiki.Attachment.Validation.Code.AttachmentMimetypeRestrictionClass_allowedMimetypes=Allowed Mimetypes
XWiki.Attachment.Validation.Code.AttachmentMimetypeRestrictionClass_allowedMimetypes.hint=Define the list of allowed attachment mimetypes. By default, this list is empty, but you can specify a comma-separated list of allowed mimetypes. Note that a joker star can be used to accept any media type. Once this list is not empty, any attachment with an unlisted mimetype will be rejected. For instance, if you want to only accept plain text and any kind of images, you can set the list to: text/plain,image/*
XWiki.Attachment.Validation.Code.AttachmentMimetypeRestrictionClass_blockedMimetypes=Blocked Mimetypes
XWiki.Attachment.Validation.Code.AttachmentMimetypeRestrictionClass_blockedMimetypes.hint=Define the list of rejected attachment mimetypes. By default, this list is empty, but you can specify a comma-separated list of blocked mimetypes. Note that a joker star can be used to accept any media type. Once this list is not empty, any attachment matching one of the listed mimetype will be rejected. For instance, if you want to reject plain text and any kind of images, you can set the list to: text/plain,image/*