Angular.json sourceLocale 应该设置在哪里?
Where should sourceLocale bet set in Angular.json?
i18n Angular docs 指定您需要通过更改项目的 Angular.json
文件中的 sourceLocale
字段来设置语言 ID 和语言环境扩展名,但该字段不存在于新项目。该字段应在 json?
中的何处定义
{language_id}-{locale_extension}
格式的语言 ID 和语言环境扩展字符串应在 projects.{projectName}.i18n.sourceLocale
处指定,如下所示:
"projects": {
"my-angular-project": {
"i18n": {
"sourceLocale": "en-US"
}
}
}
在此示例中,我们使用美国英语 ("en-us"
) 作为 Unicode 区域设置 ID。
i18n Angular docs 指定您需要通过更改项目的 Angular.json
文件中的 sourceLocale
字段来设置语言 ID 和语言环境扩展名,但该字段不存在于新项目。该字段应在 json?
{language_id}-{locale_extension}
格式的语言 ID 和语言环境扩展字符串应在 projects.{projectName}.i18n.sourceLocale
处指定,如下所示:
"projects": {
"my-angular-project": {
"i18n": {
"sourceLocale": "en-US"
}
}
}
在此示例中,我们使用美国英语 ("en-us"
) 作为 Unicode 区域设置 ID。