You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently using a mix of ABP & Blazor, I use an EditForm with some data annotation and data validation.
The problem is that the error message is english only, is there a way to connect it to th abp localization ?
public class UserTestModel
{
[Required]
[StringLength(100, ErrorMessage = "The firstname must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
public string FirstName { get; set; }
}
The text was updated successfully, but these errors were encountered:
Hi,
I'm currently using a mix of ABP & Blazor, I use an EditForm with some data annotation and data validation.
The problem is that the error message is english only, is there a way to connect it to th abp localization ?
The text was updated successfully, but these errors were encountered: