From a0922110e5b32646f995299b5b3533cff91b9074 Mon Sep 17 00:00:00 2001 From: Arhell Date: Tue, 4 Jan 2022 00:17:59 +0200 Subject: [PATCH] update ICU documentation link --- docs/guide-fr/tutorial-i18n.md | 2 +- docs/guide-ja/tutorial-i18n.md | 2 +- docs/guide-ru/tutorial-i18n.md | 2 +- docs/guide-zh-CN/tutorial-i18n.md | 2 +- docs/guide/tutorial-i18n.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/guide-fr/tutorial-i18n.md b/docs/guide-fr/tutorial-i18n.md index 7de8ad2d916..aca8fe33a24 100644 --- a/docs/guide-fr/tutorial-i18n.md +++ b/docs/guide-fr/tutorial-i18n.md @@ -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. diff --git a/docs/guide-ja/tutorial-i18n.md b/docs/guide-ja/tutorial-i18n.md index 18b4614152d..1fe99adfbb2 100644 --- a/docs/guide-ja/tutorial-i18n.md +++ b/docs/guide-ja/tutorial-i18n.md @@ -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)を参照してください。以下では、よくある使用方法をいくつか示します。 #### 数値 diff --git a/docs/guide-ru/tutorial-i18n.md b/docs/guide-ru/tutorial-i18n.md index 29437f3f24b..bcd0b683b62 100644 --- a/docs/guide-ru/tutorial-i18n.md +++ b/docs/guide-ru/tutorial-i18n.md @@ -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), но далее в документации будут приведены примеры использования расширенных возможностей интернационализации. #### Числа diff --git a/docs/guide-zh-CN/tutorial-i18n.md b/docs/guide-zh-CN/tutorial-i18n.md index f5936e75575..add689f8395 100644 --- a/docs/guide-zh-CN/tutorial-i18n.md +++ b/docs/guide-zh-CN/tutorial-i18n.md @@ -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) 关于如何指定这样的占位符的说明。接下来我们会展示一些常用的使用方法。 diff --git a/docs/guide/tutorial-i18n.md b/docs/guide/tutorial-i18n.md index 82f50801c1c..329a220ac18 100644 --- a/docs/guide/tutorial-i18n.md +++ b/docs/guide/tutorial-i18n.md @@ -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.