Skip to content

Commit

Permalink
Fix: Japanese doc
Browse files Browse the repository at this point in the history
remove 3.x description
  • Loading branch information
eltociear authored Jul 19, 2020
1 parent 8bce54b commit a2ed689
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ja/core-libraries/internationalization-and-localization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ i18n シェルを利用できます。より知りたい場合は、 :doc:`次

use Cake\I18n\I18n;

// 3.5 より前は I18n::locale() を使用します
I18n::setLocale('de_DE');

地域化のツールを使うと、これは数字や日付がどのようにフォーマットされているかについても変更します。
Expand Down Expand Up @@ -379,7 +378,6 @@ Gettext の複数形選択を使用する
見つかります。翻訳機構を作成するのに最低限必要なのは、ローダー機能が ``Aura\Intl\Package``
オブジェクトを返すことです。一旦コードを置けば、翻訳機能は以下のように利用できるでしょう。 ::

// 3.5 より前は I18n::locale() を使用します
I18n::setLocale('fr_FR');
__d('animals', 'Dog'); // "Chien" を返す

Expand All @@ -392,7 +390,6 @@ Gettext の複数形選択を使用する
use Cake\I18n\MessagesFileLoader as Loader;

// src/Locale/folder/sub_folder/filename.po からメッセージをロード
// 3.5 より前は translator() を使用します
I18n::setTranslator(
'animals',
new Loader('filename', 'folder/sub_folder', 'po'),
Expand Down Expand Up @@ -432,7 +429,6 @@ CakePHP が利用しているものと同じやり方を使い続けることも

use Cake\I18n\MessagesFileLoader as Loader;

// 3.5 より前は translator() を使用します
I18n::setTranslator(
'animals',
new Loader('animals', 'fr_FR', 'yaml'),
Expand Down Expand Up @@ -592,7 +588,6 @@ ORM で返されるデフォルトの日付では結果は ``Cake\I18n\Time``
$middleware->add(new LocaleSelectorMiddleware(['en_US', 'fr_FR']));
}

// 3.3.0 より前は、 DispatchFilter を使用してください。
// config/bootstrap.php 内で
DispatcherFactory::add('LocaleSelector');

Expand Down

0 comments on commit a2ed689

Please sign in to comment.