我已经添加<globalization culture="de-DE" uiCulture="de-DE" />
到我的 Web.config 中。我添加@Thread.CurrentThread.CurrentCulture
到我的测试视图中,它显示 de-DE。所以,一切似乎都很好。
但是验证消息仍然是英文的,例如
输入字段是必需的。
我的错误是什么?
我已经添加<globalization culture="de-DE" uiCulture="de-DE" />
到我的 Web.config 中。我添加@Thread.CurrentThread.CurrentCulture
到我的测试视图中,它显示 de-DE。所以,一切似乎都很好。
但是验证消息仍然是英文的,例如
输入字段是必需的。
我的错误是什么?
我有同样的问题。
我想 Azure“网站”上没有安装“Microsoft .NET Framework 4.5 语言包”。似乎使用“Azure 云项目”是一种选择,因为您可以直接配置 IIS。
另一种解决方案是等待微软在 Azure 中包含语言包支持......
Personnaly,我决定覆盖主要属性。最棘手的是 [Required] 和 [Regex]。见下文(Loc 是我自己的本地化功能,因为我正在使用 gettext)
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Web.Mvc;
namespace Ic.DataAnnotations
{
public class RequiredLoc : RequiredAttribute, IClientValidatable
{
public IEnumerable<ModelClientValidationRule> GetClientValidationRules(ModelMetadata metadata,
ControllerContext context)
{
yield return new ModelClientValidationRule
{
ErrorMessage = FormatErrorMessage(metadata.DisplayName),
ValidationType = "required"
};
}
public override string FormatErrorMessage(string message)
{
base.FormatErrorMessage(message);
return Localizer.Loc("Le champs '%1' est requis.", message);
}
}
}
对于正则表达式:
using System.ComponentModel.DataAnnotations;
using System.Globalization;
namespace Ic.DataAnnotations
{
public class RegularExpressionLoc : RegularExpressionAttribute
{
private readonly string _errorMessage;
public RegularExpressionLoc(string errorMessage, string pattern)
: base(pattern)
{
_errorMessage = errorMessage;
}
public override string FormatErrorMessage(string input)
{
return Localizer.Loc(_errorMessage);
}
}
}
和
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Web.Mvc;
namespace Ic.DataAnnotations
{
public class RegularExpressionValidator : DataAnnotationsModelValidator<RegularExpressionAttribute>
{
private readonly string _message;
private readonly string _pattern;
public RegularExpressionValidator(ModelMetadata metadata, ControllerContext context, RegularExpressionAttribute attribute)
: base(metadata, context, attribute)
{
_pattern = attribute.Pattern;
_message = attribute.FormatErrorMessage("");
}
public override IEnumerable<ModelClientValidationRule> GetClientValidationRules()
{
var rule = new ModelClientValidationRule
{
ErrorMessage = _message,
ValidationType = "regex"
};
rule.ValidationParameters.Add("pattern", _pattern);
return new[] { rule };
}
}
}
在 Global.asax
DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(RegularExpressionLoc), typeof(RegularExpressionValidator));