In UploadControl there is new validation rule for MaxLenght with message in form of "The maximum allowed number of uploaded files is %i". But %i is not sprintf specifier. For integer there shoud be %d specifier. This change brakes our translation module.
Possible Solution
Change message to "The maximum allowed number of uploaded files is %d" or set it to null.
Version: 3.1.11
Bug Description
In UploadControl there is new validation rule for MaxLenght with message in form of "The maximum allowed number of uploaded files is %i". But %i is not sprintf specifier. For integer there shoud be %d specifier. This change brakes our translation module.
Possible Solution
Change message to "The maximum allowed number of uploaded files is %d" or set it to null.