1372 lines
57 KiB
Markdown
1372 lines
57 KiB
Markdown
# Internationalization (i18n)
|
||
|
||
# 国际化(i18n)
|
||
|
||
Application internationalization is a many-faceted area of development, focused on making
|
||
applications available and user-friendly to a worldwide audience. This page describes Angular's
|
||
internationalization (i18n) tools, which can help you make your app available in multiple languages.
|
||
|
||
应用程序的国际化涉及到开发的很多方面,主要是如何让应用可以被全世界的用户使用而且用起来比较友好。
|
||
本页面讲的是 Angular 的*国际化*(*i18n*)工具,它可以帮助你使用多个语言发布应用。
|
||
|
||
See the <live-example downloadOnly name="i18n">i18n Example</live-example> for a simple example of
|
||
an AOT-compiled app, translated into French.
|
||
|
||
可以把这个翻译为法语版的 AOT 应用<live-example downloadOnly name="i18n">i18n 例子</live-example>作为一个简单的例子。
|
||
|
||
{@a angular-i18n}
|
||
|
||
## Angular and i18n
|
||
|
||
## Angular 与 i18n
|
||
|
||
*Internationalization* is the process of designing and preparing your app to be usable in different languages.
|
||
*Localization* is the process of translating your internationalized app into specific languages for particular locales.
|
||
|
||
*国际化*是一个设计和准备应用程序的过程,使其能用于不同的语言。
|
||
*本地化*是一个把国际化的应用针对部分区域翻译成特定语言的过程。
|
||
|
||
Angular simplifies the following aspects of internationalization:
|
||
|
||
Angular 简化了国际化工作的下列几个方面:
|
||
|
||
* Displaying dates, number, percentages, and currencies in a local format.
|
||
|
||
用本地格式显示日期、数字、百分比以及货币。
|
||
|
||
* Preparing text in component templates for translation.
|
||
|
||
准备组件模板中待翻译的文本。
|
||
|
||
* Handling plural forms of words.
|
||
|
||
处理单词的复数形式。
|
||
|
||
* Handling alternative text.
|
||
|
||
处理候选文本。
|
||
|
||
For localization, you can use the [Angular CLI](cli) to generate most of the boilerplate necessary to create files for translators, and to publish your app in multiple languages.
|
||
After you have set up your app to use i18n, the CLI can help you with the following steps:
|
||
|
||
为了进行本地化,你可以使用 [Angular CLI](cli) 来生成大部分必要的代码,用与创建要发给翻译人员的文件以及把应用发布成多种语言。
|
||
如果要为你的应用添加 i18n 支持,CLI 会在下列步骤中给你提供帮助:
|
||
|
||
* Extracting localizable text into a file that you can send out to be translated.
|
||
|
||
把本地化文本提取到一个文件中,你可以把它发给别人进行翻译。
|
||
|
||
* Building and serving the app for a given locale, using the translated text.
|
||
|
||
使用翻译好的文本,为指定的区域构建应用和启动开发服务器。
|
||
|
||
* Creating multiple language versions of your app.
|
||
|
||
为你的应用创建多语言版本。
|
||
|
||
{@a setting-up-locale}
|
||
|
||
## Setting up the locale of your app
|
||
|
||
## 为你的应用设置地区(locale)
|
||
|
||
A locale is an identifier (id) that refers to a set of user preferences that tend to be shared
|
||
within a region of the world, such as country. This document refers to a locale identifier as a
|
||
"locale" or "locale id".
|
||
|
||
地区是一个唯一性标识,它代表的是世界某个区域(比如国家)中共享的一组用户首选项。本文档中提到的“地区”就是指这个地区标识。
|
||
|
||
A Unicode locale identifier is composed of a Unicode language identifier and (optionally) the
|
||
character `-` followed by a locale extension. (For historical reasons the character `_` is supported
|
||
as an alternative to `-`.) For example, in the locale id `fr-CA` the `fr` refers to the French
|
||
language identifier, and the `CA` refers to the locale extension Canada.
|
||
|
||
Unicode 的地区标识是由 Unicode 语言标识、一个可选的 `-` 字符,后跟一个地区扩展项组合而成的。(由于历史的原因,还支持用 `_` 作为 `-` 的替代品。)比如,地区标识 `fr-CA` 中的 `fr` 代表法语的语言标识,而 `CA` 代表的是加拿大的语言扩展。
|
||
|
||
<div class="alert is-critical">
|
||
|
||
Angular follows the Unicode LDML convention that uses stable identifiers (Unicode locale identifiers)
|
||
based on the norm [BCP47](http://www.rfc-editor.org/rfc/bcp/bcp47.txt). It is very important that
|
||
you follow this convention when you define your locale, because the Angular i18n tools use this
|
||
locale id to find the correct corresponding locale data.
|
||
|
||
Angular 遵循 Unicode 的 LDML 惯例,它使用基于 [BCP47](http://www.rfc-editor.org/rfc/bcp/bcp47.txt) 标准的稳定标识(Unicode 的地区标识)。当你要定义自己的地区时,遵循这个惯例非常重要,因为 Angular 的 i18n 工具会使用这种地区标识来查找相应的本地化数据。
|
||
|
||
</div>
|
||
|
||
By default, Angular uses the locale `en-US`, which is English as spoken in the United States of America.
|
||
|
||
默认情况下,Angular 使用的地区标识是 `en-US`,它表示美国英语。
|
||
|
||
To set your app's locale to another value, use the CLI parameter `--configuration` with the value of the locale id that you want to use:
|
||
|
||
要把你的应用的地区改为其它值,可以使用 CLI 参数 `--configuration` 来传入你要使用的地区标识:
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
ng serve --configuration=fr
|
||
</code-example>
|
||
|
||
If you use JIT, you also need to define the `LOCALE_ID` provider in your main module:
|
||
|
||
如果要使用 JIT,你就得在你的主模块中定义 `LOCALE_ID` 这个服务提供商:
|
||
|
||
<code-example path="i18n/doc-files/app.module.ts" header="src/app/app.module.ts" linenums="false">
|
||
</code-example>
|
||
|
||
For more information about Unicode locale identifiers, see the
|
||
[CLDR core spec](http://cldr.unicode.org/core-spec#Unicode_Language_and_Locale_Identifiers).
|
||
|
||
要了解关于 Unicode 地区标识的更多信息,参见 [CLDR 核心规范](http://cldr.unicode.org/core-spec#Unicode_Language_and_Locale_Identifiers)。
|
||
|
||
For a complete list of locales supported by Angular, see
|
||
[the Angular repository](https://github.com/angular/angular/tree/master/packages/common/locales).
|
||
|
||
要查看 Angular 支持的地区总表,参见 [Angular 源码仓库](https://github.com/angular/angular/tree/master/packages/common/locales)。
|
||
|
||
The locale identifiers used by CLDR and Angular are based on [BCP47](http://www.rfc-editor.org/rfc/bcp/bcp47.txt).
|
||
These specifications change over time; the following table maps previous identifiers to current ones at
|
||
time of writing:
|
||
|
||
CLDR 和 Angular 使用的地区标识基于 [BCP47](http://www.rfc-editor.org/rfc/bcp/bcp47.txt)。
|
||
这些规范可能会随时间而变化,下表中是本文编写时地区标识的新旧版本对照表:
|
||
|
||
| Locale name | Old locale id | New locale id |
|
||
|-------------------------------|-------------------|---------------|
|
||
| 地区名称 | 旧 ID | 新 ID |
|
||
| Indonesian | in | id |
|
||
| 印度尼西亚 | in | id |
|
||
| Hebrew | iw | he |
|
||
| 希伯来 | iw | he |
|
||
| Romanian Moldova | mo | ro-MD |
|
||
| 罗马尼亚摩尔多瓦 | mo | ro-MD |
|
||
| Norwegian Bokmål | no, no-NO | nb |
|
||
| 挪威 Bokmål | no, no-NO | nb |
|
||
| Serbian Latin | sh | sr-Latn |
|
||
| 塞尔维亚拉丁语 | sh | sr-Latn |
|
||
| Filipino | tl | fil |
|
||
| 菲律宾 | tl | fil |
|
||
| Portuguese Brazil | pt-BR | pt |
|
||
| 葡萄牙巴西 | pt-BR | pt |
|
||
| Chinese Simplified | zh-cn, zh-Hans-CN | zh-Hans |
|
||
| 中文简体 | zh-cn, zh-Hans-CN | zh-Hans |
|
||
| Chinese Traditional | zh-tw, zh-Hant-TW | zh-Hant |
|
||
| 中文繁体 | zh-tw, zh-Hant-TW | zh-Hant |
|
||
| Chinese Traditional Hong Kong | zh-hk | zh-Hant-HK |
|
||
| 中文繁体(香港) | zh-hk | zh-Hant-HK |
|
||
|
||
## i18n pipes
|
||
|
||
## i18n 管道
|
||
|
||
Angular pipes can help you with internationalization: the `DatePipe`, `CurrencyPipe`, `DecimalPipe`
|
||
and `PercentPipe` use locale data to format data based on the `LOCALE_ID`.
|
||
|
||
Angular 的管道可以帮助你进行国际化:`DatePipe`、`CurrencyPipe`、`DecimalPipe` 和 `PercentPipe` 都使用本地化数据来根据 `LOCALE_ID` 格式化数据。
|
||
|
||
By default, Angular only contains locale data for `en-US`. If you set the value of
|
||
`LOCALE_ID` to another locale, you must import locale data for that new locale.
|
||
The CLI imports the locale data for you when you use the parameter `--configuration` with `ng serve` and
|
||
`ng build`.
|
||
|
||
默认情况下,Angular 只包含 `en-US` 的本地化数据。如果你要把 `LOCALE_ID` 的值设置为其它地区,就必须为那个新地区导入本地化数据。
|
||
当你使用 `ng serve` 和 `ng build` 的 `--configuration` 参数时,CLI 会自动帮你导入相应的本地化数据。
|
||
|
||
If you want to import locale data for other languages, you can do it manually:
|
||
|
||
如果还要为其它语言导入本地化数据,你可以手工完成它:
|
||
|
||
<code-example path="i18n/doc-files/app.locale_data.ts" region="import-locale" header="src/app/app.module.ts" linenums="false">
|
||
</code-example>
|
||
|
||
The first parameter is an object containing the locale data imported from `@angular/common/locales`.
|
||
By default, the imported locale data is registered with the locale id that is defined in the Angular
|
||
locale data itself.
|
||
If you want to register the imported locale data with another locale id, use the second parameter to
|
||
specify a custom locale id. For example, Angular's locale data defines the locale id for French as
|
||
"fr". You can use the second parameter to associate the imported French locale data with the custom
|
||
locale id "fr-FR" instead of "fr".
|
||
|
||
第一个参数是一个包含从 `@angular/common/locales` 中导入的本地化数据的对象。
|
||
默认情况下,导入 Angular 自带的本地化数据时会使用数据中自带的一个地区标识进行注册。
|
||
如果你要使用其它地区标识来注册这个导入的本地化数据,可以在第二个参数中指定一个自定义的地区标识。
|
||
比如,Angular 为法语定义的地区标识是 “fr”,你可以通过第二个参数为这些导入的法语本地化数据指定一个自定义的地区标识 “fr-FR”。
|
||
|
||
The files in `@angular/common/locales` contain most of the locale data that you
|
||
need, but some advanced formatting options might only be available in the extra dataset that you can
|
||
import from `@angular/common/locales/extra`. An error message informs you when this is the case.
|
||
|
||
`@angular/common/locales` 中的文件包含你需要的大多数本地化数据,
|
||
不过有些高级的格式选项只存在于从 `@angular/common/locales/extra` 中导入的扩展数据集中。遇到这种情况,你就会收到一条错误信息。
|
||
|
||
<code-example path="i18n/doc-files/app.locale_data_extra.ts" region="import-locale-extra" header="src/app/app.module.ts" linenums="false">
|
||
</code-example>
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
All locale data used by Angular are extracted from the Unicode Consortium's
|
||
<a href="http://cldr.unicode.org/" title="CLDR">Common Locale Data Repository (CLDR)</a>.
|
||
|
||
Angular 中使用的所有本地化数据都是从 Unicode 联盟的<a href="http://cldr.unicode.org/" title="CLDR">常用本地化数据仓库 (CLDR)</a> 中提取的。
|
||
|
||
</div>
|
||
|
||
## Template translations
|
||
|
||
## 模板翻译
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
This document refers to a unit of translatable text as "text," a "message", or a
|
||
"text message."
|
||
|
||
本文档中会把翻译文本的最小单元称为“文本”、“消息”或“文本消息”。
|
||
|
||
</div>
|
||
|
||
The i18n template translation process has four phases:
|
||
|
||
i18n 模板的翻译过程分为四个阶段
|
||
|
||
1. Mark static text messages in your component templates for translation.
|
||
|
||
在组件模板中标记需要翻译的静态文本信息。
|
||
|
||
2. Create a translation file: Use the Angular CLI `xi18n` command to extract the marked text into an industry-standard translation source file.
|
||
|
||
创建翻译文件:使用 Angular CLI 的 `xi18n` 命令,把标记过的文本提取到一个符合行业标准的翻译源文件中。
|
||
|
||
3. Edit the generated translation file: Translate the extracted text into the target language.
|
||
|
||
编辑所生成的翻译文件:把提取出的文本翻译成目标语言。
|
||
|
||
4. Merge the completed translation file into the app. To do this, use the Angular CLI `build` command to compile the app, choosing a [locale-specific configuration](#merge-aot), or specifying the following command options.
|
||
|
||
把翻译完成的文件合并回应用。要做到这一点,请使用 Angular CLI 的 `build` 命令来编译此应用,选择一个[区域相关的配置](#merge-aot),或指定下列命令选项。
|
||
|
||
* `--i18nFile`=*path to the translation file*
|
||
|
||
`--i18nFile`=*指向翻译文件的路径*
|
||
|
||
* `--i18nFormat`=*format of the translation file*
|
||
|
||
`--i18nFormat`=*此翻译文件的格式*
|
||
|
||
* `--i18nLocale`= *locale id*
|
||
|
||
`--i18nLocale`=*地区 ID*
|
||
|
||
The command replaces the original messages with translated text, and generates a new version of the app in the target language.
|
||
|
||
该命令会使用翻译的文本替换原始信息,并生成新的目标语言版本的应用程序。
|
||
|
||
You need to build and deploy a separate version of the app for each supported language.
|
||
|
||
你可以为每种支持的语言构建和部署单独的应用程序版本。
|
||
|
||
{@a i18n-attribute}
|
||
|
||
### Mark text with the i18n attribute
|
||
|
||
### 使用 `i18n` 属性标记文本
|
||
|
||
The Angular `i18n` attribute marks translatable content. Place it on every element tag whose fixed
|
||
text is to be translated.
|
||
|
||
Angular的`i18n`属性是可翻译内容的标记。
|
||
将它放到每个固定文本需要翻译的元素标签中。
|
||
|
||
In the example below, an `<h1>` tag displays a simple English language greeting, "Hello i18n!"
|
||
|
||
在下面的例子中,`<h1>`标签显示了一句简单的英文问候语,“Hello i18n!”
|
||
|
||
<code-example path="i18n/doc-files/app.component.html" region="greeting" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
To mark the greeting for translation, add the `i18n` attribute to the `<h1>` tag.
|
||
|
||
要想把它标记为需要翻译的文本,就给 `<h1>` 标签添加上 `i18n` 属性。
|
||
|
||
<code-example path="i18n/doc-files/app.component.html" region="i18n-attribute" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
`i18n` is a custom attribute, recognized by Angular tools and compilers.
|
||
After translation, the compiler removes it. It is not an Angular directive.
|
||
|
||
`i18n` 是一个自定义属性,会被 Angular 工具和编译器识别。
|
||
翻译之后,编译器就会移除它。它不是 Angular 指令。
|
||
|
||
</div>
|
||
|
||
{@a help-translator}
|
||
|
||
### Help the translator with a description and meaning
|
||
|
||
### 用描述和意图来帮助翻译人员
|
||
|
||
To translate a text message accurately, the translator may need additional information or context.
|
||
|
||
要想翻译的更准确,翻译人员可能需要待翻译文本的额外信息或场景说明。
|
||
|
||
You can add a description of the text message as the value of the `i18n` attribute, as shown in the
|
||
example below:
|
||
|
||
你可以用 `i18n` 属性的值来添加这些文本信息的描述,例子如下:
|
||
|
||
<code-example path="i18n/doc-files/app.component.html" region="i18n-attribute-desc" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
The translator may also need to know the meaning or intent of the text message within this particular
|
||
app context.
|
||
|
||
为了给出正确的翻译,翻译者需要知道你这段文本在特定情境下的*含义*或*真实意图*。
|
||
|
||
You add context by beginning the `i18n` attribute value with the _meaning_ and
|
||
separating it from the _description_ with the `|` character: `<meaning>|<description>`
|
||
|
||
在描述的前面,你可以用 `i18n` 开头的属性值来为指定的字符串添加一些上下文含义,用 `|` 将其与描述文字隔开(`<意图>|<描述>`)。
|
||
|
||
<code-example path="i18n/doc-files/app.component.html" region="i18n-attribute-meaning" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
All occurrences of a text message that have the same meaning will have the same translation.
|
||
A text message that is associated with different meanings can have different translations.
|
||
|
||
如果所有地方出现的文本具有**相同**含义时,它们应该有**相同**的翻译,
|
||
但是如果在某些地方它具有**不同含义**,那么它应该有不同的翻译。
|
||
|
||
The Angular extraction tool preserves both the meaning and the description in the translation
|
||
source file to facilitate contextually-specific translations, but only the combination of meaning
|
||
and text message are used to generate the specific id of a translation. If you have two
|
||
similar text messages with different meanings, they are extracted separately. If you have two similar
|
||
text messages with different descriptions (not different meanings), then they are extracted only once.
|
||
|
||
Angular 的提取工具会在翻译源文件中保留**含义**和**描述**,以支持符合特定上下文的翻译。但它只会使用含义和文本消息的组合来为待翻译文本生成明确的 id。如果你有两个相同的文本消息,但是含义不同,它们就会被分别提取。如果你有两个相同的文本消息,但是描述不同(但含义相同),它们就只会提取一次。
|
||
|
||
{@a custom-id}
|
||
|
||
### Set a custom id for persistence and maintenance
|
||
|
||
### 设置一个自定义的 `id` 来提升可搜索性和可维护性
|
||
|
||
The angular i18n extractor tool generates a file with a translation unit entry for each `i18n`
|
||
attribute in a template. By default, it assigns each translation unit a unique id such as this one:
|
||
|
||
Angular 的 `i18n` 提取工具会为模板中每个带有 `i18n` 属性的元素生成一个*翻译单元(translation unit)*条目,并保存到一个文件中。默认情况下,它为每个翻译单元指定一个唯一的 `id`,就像这样:
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="generated-id" linenums="false">
|
||
</code-example>
|
||
|
||
When you change the translatable text, the extractor tool generates a new id for that translation unit.
|
||
You must then update the translation file with the new id.
|
||
|
||
当你修改这段可翻译的文字时,提取工具会为那个翻译单元生成一个新的 `id`。
|
||
你就要使用这个新的 id 来修改这个翻译文件。
|
||
|
||
Alternatively, you can specify a custom id in the `i18n` attribute by using the prefix `@@`.
|
||
The example below defines the custom id `introductionHeader`:
|
||
|
||
另一种方案是,你可以使用 `@@` 前缀在 `i18n` 属性中指定一个自定义的 id。
|
||
下面这个例子就定义了一个自定义 id `introductionHeader`:
|
||
|
||
<code-example path='i18n/doc-files/app.component.html' region='i18n-attribute-solo-id' header='app/app.component.html' linenums="false">
|
||
</code-example>
|
||
|
||
When you specify a custom id, the extractor tool and compiler generate a translation unit with that
|
||
custom id.
|
||
|
||
一旦你指定了自定义 id,提取工具和编译器就会用*你的自定义 id` 生成一个翻译单元,而不会再改变它。
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="custom-id" linenums="false">
|
||
</code-example>
|
||
|
||
The custom id is persistent. The extractor tool does not change it when the translatable text changes.
|
||
Therefore, you do not need to update the translation. This approach makes maintenance easier.
|
||
|
||
自定义 id 是永久性的,翻译工具待翻译文本发生变化时不会修改它。
|
||
因此,你不必修改翻译结果。这种方式可以让维护变得更简单。
|
||
|
||
#### Use a custom id with a description
|
||
|
||
#### 在描述中使用自定义 id
|
||
|
||
You can use a custom id in combination with a description by including both in the value of the
|
||
`i18n` attribute. In the example below, the `i18n` attribute value includes a description, followed
|
||
by the custom `id`:
|
||
|
||
你可以在 `i18n` 属性的值中使用自定义 id 与描述信息的组合。
|
||
下面的例子中,`i18n` 的属性中中就包含了一条跟在自定义 `id` 后面的描述信息:
|
||
|
||
<code-example path='i18n/doc-files/app.component.html' region='i18n-attribute-id' header='app/app.component.html' linenums="false">
|
||
</code-example>
|
||
|
||
You also can add a meaning, as shown in this example:
|
||
|
||
你还可以添加含义,例子如下:
|
||
|
||
<code-example path='i18n/doc-files/app.component.html' region='i18n-attribute-meaning-and-id' header='app/app.component.html' linenums="false">
|
||
</code-example>
|
||
|
||
#### Define unique custom ids
|
||
|
||
#### 定义唯一的自定义 ID
|
||
|
||
Be sure to define custom ids that are unique. If you use the same id for two different text messages,
|
||
only the first one is extracted, and its translation is used in place of both original text messages.
|
||
|
||
要确保自定义 id 是唯一的。如果你对两个*不同的*文本块使用了同一个 id,那么就只有一个会被提取出来,然后其翻译结果会被用于全部原始文本消息。
|
||
|
||
In the example below the custom id `myId` is used for two different messages:
|
||
|
||
在下面这个例子中,自定义的 id `myId` 就被用在了两个不同的消息上:
|
||
|
||
```html
|
||
|
||
<h3 i18n="@@myId">Hello</h3>
|
||
|
||
<!-- ... -->
|
||
|
||
<p i18n="@@myId">Good bye</p>
|
||
|
||
```
|
||
|
||
Consider this translation to French:
|
||
|
||
考虑下列法文翻译:
|
||
|
||
```xml
|
||
|
||
<trans-unit id="myId" datatype="html">
|
||
<source>Hello</source>
|
||
<target state="new">Bonjour</target>
|
||
</trans-unit>
|
||
|
||
```
|
||
|
||
Because the custom id is the same, both of the elements in the resulting translation contain
|
||
the same text, `Bonjour`:
|
||
|
||
由于自定义 id 都是一样的,所以翻译结果中所有的元素都包含同样的文本 `Bonjour`:
|
||
|
||
```html
|
||
|
||
<h3>Bonjour</h3>
|
||
|
||
<!-- ... -->
|
||
|
||
<p>Bonjour</p>
|
||
```
|
||
|
||
{@a no-element}
|
||
|
||
### Translate text without creating an element
|
||
|
||
### 翻译文本,而不必创建元素
|
||
|
||
If there is a section of text that you would like to translate, you can wrap it in a `<span>` tag.
|
||
However, if you don't want to create a new DOM element merely to facilitate translation,
|
||
you can wrap the text in an `<ng-container>` element.
|
||
The `<ng-container>` is transformed into an html comment:
|
||
|
||
如果要翻译一段纯文本,你就可以把它用 `<span>` 标签包裹起来。
|
||
但如果由于某些原因(比如 CSS 结构方面的考虑),你可能不希望仅仅为了翻译而创建一个新的 DOM 元素,那么也可以把这段文本包裹进一个 `<ng-container>` 元素中。`<ng-container>` 将被转换成一个 HTML 注释:
|
||
|
||
<code-example path="i18n/src/app/app.component.html" region="i18n-ng-container" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
{@a translate-attributes}
|
||
|
||
### Translate attributes
|
||
|
||
### 翻译属性
|
||
|
||
Displayed text is sometimes supplied as the value of an attribute, rather than the content of tag.
|
||
For example, if your template has an image with a `title` attribute, the text value of the `title` attribute needs to be translated.
|
||
|
||
要显示的文本有时候会以属性值的形式提供,而不是标签的内容。
|
||
比如,假如你的模板中有一个带 `title` 属性的图片,这个 `title` 属性的文本值就要翻译。
|
||
|
||
<code-example path="i18n/doc-files/app.component.html" region="i18n-title" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
To mark an attribute for translation, add an attribute in the form of `i18n-x`,
|
||
where `x` is the name of the attribute to translate. The following example shows how to mark the
|
||
`title` attribute for translation by adding the `i18n-title` attribute on the `img` tag:
|
||
|
||
要把一个属性标记为需要翻译的,就添加一个形如 `i18n-x` 的属性,其中的 `x` 是要翻译的属性的名字。
|
||
下面的例子中演示了如何通过给 `img` 标签添加 `i18n-title` 属性来把 `title` 属性标记为待翻译的。
|
||
|
||
<code-example path="i18n/src/app/app.component.html" region="i18n-title-translate" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
This technique works for any attribute of any element.
|
||
|
||
这个技巧适用于任何元素上的任何属性。
|
||
|
||
You also can assign a meaning, description, and id with the `i18n-x="<meaning>|<description>@@<id>"`
|
||
syntax.
|
||
|
||
你还可以通过 `i18n-x="<meaning>|<description>@@<id>"` 语法来给它写上含义(meaning)、描述(description)和 id。
|
||
|
||
## Regular expressions for plurals and selections
|
||
|
||
## 复数与选择的表达式
|
||
|
||
Different languages have different pluralization rules and grammatical constructions that add
|
||
complexity to the translation task.
|
||
You can use regular expressions with the `plural` and `select` clauses to provide patterns that aid translation in these cases.
|
||
|
||
不同的语言具有不同的复数规则和语法结构,这为翻译工作平添了很多复杂性。
|
||
你可以使用带有 `plural` 和 `select` 的正则表达式来提供一些模式,来辅助翻译这些情况。
|
||
|
||
{@a plural-ICU}
|
||
### Pluralization
|
||
|
||
### 复数规则
|
||
|
||
Suppose that you want to say that something was "updated x minutes ago".
|
||
In English, depending upon the number of minutes, you could display "just now", "one minute ago",
|
||
or "x minutes ago" (with x being the actual number).
|
||
Other languages might express the cardinality differently.
|
||
|
||
假设你要说某些东西“updated x minutes ago(在 x 分钟前修改了)”。
|
||
在英语中,根据分钟数,可能要显示为 "just now"、"one minute ago" 或 "x minutes ago"(这里的 x 是实际的数量)。
|
||
而在其它语言中则可能会有不同的基数规则。
|
||
|
||
The example below shows how to use a `plural` ICU expression to display one of those three options
|
||
based on when the update occurred:
|
||
|
||
下面这个例子示范了如何使用 ICU 表达式 `plural` 来根据这次修改发生的时间显示这三个选项之一:
|
||
|
||
<code-example path="i18n/src/app/app.component.html" region="i18n-plural" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
* The first parameter is the key. It is bound to the component property (`minutes`), which determines
|
||
the number of minutes.
|
||
|
||
第一个参数是 key。它绑定到了组件中表示分钟数的 `minutes` 属性。
|
||
|
||
* The second parameter identifies this as a `plural` translation type.
|
||
|
||
第二个参数表示这是一个 `plural`(复数)翻译类型。
|
||
|
||
* The third parameter defines a pluralization pattern consisting of pluralization categories and their matching values.
|
||
|
||
第三个参数定义了一组复数表示模式,这个模式由复数类别和它们所匹配的值组成。
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
This syntax conforms to the
|
||
<a href="http://userguide.icu-project.org/formatparse/messages" title="ICU Message Format">ICU Message Format</a>
|
||
as specified in the
|
||
<a href="http://cldr.unicode.org/index/cldr-spec/plural-rules" title="Pluralization Rules">CLDR pluralization rules</a>.
|
||
|
||
这种语法遵守 <a href="http://cldr.unicode.org/index/cldr-spec/plural-rules" title="Pluralization Rules">CLDR 复数规则</a> 中指定的
|
||
<a href="http://userguide.icu-project.org/formatparse/messages" title="ICU Message Format">ICU 消息格式</a>
|
||
|
||
</div>
|
||
|
||
Pluralization categories include (depending on the language):
|
||
|
||
复数类别包括(取决于语言):
|
||
|
||
* =0 (or any other number)
|
||
|
||
=0 (或其它数字)
|
||
|
||
* zero
|
||
|
||
zero(零)
|
||
|
||
* one
|
||
|
||
one(一个)
|
||
|
||
* two
|
||
|
||
two(两个)
|
||
|
||
* few
|
||
|
||
few(少数)
|
||
|
||
* many
|
||
|
||
many(很多)
|
||
|
||
* other
|
||
|
||
other(其它)
|
||
|
||
After the pluralization category, put the default English text in braces (`{}`).
|
||
|
||
复数类别之后的括号(`{}`)中是默认的*英语*文本。
|
||
|
||
In the example above, the three options are specified according to that pluralization pattern. For
|
||
talking about zero minutes, you use `=0 {just now}`. For one minute, you use `=1 {one minute}`.
|
||
Any unmatched cardinality uses `other {{{minutes}} minutes ago}`. You could choose to add patterns
|
||
for two, three, or any other number if the pluralization rules were different. For the example of
|
||
"minute", only these three patterns are necessary in English.
|
||
|
||
在上面的例子中,这三个选项都是根据复数模式来指定的。要说零分钟,就用 `=0 {just now}`。一分钟就用 `=1 {one minute}`。
|
||
无法匹配的数量就用 `other {{{minutes}} minutes ago}`。如果复数规则与此不同,你还可以为两个、三个或任意数量添加更多的模式。对于这个 “minute” 的例子,英语中只要这三种模式就够了。
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
You can use interpolations and html markup inside of your translations.
|
||
|
||
你可以在翻译结果中使用插值表达式和 HTML 标记。
|
||
|
||
</div>
|
||
|
||
{@a select-ICU}
|
||
|
||
### Select among alternative text messages
|
||
|
||
### 在候选文本中选择
|
||
|
||
If your template needs to display different text messages depending on the value of a variable, you
|
||
need to translate all of those alternative text messages.
|
||
|
||
如果你的模板中需要根据某个变量的值显示出不同的文本消息,你还需要对所有这些候选文本进行翻译。
|
||
|
||
You can handle this with a `select` ICU expression. It is similar to the `plural` expressions
|
||
except that you choose among alternative translations based on a string value instead of a number,
|
||
and you define those string values.
|
||
|
||
你可以使用 ICU 表达式 `select` 来翻译这些。它与 ICU 表达式 `plural` 类似,只是你要根据一个字符串值而不是数字来选择这些候选翻译文本,而这些字符串值是你自己定义的。
|
||
|
||
The following format message in the component template binds to the component's `gender` property,
|
||
which outputs one of the following string values: "m", "f" or "o".
|
||
The message maps those values to the appropriate translations:
|
||
|
||
组件模板中的下列消息格式绑定到了组件的 `gender` 属性,这个属性的取值是 "m" 或 "f" 或 "o"。
|
||
这个消息会把那些值映射到适当的翻译文本:
|
||
|
||
<code-example path="i18n/src/app/app.component.html" region="i18n-select" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
{@a nesting-ICUS}
|
||
|
||
### Nesting plural and select ICU expressions
|
||
|
||
### 把"复数"与"选择"表达式嵌套在一起
|
||
|
||
You can also nest different ICU expressions together, as shown in this example:
|
||
|
||
你也可以把不同的 ICU 表达式嵌套在一起,比如:
|
||
|
||
<code-example path="i18n/src/app/app.component.html" region="i18n-nested" header="src/app/app.component.html">
|
||
</code-example>
|
||
|
||
{@a ng-xi18n}
|
||
|
||
{@a ng-xi18n-options}
|
||
|
||
## Create a translation source file
|
||
|
||
## 创建翻译源文件
|
||
|
||
When your app is ready, you can use the Angular CLI to extract the text messages marked with `i18n` and attributes marked with `i18n-x` into a translation source file.
|
||
Open a terminal window at the root of the app project and run the CLI command `xi18n`.
|
||
|
||
当你的应用就绪之后,你可以使用 Angular CLI 来提取出带有 `i18n` 标记和带有 `i18n-x` 属性的文本信息,并存入一个翻译源文件。
|
||
在应用的项目根目录打开一个终端窗口,并运行 CLI 的 `xi18n` 命令。
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
ng xi18n
|
||
</code-example>
|
||
|
||
By default, the command creates a file named `messages.xlf` in your `src/` folder.
|
||
|
||
本工具默认会在你的 `src/` 目录下生成一个名叫 `messages.xlf` 的翻译文件。
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
If you don't use the CLI, you have two options:
|
||
|
||
如果你不使用 CLI,那么你有两个选择:
|
||
|
||
* You can use the `ng-xi18n` tool directly from the `@angular/compiler-cli` package.
|
||
For more information, see the [`ng xi18n` command documentation](cli/xi18n).
|
||
|
||
你可以直接使用来自 `@angular/compiler-cli` 包中的 `ng-xi18n` 工具。更多信息,参见 [`ng xi18n` 命令的文档](cli/xi18n)。
|
||
|
||
* You can use the CLI Webpack plugin `AngularCompilerPlugin` from the `@ngtools/webpack` package.
|
||
Set the parameters `i18nOutFile` and `i18nOutFormat` to trigger the extraction.
|
||
For more information, see the [Angular Ahead-of-Time Webpack Plugin documentation](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack).
|
||
|
||
你可以使用 CLI 中来自 `@ngtools/webpack` 包中的 Webpack 插件。设置其 `i18nOutFile` 和 `i18nOutFormat` 参数进行触发。
|
||
更多信息,参见 [Angular AOT Webpack 插件文档](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack)。
|
||
|
||
</div>
|
||
|
||
{@a other-formats}
|
||
|
||
### Output options
|
||
|
||
### 输出选项
|
||
|
||
You can supply command options to change the format, the name, the location, and the source locale of the extracted file.
|
||
For example, to create a file in the `src/locale` folder, specify the output path:
|
||
|
||
你可以提供一些命令选项来改变所提取的文件的格式、名字、位置以及源语言区域。
|
||
比如,在 `src/locale` 目录下创建一个文件,可以指定输出路径(output path):
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
ng xi18n --output-path src/locale
|
||
</code-example>
|
||
|
||
By default, the `xi18n` command generates a translation file named `messages.xlf` in the
|
||
<a href="https://en.wikipedia.org/wiki/XLIFF">XML Localization Interchange File Format
|
||
(XLIFF, version 1.2)</a>.
|
||
|
||
默认情况下,`xi18n` 命令会以 <a href="https://en.wikipedia.org/wiki/XLIFF">XML 翻译交换文件格式(XLIFF, 1.2 版)</a> 生成一个名叫 `messages.xlf` 的翻译文件。
|
||
|
||
The command can read and write files in three translation formats:
|
||
|
||
该命令可以用三种翻译格式之一读写文件:
|
||
|
||
* XLIFF 1.2 (default)
|
||
|
||
XLIFF 1.2 (默认)
|
||
|
||
* XLIFF 2
|
||
|
||
* <a href="http://cldr.unicode.org/development/development-process/design-proposals/xmb" >XML Message
|
||
Bundle (XMB)</a>
|
||
|
||
<a href="http://cldr.unicode.org/development/development-process/design-proposals/xmb" >XML 消息包 (XMB)</a>
|
||
|
||
You can specify the translation format explicitly with the `--i18nFormat` command option, as illustrated in
|
||
these example commands:
|
||
|
||
你可以使用 `--i18nFormat` 选项明确指定想用的格式,范例如下:
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
ng xi18n --i18n-format=xlf
|
||
ng xi18n --i18n-format=xlf2
|
||
ng xi18n --i18n-format=xmb
|
||
</code-example>
|
||
|
||
The sample in this guide uses the default XLIFF 1.2 format.
|
||
|
||
本章的范例使用默认的 XLIFF 1.2 格式。
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
XLIFF files have the extension .xlf. The XMB format generates .xmb source files but uses
|
||
.xtb (XML Translation Bundle: XTB) translation files.
|
||
|
||
XLIFF 文件带有 .xlf 扩展名。XMB 格式会生成 .xmb 格式的源文件,但使用 .xtb(XML 翻译包)格式的翻译文件。
|
||
|
||
</div>
|
||
|
||
You can change the name of the translation source file that is generated by the extraction tool with
|
||
the `--outFile` command option:
|
||
|
||
你还可以使用 `--out-file` 选项来为提取工具生成的翻译源文件改名:
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
|
||
ng xi18n --out-file source.xlf
|
||
|
||
</code-example>
|
||
|
||
You can specify the base locale of your app with the`--i18n-locale` command option:
|
||
|
||
你还可以使用 `--i18n-locale` 选项来指定应用的基本地区:
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
|
||
ng xi18n --i18n-locale fr
|
||
|
||
</code-example>
|
||
|
||
The extraction tool uses the locale to add the app locale information into your translation source
|
||
file. This information is not used by Angular, but external translation tools may need it.
|
||
|
||
该提取工具会用这个地区标识把本地化信息添加到你的翻译源文件中。这个信息对 Angular 来说没用,不过外部翻译工具可能会需要它。
|
||
|
||
{@a translate}
|
||
|
||
## Translate the source text
|
||
|
||
## 翻译源文本
|
||
|
||
The `ng xi18n` command generates a translation source file named `messages.xlf` in the project `src`
|
||
folder.
|
||
|
||
`ng xi18n` 命令会在项目的 `src` 目录下生成一个名为 `messages.xlf` 的翻译源文件。
|
||
|
||
The next step is to translate the display strings in this source file into language-specific
|
||
translation files. The example in this guide creates a French translation file.
|
||
|
||
下一步是将要显示的字符串翻译到指定语言的翻译文件。
|
||
这个例子中创建了一个法语翻译文件。
|
||
|
||
{@a localization-folder}
|
||
|
||
### Create a localization folder
|
||
|
||
### 新建一个本土化目录
|
||
|
||
Most apps are translated into more than one other language. For this reason, it is standard practice
|
||
for the project structure to reflect the entire internationalization effort.
|
||
|
||
大多数应用都要被翻译成多种其它语言,因此,为全部国际化工作做适当的调整项目目录结构是一种标准实践。
|
||
|
||
One approach is to dedicate a folder to localization and store related assets, such as
|
||
internationalization files, there.
|
||
|
||
方法之一是为本土化和相关资源(比如国际化文件)创建一个专门的目录。
|
||
|
||
<div class="alert is-helpful">
|
||
|
||
Localization and internationalization are
|
||
<a href="https://en.wikipedia.org/wiki/Internationalization_and_localization">different but
|
||
closely related terms</a>.
|
||
|
||
本土化和国际化是<a href="https://en.wikipedia.org/wiki/Internationalization_and_localization" target="_blank">不同但是很相近的概念</a>。
|
||
|
||
</div>
|
||
|
||
This guide follows that approach. It has a `locale` folder under `src/`.
|
||
Assets within that folder have a filename extension that matches their associated locale.
|
||
|
||
本指南遵循了这种方式。在`src/`目录下,有一个专门的`locale`目录,该目录中的文件都带一个与相关地区匹配的扩展名。
|
||
|
||
### Create the translation files
|
||
|
||
### 创建翻译文件
|
||
|
||
For each translation source file, there must be at least one language translation file for the
|
||
resulting translation.
|
||
|
||
对每个翻译文件来说,都必须至少有一个语言的翻译文件作为翻译结果。
|
||
|
||
For this example:
|
||
|
||
对于这个例子:
|
||
|
||
1. Make a copy of the `messages.xlf` file.
|
||
|
||
复制一份 `messages.xlf` 文件。
|
||
|
||
2. Put the copy in the `locale` folder.
|
||
|
||
把这个副本放进 `locale` 目录下。
|
||
|
||
3. Rename the copy to `messages.fr.xlf` for the French language translation.
|
||
|
||
把这个副本改名为 `messages.fr.xlf` 以作为法语翻译结果。
|
||
|
||
If you were translating to other languages, you would repeat these steps for each target language.
|
||
|
||
如果你要翻译为其他语言,那就为每一个目标语种重复上述步骤。
|
||
|
||
{@a translate-text-nodes}
|
||
|
||
### Translate text nodes
|
||
|
||
### 翻译文本节点
|
||
|
||
In a large translation project, you would send the `messages.fr.xlf` file to a French translator who
|
||
would enter the translations using an XLIFF file editor.
|
||
|
||
在现实世界中,`messages.fr.xlf` 文件会被发给法语翻译,他们会使用某种 XLIFF 文件编辑器来翻译它。
|
||
|
||
This sample file is easy to translate without a special editor or knowledge of French.
|
||
|
||
你不需要任何编辑器或者法语知识就可以轻易的翻译本例子文件。
|
||
|
||
1. Open `messages.fr.xlf` and find the first `<trans-unit>` section:
|
||
|
||
打开 `messages.fr.xlf` 并找到第一个 `<trans-unit>` 区:
|
||
|
||
> <code-example path="i18n/doc-files/messages.fr.xlf.html" region="translated-hello-before" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
> This XML element represents the translation of the `<h1>` greeting tag that you marked with the
|
||
`i18n` attribute earlier in this guide.
|
||
|
||
> 这个 XML 元素表示前面你加过 `i18n` 属性的那个打招呼用的 `<h1>` 标签。
|
||
|
||
> Note that the translation unit `id=introductionHeader` is derived from the
|
||
[custom `id`](#custom-id "Set a custom id") that you set earlier, but
|
||
without the `@@` prefix required in the source HTML.
|
||
|
||
> 注意这个 `id=introductionHeader` 的翻译单元是来自你以前设置过的[自定义 `id`](#custom-id "Set a custom id")的。但是并没有源 HTML 所需的 `@@` 前缀。
|
||
|
||
2. Duplicate the `<source/>` tag, rename it `target`, and then replace its content with the French
|
||
greeting. If you were working with a more complex translation, you could use the information
|
||
and context provided by the source, description, and meaning elements to guide your selection of
|
||
the appropriate French translation.
|
||
|
||
复制 `<source/>` 标记,把它改名为 `target`,并把它的内容改为法语版的 “greeting”。
|
||
如果你要做的是更复杂的翻译,可能会使用由源文本、描述信息和含义等提供的信息和上下文来给出更恰当的法语翻译。
|
||
|
||
> <code-example path="i18n/doc-files/messages.fr.xlf.html" region="translated-hello" header="src/locale/messages.fr.xlf (trans-unit, after translation)" linenums="false">
|
||
</code-example>
|
||
|
||
3. Translate the other text nodes the same way:
|
||
|
||
用同样的方式翻译其它文本节点:
|
||
|
||
> <code-example path="i18n/doc-files/messages.fr.xlf.html" region="translated-other-nodes" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
<div class="alert is-important">
|
||
|
||
**The Angular i18n tools generated the ids for these translation units. Don't change them.**
|
||
Each `id` depends upon the content of the template text and its assigned meaning.
|
||
If you change either the text or the meaning, then the `id` changes.
|
||
For more information, see the **[translation file maintenance discussion](#custom-id)**.
|
||
|
||
**Angular 的 i18n 工具会为这些翻译单元生成一些 id,不要修改它们。**
|
||
每个 `id` 都是根据模板文本的内容及其含义来生成的。
|
||
无论你修改了文本还是含义,它们的 `id` 都会改变。
|
||
要了解更多信息,参见 **[关于翻译文件可维护性的讨论](#custom-id)**。
|
||
|
||
</div>
|
||
|
||
{@a translate-plural-select}
|
||
|
||
## Translating plural and select expressions
|
||
|
||
## 翻译复数(plural)和选择(select)表达式
|
||
|
||
The _plural_ and _select_ ICU expressions are extracted separately, so they require special attention
|
||
when preparing for translation.
|
||
|
||
*复数*和*选择*的 ICU 表达式都是分别提取的,所以在准备翻译时,它们需要格外注意。
|
||
|
||
Look for these expressions in relation to other translation units that you recognize from
|
||
elsewhere in the source template. In this example, you know the translation unit for the `select`
|
||
must be just below the translation unit for the logo.
|
||
|
||
你要从原始模板中其它地方识别出来的翻译单元来找到这些表达式之间的联系。
|
||
比如在这个例子中,你知道 `select` 一定会出现在 logo 的翻译单元的紧下方。
|
||
|
||
{@a translate-plural}
|
||
|
||
### Translate _plural_
|
||
|
||
### 翻译*复数*
|
||
|
||
To translate a `plural`, translate its ICU format match values:
|
||
|
||
要翻译一个复数,就要翻译它的 ICU 格式中匹配的值:
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translated-plural" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
You can add or remove plural cases, with each language having its own cardinality. (See
|
||
[CLDR plural rules](http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html).)
|
||
|
||
你可以添加或删除复数的情况,每种语言都有自己的基数规则。(参见 [CLDR 复数规则](http://www.unicode.org/cldr/charts/latest/supplemental/language_plural_rules.html))。
|
||
|
||
{@a translate-select}
|
||
|
||
### Translate _select_
|
||
|
||
### 翻译*选择*(select)
|
||
|
||
Below is the content of our example `select` ICU expression in the component template:
|
||
|
||
下面是组件模板中的 ICU 表达式 `select` 的例子:
|
||
|
||
<code-example path="i18n/src/app/app.component.html" region="i18n-select" header="src/app/app.component.html" linenums="false">
|
||
</code-example>
|
||
|
||
The extraction tool broke that into two translation units because ICU expressions are extracted
|
||
separately.
|
||
|
||
提取工具会把它拆成*两个*翻译单元,因为 ICU 表达式是分别提取的。
|
||
|
||
The first unit contains the text that was outside of the `select`.
|
||
In place of the `select` is a placeholder, `<x id="ICU">`, that represents the `select` message.
|
||
Translate the text and move around the placeholder if necessary, but don't remove it. If you remove
|
||
the placeholder, the ICU expression will not be present in your translated app.
|
||
|
||
第一个单元包含 `select` 之外的文本。
|
||
这里的 `select` 是一个占位符 `<x id="ICU">`,用来表示 `select` 中的消息。
|
||
翻译这段文本,如果需要就把占位符放在那里,但不要删除它。
|
||
如果删除了占位符,ICU 表达式就不会出现在翻译后的应用中。
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translate-select-1" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
The second translation unit, immediately below the first one, contains the `select` message.
|
||
Translate that as well.
|
||
|
||
第一个翻译单元的紧下方就是第二个翻译单元,包含 `select` 中的消息。照样翻译它。
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translate-select-2" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
Here they are together, after translation:
|
||
|
||
在翻译之后,它们会放在一起:
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translated-select" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
{@a translate-nested}
|
||
|
||
### Translate a nested expression
|
||
|
||
### 翻译嵌套的表达式
|
||
|
||
A nested expression is similar to the previous examples. As in the previous example, there are
|
||
two translation units. The first one contains the text outside of the nested expression:
|
||
|
||
嵌套的表达式和前一节没有什么不同。就像上一个例子中那样,这里有*两个*翻译单元。
|
||
第一个包含嵌套表达式之外的文本:
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translate-nested-1" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
The second unit contains the complete nested expression:
|
||
|
||
第二个包含完整的嵌套表达式:
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translate-nested-2" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
And both together:
|
||
|
||
放在一起时:
|
||
|
||
<code-example path="i18n/doc-files/messages.fr.xlf.html" region="translate-nested" header="src/locale/messages.fr.xlf (trans-unit)" linenums="false">
|
||
</code-example>
|
||
|
||
The entire template translation is complete. The next section describes how to load that translation
|
||
into the app.
|
||
|
||
整个模板的翻译就完成了。下一节会讲如何翻译结果加载到应用程序中。
|
||
|
||
{@a app-pre-translation}
|
||
|
||
### The app and its translation file
|
||
|
||
### 应用及其翻译文件
|
||
|
||
The sample app and its translation file are now as follows:
|
||
|
||
下面是例子应用及其翻译文件:
|
||
|
||
<code-tabs>
|
||
<code-pane header="src/app/app.component.html" path="i18n/src/app/app.component.html">
|
||
</code-pane>
|
||
<code-pane header="src/app/app.component.ts" path="i18n/src/app/app.component.ts">
|
||
</code-pane>
|
||
<code-pane header="src/app/app.module.ts" path="i18n/src/app/app.module.ts">
|
||
</code-pane>
|
||
<code-pane header="src/main.ts" path="i18n/doc-files/main.1.ts">
|
||
</code-pane>
|
||
<code-pane header="src/locale/messages.fr.xlf" path="i18n/doc-files/messages.fr.xlf.html">
|
||
</code-pane>
|
||
</code-tabs>
|
||
|
||
{@a merge}
|
||
|
||
## Merge the completed translation file into the app
|
||
|
||
## 合并已经翻译的文件
|
||
|
||
To merge the translated text into component templates, compile the app with the completed
|
||
translation file.
|
||
|
||
要把已经翻译的文件合并到组件模板,就要用翻译过的文件编译应用。
|
||
|
||
Provide the Angular compiler with three translation-specific pieces of information:
|
||
|
||
为 Angular 编译器提供三种与翻译有关的信息:
|
||
|
||
* The translation file.
|
||
|
||
翻译文件
|
||
|
||
* The translation file format.
|
||
|
||
翻译文件的格式
|
||
|
||
* The locale (`fr` or `en-US` for instance).
|
||
|
||
目标地区(比如 `fr` 或 `en-US`)。
|
||
|
||
The compilation process is the same whether the translation file is in `.xlf` format or in another
|
||
format that Angular understands, such as `.xtb`.
|
||
|
||
无论翻译文件是 `.xlf` 还是 Angular 支持的其它格式(比如 `.xtb`),其编译过程都是一样的。
|
||
|
||
How you provide this information depends upon whether you compile with
|
||
the JIT compiler or the AOT compiler.
|
||
|
||
你如何提供这些信息取决于你使用的是JIT(即时)编译器还是AOT(预先)编译器。
|
||
|
||
* With [AOT](guide/i18n#merge-aot), you pass the information as configuration settings.
|
||
|
||
使用[AOT](guide/i18n#merge-aot)时,用配置项传入这些配置信息。
|
||
|
||
* With [JIT](guide/i18n#merge-jit), you provide the information at bootstrap time.
|
||
|
||
使用[JIT](guide/i18n#merge-jit)时,在引导时提供。
|
||
|
||
{@a merge-aot}
|
||
|
||
### Merge with the AOT compiler
|
||
|
||
### 使用 AOT 编译器合并
|
||
|
||
The [AOT compiler](guide/glossary#aot) is part of a build process that produces a small, fast,
|
||
ready-to-run application package, typically for production.
|
||
|
||
AOT(*预先*)编译器是构建过程的一部分,它可以生成又小又快,直接可用的应用包,通常是打产品包。
|
||
|
||
When you internationalize with the AOT compiler, you must pre-build a separate application
|
||
package for each language and serve the appropriate package based on either server-side language
|
||
detection or url parameters.
|
||
|
||
当你使用 AOT 编译器进行国际化时,你必须为每种语言预先编译一个独立的应用包,并且依靠服务端语言检测或 URL 参数来找出合适的包。
|
||
|
||
To instruct the AOT compiler to use your translation configuration, set the three "i18n" build configuration options in your `angular.json` file.
|
||
|
||
你还要指示 AOT 编译器使用你的翻译配置,要这么做,你就要在 `angular.json` 文件中使用三个 "i18n" 构建选项来配置翻译信息。
|
||
|
||
* `i18nFile`: the path to the translation file.
|
||
|
||
`i18nFile`: 翻译文件的路径。
|
||
|
||
* `i18nFormat`: the format of the translation file.
|
||
|
||
`i18nFormat`: 翻译文件的格式。
|
||
|
||
* `i18nLocale`: the locale id.
|
||
|
||
`i18nLocale`: 地区的 id.
|
||
|
||
You should also direct the output to a locale-specific folder to keep it separate from other locale versions of your app, by setting the `outputPath` configuration option.
|
||
|
||
你还可以通过设置 `outputPath` 选项来把输出指向一个区域相关的目录,以便把应用的不同本地化版本分离开。
|
||
|
||
```
|
||
"build": {
|
||
...
|
||
"configurations": {
|
||
...
|
||
"fr": {
|
||
"aot": true,
|
||
"outputPath": "dist/my-project-fr/",
|
||
"i18nFile": "src/locale/messages.fr.xlf",
|
||
"i18nFormat": "xlf",
|
||
"i18nLocale": "fr",
|
||
...
|
||
}
|
||
}
|
||
},
|
||
"serve": {
|
||
...
|
||
"configurations": {
|
||
...
|
||
"fr": {
|
||
"browserTarget": "*project-name*:build:fr"
|
||
}
|
||
}
|
||
}
|
||
```
|
||
|
||
You can then pass this configuration to the `ng serve` or `ng build` commands.
|
||
The example below shows how to serve the French language file created in previous
|
||
sections of this guide:
|
||
|
||
你可以通过 `ng serve` 或 `ng build` 命令来传入这些配置项。
|
||
下面的例子演示了如何使用前面部分创建的法语文件来启动开发服务器:
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
ng serve --configuration=fr
|
||
</code-example>
|
||
|
||
For production builds, you define a separate `production-fr` build configuration in
|
||
the CLI configuration file, `angular.json`.
|
||
|
||
要进行产品环境构建,就要在 CLI 的配置文件 `angular.json` 中定义一个独立的 `production-fr` 构建选项。
|
||
|
||
```
|
||
...
|
||
"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": "my-project:build"
|
||
},
|
||
"configurations": {
|
||
"production": {
|
||
"browserTarget": "my-project:build:production"
|
||
},
|
||
"fr": {
|
||
"browserTarget": "my-project:build:fr"
|
||
}
|
||
}
|
||
},
|
||
|
||
```
|
||
|
||
The same configuration options can also be provided through the CLI with your existing `production` configuration.
|
||
|
||
这些配置项还可以通过 CLI 参数和现有的 `production` 配置来提供。
|
||
|
||
<code-example language="sh" class="code-shell">
|
||
ng build --prod --i18n-file src/locale/messages.fr.xlf --i18n-format xlf --i18n-locale fr
|
||
</code-example>
|
||
|
||
{@a merge-jit}
|
||
|
||
### Merge with the JIT compiler
|
||
|
||
### 用 JIT 编译器合并
|
||
|
||
The [JIT compiler](guide/glossary#jit) compiles your app in the browser as the app loads.
|
||
To support translation with the JIT compiler, you must do the following:
|
||
|
||
加载应用程序时,[即时(JIT)编译器](guide/glossary#jit)会在浏览器中编译应用。
|
||
在使用 JIT 编译器的环境中翻译是一个动态的流程,包括:
|
||
|
||
1. Import the appropriate language translation file as a string constant.
|
||
|
||
把合适的语言翻译文件导入成一个字符串常量
|
||
|
||
2. Create corresponding translation providers for the JIT compiler.
|
||
|
||
为 JIT 编译器创建相应的翻译提供商。
|
||
|
||
3. Bootstrap the app with those providers.
|
||
|
||
使用这些提供商来启动应用。
|
||
|
||
Three providers tell the JIT compiler how to translate the template texts for a particular language
|
||
while compiling the app:
|
||
|
||
三种提供商帮助 JIT 编译在编译应用时,将模板文本翻译到某种语言:
|
||
|
||
* `TRANSLATIONS` is a string containing the content of the translation file.
|
||
|
||
`TRANSLATIONS` 是含有翻译文件内容的字符串。
|
||
|
||
* `TRANSLATIONS_FORMAT` is the format of the file: `xlf`, `xlf2`, or `xtb`.
|
||
|
||
`TRANSLATIONS_FORMAT` 是文件的格式: `xlf`、`xlif` 或 `xtb`。
|
||
|
||
* `LOCALE_ID` is the locale of the target language.
|
||
|
||
`LOCALE_ID` 是目标语言的语言环境。
|
||
|
||
The Angular `bootstrapModule` method has a second `compilerOptions` parameter that can influence the
|
||
behavior of the compiler. You can use it to specify the translation providers:
|
||
|
||
Angular 的 `bootstrapModule` 方法具有第二参数 `compilerOptions`,它可以影响编译器的行为。你可以用它来指定翻译提供商:
|
||
|
||
<code-example path="i18n/doc-files/main.2.ts" header="src/main.ts">
|
||
</code-example>
|
||
|
||
Then provide the `LOCALE_ID` in the main module:
|
||
|
||
然后在主文件包中提供 `LOCALE_ID`:
|
||
|
||
<code-example path="i18n/doc-files/app.module.ts" header="src/app/app.module.ts" linenums="false">
|
||
</code-example>
|
||
|
||
{@a missing-translation}
|
||
|
||
### Report missing translations
|
||
|
||
### 汇报缺失的翻译
|
||
|
||
By default, when a translation is missing, the build succeeds but generates a warning such as
|
||
`Missing translation for message "foo"`. You can configure the level of warning that is generated by
|
||
the Angular compiler:
|
||
|
||
默认情况下,如果缺少了某个翻译文件,构建工具会成功但给出警告(如`Missing translation for message "foo"`)。你可以配置 Angular 编译器生成的警告级别:
|
||
|
||
* Error: throw an error. If you are using AOT compilation, the build will fail. If you are using JIT
|
||
compilation, the app will fail to load.
|
||
|
||
Error(错误):抛出错误,如果你使用的是 AOT 编译器,构建就会失败。如果使用的是 JIT 编译器,应用的加载就会失败。
|
||
|
||
* Warning (default): show a 'Missing translation' warning in the console or shell.
|
||
|
||
Warning(警告 - 默认):在控制台中显示一条 “Missing translation” 警告。
|
||
|
||
* Ignore: do nothing.
|
||
|
||
Ignore(忽略):什么也不做。
|
||
|
||
You specify the warning level in the `configurations` section your Angular CLI build configuration. The example below shows how to set the warning level to error:
|
||
|
||
你可以在 Angular CLI 构建配置的 `configurations` 区指定警告级别。下面这个例子展示了如何把警告级别设置为 `error`:
|
||
|
||
```
|
||
"configurations": {
|
||
...
|
||
"fr": {
|
||
...
|
||
"i18nMissingTranslation": "error"
|
||
}
|
||
}
|
||
```
|
||
|
||
If you use the JIT compiler, specify the warning level in the compiler config at bootstrap by adding
|
||
the 'MissingTranslationStrategy' property. The example below shows how to set the warning level to
|
||
error:
|
||
|
||
如果你要使用 JIT 编译器,就在启动时往编译器的配置中添加一个 `MissingTranslationStrategy` 属性来指定警告级别。下面的例子示范了如何把警告级别设置为 `error`:
|
||
|
||
<code-example path="i18n/doc-files/main.3.ts" header="src/main.ts">
|
||
</code-example>
|
||
|
||
### Build for multiple locales
|
||
|
||
### 为多种语言环境构建
|
||
|
||
When you use the CLI `build` or `serve` command to build your application for different locales, change the output path using the `--outputPath` command option (along with the i18n-specific command options), so that the translation files are saved to different locations.
|
||
When you are serving a locale-specific version from a subdirectory, you can also change the base URL used by your app by specifying the `--baseHref` option.
|
||
|
||
当你使用 CLI 的 `build` 或 `serve` 命令来为不同的语言环境构建应用时,可以使用 `--outputPath` 选项来更改输出路径,把这些翻译文件保存在不同的位置。
|
||
当你通过子目录来为各个语言环境分别启动服务器时,你还要通过指定 `--baseHref` 选项来修改应用的基地址。
|
||
|
||
For example, if the French version of your application is served from https://myapp.com/fr/, configure the build for the French version as follows.
|
||
|
||
比如,如果应用的法语版运行在 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",
|
||
}
|
||
```
|
||
|
||
For more details about how to create scripts to generate an app in multiple languages and how to set up Apache 2 to serve them from different subdirectories, read [this tutorial by Philippe Martin](https://medium.com/@feloy/deploying-an-i18n-angular-app-with-angular-cli-fc788f17e358#.1xq4iy6fp).
|
||
|
||
要了解如何创建脚本来为不同的语言环境生成应用,以及如何配置 Apache 2 来从不同的子目录下启动服务,请阅读 [Philippe Martin 写的这份教程](https://medium.com/@feloy/deploying-an-i18n-angular-app-with-angular-cli-fc788f17e358#.1xq4iy6fp)。
|