ASP.NET Core自定义本地化教程之从文本文件读取本地化字符串
前言
本文先简要介绍在asp.net core 2.0里实施全球化和本地化,默认的本地化从资源文件(resx)里读取本地化字符串。本文然后提供一个简单示例,说明如何自定义本地化,以便从文本文件读取本地化字符串。
实施全球化和本地化
国际化涉及全球化和本地化。 全球化是设计支持不同区域性的应用程序的过程。 全球化添加了对一组有关特定地理区域的已定义语言脚本的输入、显示和输出支持。
本地化是将已经针对可本地化性进行处理的全球化应用调整为特定的区域性/区域设置的过程。 有关详细信息,请参阅本文档邻近末尾的全球化和本地化术语。
应用本地化涉及以下内容:
- 使应用内容可本地化
- 为支持的语言和区域性提供本地化资源
- 实施策略,为每个请求选择语言/区域性
全球化和本地化主要在两个位置实施,一是控制器,二是视图。在视图里实施全球化和本地化,要在startup.configureservices()
里添加
services.addmvc().addviewlocalization(microsoft.aspnetcore.mvc.razor.languageviewlocationexpanderformat.suffix, opt => { opt.resourcespath = "resources"; }) services.configure( opts => { var supportedcultures = new hashset<cultureinfo> { cultureinfo.currentculture, cultureinfo.currentuiculture, new cultureinfo("zh"), new cultureinfo("en"), }; // formatting numbers, dates, etc. opts.supportedcultures = supportedcultures.tolist(); //// ui strings that we have localized. opts.supporteduicultures = supportedcultures.tolist(); });
其中addviewlocalization()
定义在microsoft.aspnetcore.localization
命名空间。opt.resourcespath = "resources"
表示在resources文件夹寻找本地化资源文件。第二段代码设置本应用程序支持的语言,似乎没有简单办法说支持任何语言。
还需要在startup.configure()
启动请求本地化中间件。默认设置会从url、cookie、http accept-language标头读取目标语言。
public void configure(iapplicationbuilder app, ihostingenvironment env) { var options = app.applicationservices.getservice>(); app.userequestlocalization(options.value); app.usemvc(); }
接着,在视图cshtml文件里添加
@inject microsoft.aspnetcore.mvc.localization.iviewlocalizer lo <fieldset> <legend>@lo["show following columns"]</legend> <div id="visiblecolumnsfortable" class="loading-prompt" data-time="10"></div> </fieldset>
现在先不添加资源文件,直接运行程序测试一下,程序会输出show following columns。这表明,如果asp.net core找不到资源文件,会输出键名。因此,微软建议在asp.net core,直接用自然语言作为键名。
然后添加资源文件。asp.net core支持两种资源文件组织方案。因为我们在addviewlocalization时选择了languageviewlocationexpanderformat.suffix
,假设要对view\home\index.cshtml
提供大陆简体文本,要么创建resources\view\home\index.zh-cn.resx
,要么创建resources\view.home.index.zh-cn.resx
。同理,对shared\_layout.cshtml的本地化文件要放在resources\view\shared\_layout.zh-cn.resx
或resources\view.shared._layout.zh-cn.resx
,如下图所示。
自定义本地化文件
从上文可以知道,iviewlocalizer 接口负责从resx资源文件寻找本地化文本。如果要从其他位置寻找本地化文本,则需要自定义一个实现的ihtmllocalizer或istringlocalizer的类。ihtmllocalizer会对文本参数进行html编码,因此推荐实现它。事实上,本地化控制器所需的类实现的则是istringlocalizer。
假设我们想要从d:\documents\paradox interactive\stellaris\mod\cn\localisation\l.chinese (simplified).yml读取文本,其内容为
no_leader "无领袖"
admiral "舰队司令"
nomad_admiral "$admiral$"
admirals "舰队司令"
general "将军"
scientist "科学家"
governor "总督"
ruler "统治者"
一行的开头是键名,空格后是本地化字符串。
public class yamlstringlocalizer : ihtmllocalizer { private readonly dictionary languagedictionary = new dictionary(); public localizedstring getstring(string name) { throw new notimplementedexception(); } public localizedstring getstring(string name, params object[] arguments) { throw new notimplementedexception(); } public ienumerable getallstrings(bool includeparentcultures) { throw new notimplementedexception(); } public ihtmllocalizer withculture(cultureinfo culture) { throw new notimplementedexception(); } public localizedhtmlstring this[string name] { get { var ci = cultureinfo.currentculture; var languagename = ci.isneutralculture ? ci.englishname : ci.parent.englishname; var path = @"d:\documents\paradox interactive\stellaris\mod\cn\localisation\l.${languagename}.yml"; if (languagedictionary.trygetvalue(languagename, out var content) == false) { if (file.exists(path) == false) return new localizedhtmlstring(name, name, true, path); content = file.readalltext(path); languagedictionary.add(languagename, content); } var regex = new regex(@"^\s*" + name + @":\s+""(.*?)""\s*$", regexoptions.multiline); var match = regex.match(content); if (match.success) { var value = match.groups[1].value; return new localizedhtmlstring(name, value); } else { return new localizedhtmlstring(name, name, true, path); } } } public localizedhtmlstring this[string name, params object[] arguments] => throw new notimplementedexception(); }
代码很简单,读取l.yml的所有文字,保存在缓存中,然后用正则表达式匹配键。
在视图里,我们需要改用yamlstringlocalizer。
@inject microsoft.aspnetcore.mvc.localization.iviewlocalizer lo @inject yamlstringlocalizer ylo
但是yamlstringlocalizer还没有向依赖注入注册,所以还要把startup.configureservices()
改成
public void configureservices(iservicecollection services) { services.addsingleton(); services.addmvc() .addviewlocalization(microsoft.aspnetcore.mvc.razor.languageviewlocationexpanderformat.suffix, opt => { opt.resourcespath = "resources"; }) ...... }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。