发布后编辑资源文件值

时间:2019-05-01 08:16:48

标签: c# asp.net asp.net-mvc

我有一个资源文件,其中包含一堆应该本地化和翻译的字符串。这些字符串然后在DataAnnotations中使用,以本地化格式在表单上显示标签。例如:

[Display(Name = nameof(Texts.FirstName), ResourceType = typeof(Texts))]
public string FirstName { get; set; }

我有3种语言的资源文件的3个版本

enter image description here

资源字符串如下:

enter image description here

目标是编译并发布网站,但允许客户编辑每种语言的值而无需再次重新编译,即使资源文件可编辑(如xml或类似内容)

有可能吗?

0 个答案:

没有答案