Skip to content

Commit 7c06953

Browse files
authored
Merge pull request #8141 from cakephp/fix-ja
Fix reference to missing doc in ja
2 parents e72df0d + 82e8ba5 commit 7c06953

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

ja/controllers/components.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CakePHP の中に含まれるコンポーネントの詳細については、各
2525
====================
2626

2727
コアコンポーネントの多くは設定を必要としています。コンポーネントが設定を
28-
必要としている例は、 :doc:`/controllers/components/authentication` や
28+
必要としている例は、 :doc:`/controllers/components/form-protection` や
2929
などにあります。これらのコンポーネントや
3030
一般的なコンポーネントの設定は、通常、お使いのコントローラーの ``initialize()``
3131
メソッド内で ``loadComponent()`` を使用するか、 ``$components`` 配列を介して行われます。 ::

ja/development/testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ Basic 認証のようなステートレス認証を使用する API をテスト
10121012

10131013
Basic または Digest 認証をテストする際、自動的に
10141014
`PHP が作成する <https://php.net/manual/ja/features.http-auth.php>`_
1015-
環境変数を追加できます。これらの環境変数は、 :ref:`basic-authentication` に概説されている
1015+
環境変数を追加できます。これらの環境変数は、 に概説されている
10161016
認証アダプター内で使用されます。 ::
10171017

10181018
public function testBasicAuthentication(): void

ja/tutorials-and-examples/blog-auth-example/auth.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,6 @@ composerを使ってAuthenticationプラグインをインストールします
361361
------------------------------------
362362

363363
#. :doc:`/bake/usage` 基本的な CRUD コードの生成について
364-
#. :doc:`/controllers/components/authentication`: ユーザーの登録とログインについて
365364

366365
.. meta::
367366
:title lang=ja: Simple Authentication Application

ja/tutorials-and-examples/bookmarks/part-two.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
CakePHP では、認証は :doc:`/controllers/components` によって制御されます。
1212
コンポーネントは再利用可能な特定の機能や概念を作成するための方法と考えることができます。
1313
コンポーネントもまた、コントローラーのイベントのライフサイクルをフックすることでアプリケーションに
14-
作用することができます。初めに、 :doc:`AuthComponent
15-
</controllers/components/authentication>` をアプリケーションに追加しましょう。
14+
作用することができます。初めに、 をアプリケーションに追加しましょう。
1615
すべてのメソッドに認証を必須にすることをおすすめします。では AuthComponent を
1716
AppController に追加しましょう。 ::
1817

0 commit comments

Comments
 (0)