Skip to content

Commit

Permalink
update ICU documentation link (#19128)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell committed Jan 5, 2022
1 parent 34a25a5 commit 0167c9b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/guide-fr/tutorial-i18n.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ forme complète : {name,type,style}
echo Yii::t('app', "Example of string with ''-escaped characters'': '{' '}' '{test}' {count,plural,other{''count'' value is # '#{}'}}", ['count' => 3]);
```

Le format complet est décrit dans la [documentation ICU](http://icu-project.org/apiref/icu4c/classMessageFormat.html).
Le format complet est décrit dans la [documentation ICU](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classMessageFormat.html).

Dans ce qui suit, nous allons présenter quelques usages courants.

Expand Down
2 changes: 1 addition & 1 deletion docs/guide-ja/tutorial-i18n.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ echo \Yii::t('app', 'Price: {0,number,currency}', $price);
echo Yii::t('app', "Example of string with ''-escaped characters'': '{' '}' '{test}' {count,plural,other{''count'' value is # '#{}'}}", ['count' => 3]);
+```

このようなプレースホルダを指定する方法についての完全な説明は、[ICU ドキュメント](http://icu-project.org/apiref/icu4c/classMessageFormat.html)を参照してください。以下では、よくある使用方法をいくつか示します。
このようなプレースホルダを指定する方法についての完全な説明は、[ICU ドキュメント](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classMessageFormat.html)を参照してください。以下では、よくある使用方法をいくつか示します。


#### 数値 <span id="number"></span>
Expand Down
2 changes: 1 addition & 1 deletion docs/guide-ru/tutorial-i18n.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ echo \Yii::t('app', 'Balance: {0}', $sum);
После этого вам станет доступен расширенный синтаксис указателей, а также сокращённая запись `{placeholderName, argumentType}`,
эквивалентная форме `{placeholderName, argumentType, argumentStyle}`, позволяющая определять стиль форматирования.

Полная документация доступна на [сайте ICU](http://icu-project.org/apiref/icu4c/classMessageFormat.html), но далее в
Полная документация доступна на [сайте ICU](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classMessageFormat.html), но далее в
документации будут приведены примеры использования расширенных возможностей интернационализации.

#### Числа
Expand Down
2 changes: 1 addition & 1 deletion docs/guide-zh-CN/tutorial-i18n.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ full form: {PlaceholderName, ParameterType, ParameterStyle}
echo Yii::t('app', "Example of string with ''-escaped characters'': '{' '}' '{test}' {count,plural,other{''count'' value is # '#{}'}}", ['count' => 3]);
```

请参阅 [ICU 文档](http://icu-project.org/apiref/icu4c/classMessageFormat.html)
请参阅 [ICU 文档](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classMessageFormat.html)
关于如何指定这样的占位符的说明。接下来我们会展示一些常用的使用方法。


Expand Down
2 changes: 1 addition & 1 deletion docs/guide/tutorial-i18n.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ full form: {name,type,style}
echo Yii::t('app', "Example of string with ''-escaped characters'': '{' '}' '{test}' {count,plural,other{''count'' value is # '#{}'}}", ['count' => 3]);
```

Complete format is described in the [ICU documentation](http://icu-project.org/apiref/icu4c/classMessageFormat.html).
Complete format is described in the [ICU documentation](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classMessageFormat.html).
In the following we will show some common usages.


Expand Down

0 comments on commit 0167c9b

Please sign in to comment.