angular 国际化 (i18n)

Internationalization (i18n)

国际化 (i18n)

If you are working on internationalization, the CLI can help you with the following steps:
如果您正在致力于国际化,CLI可以通过以下步骤为您提供帮助:

  • extraction
    提取
  • serve
    服务
  • build
    构建

The first thing that you have to do is to setup your application to use i18n.
To do that you can follow the cookbook on angular.io.
你必须做的第一件事是设置你的应用程序使用国际化。要做到这一点,你查看 关于angular.io的食谱

Extraction

提取

When your app is ready, you can extract the strings to translate from your templates with the
ng xi18n command.
当您的应用程序准备就绪时,您可以使用 ng xi18n 命令从您的模板中提取字符串以进行翻译。

By default it will create a file named messages.xlf in your src folder.
You can use parameters from the xi18n command to change the format,
the name, the location and the source locale of the extracted file.
默认情况下,它会在 src 文件夹中创建一个名为 messages.xlf 的文件. 您可以使用 xi18n命令中的参数更改提取文件的格式,名称,位置和源语言环境。

For example to create a file in the src/locale folder you would use:
例如,要在src / locale文件夹中创建一个文件,您可以使用:

ng xi18n --output-path src/locale

Building and serving

建设和服务

Now that you have generated a messages bundle source file, you can translate it.
Let's say that your file containing the french translations is named messages.fr.xlf
and is located in the src/locale folder.
现在您已经生成了一个消息包源文件,您可以将其翻译。假设您的包含法文翻译的文件名为messages.fr.xlf并位于src / locale文件夹中。

If you want to use it when you serve your application you can use the 4 following options:
如果您想在为应用程序提供服务时使用它,则可以使用以下4个选项:

  • i18nFile Localization file to use for i18n.
  • i18nFile 用于i18n的本地化文件.
  • i18nFormat Format of the localization file specified with --i18n-file.
  • i18nFormat 使用--i18n-file指定的本地化文件的格式.
  • i18nLocale Locale to use for i18n.
  • i18nLocale 用于i18n的语言环境.
  • i18nMissingTranslation Defines the strategy to use for missing i18n translations.
  • i18nMissingTranslation 定义用于缺少i18n翻译的策略。.

In our case we can load the french translations with the following configuration:
在我们的案例中,我们可以使用以下配置加载法语翻译:

"architect": {
  "build": {
    "builder": "@angular-devkit/build-angular:browser",
    "options": { ... },
    "configurations": {
      "fr": {
        "aot": true,
        "outputPath": "dist/my-project-fr/",
        "i18nFile": "src/locale/messages.fr.xlf",
        "i18nFormat": "xlf",
        "i18nLocale": "fr",
        "i18nMissingTranslation": "error",
      }
// ...
"serve": {
  "builder": "@angular-devkit/build-angular:dev-server",
  "options": {
    "browserTarget": "your-project-name:build"
  },
  "configurations": {
    "production": {
      "browserTarget": "your-project-name:build:production"
    },
    "fr": {
      "browserTarget": "your-project-name:build:fr"
    }
  }
},

To build the application using the French i18n options, use ng build --configuration=fr.
To serve, use ng serve --configuration=fr.
使用法语i18n选项构建应用程序,使用 ng build --configuration=fr. 运行服务,请使用ng serve --configuration=fr.

Our application is exactly the same but the LOCALE_ID has been provided with "fr",
TRANSLATIONS_FORMAT with "xlf" and TRANSLATIONS with the content of messages.fr.xlf.
All the strings flagged for i18n have been replaced with their french translations.
我们的应用程序是完全相同的,但是 LOCALE_ID 有提供“fr”, 带有“xlf”的TRANSLATIONS_FORMAT 和带有messages.fr.xlf 内容的 TRANSLATIONS

Note: this only works for AOT, if you want to use i18n in JIT you will have to update
your bootstrap file yourself.
注意:这只适用于AOT,如果你想在JIT中使用i18n,你必须自己更新引导文件。

Using multiple languages

使用多种语言

When you build your application for a specific locale, it is probably a good idea to change
the output path with the outputPath options in order to save the files to a different location.
在为特定语言环境构建应用程序时,最好使用 outputPath 选项更改输出路径,以便将文件保存到其他位置。

If you end up serving this specific version from a subdirectory, you can also change
the base url used by your application with the baseHref option.
如果您最终从子目录中提供此特定版本,您还可以使用 baseHref 选项更改应用程序使用的基础URL。

For example if the french version of your application is served from https://myapp.com/fr/
then you would build the french version like this:
例如,如果您的应用程序的法语版本是从https://myapp.com/fr/提供的,那么您可以像这样构建法语版本:

"configurations": {
  "fr": {
    "aot": true,
    "outputPath": "dist/my-project-fr/",
    "baseHref": "/fr/",
    "i18nFile": "src/locale/messages.fr.xlf",
    "i18nFormat": "xlf",
    "i18nLocale": "fr",
    "i18nMissingTranslation": "error",
  }

If you need more details about how to create scripts to generate the app in multiple
languages and how to setup Apache 2 to serve them from different subdirectories,
you can read this great tutorial
by Philippe Martin.
如果您需要更多关于如何创建脚本以多种语言生成应用程序的详细信息,以及如何设置Apache 2以便从不同的子目录提供它们,你可以阅读菲利普马丁的这个伟大的教程

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,793评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,567评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,342评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,825评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,814评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,680评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,033评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,687评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,175评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,668评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,775评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,419评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,020评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,978评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,206评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,092评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,510评论 2 343

推荐阅读更多精彩内容

  • Getting Started Use the Current Stable Version (7.1) Buil...
    Leonzai阅读 1,934评论 0 3
  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,288评论 0 10
  • mean to add the formatted="false" attribute?.[ 46% 47325/...
    ProZoom阅读 2,689评论 0 3
  • 我家成分不好,爷爷是地主,挨批斗时奶奶曾被打得棉裤都开花。父亲(今年已70岁,是个有才华的人,我和弟弟在这一点都没...
    elian晓莲阅读 308评论 0 1
  • 坐公交车回学校的路上,车窗外的风景渐渐变得萧条。下着雨,路面是潮湿的,在这初夏的时节里,有些许雨水越过半掩...
    是盛夏白瓷梅子汤阅读 290评论 0 0