From 82e8ba5248f4f9636d17a206cf21f9c28d836d9b Mon Sep 17 00:00:00 2001 From: Corey Taylor Date: Fri, 28 Nov 2025 17:32:46 -0600 Subject: [PATCH] Fix reference to missing doc in ja --- ja/controllers/components.rst | 2 +- ja/development/testing.rst | 2 +- ja/tutorials-and-examples/blog-auth-example/auth.rst | 1 - ja/tutorials-and-examples/bookmarks/part-two.rst | 3 +-- 4 files changed, 3 insertions(+), 5 deletions(-) diff --git a/ja/controllers/components.rst b/ja/controllers/components.rst index cd2f7c4e29..4db37dec2a 100644 --- a/ja/controllers/components.rst +++ b/ja/controllers/components.rst @@ -25,7 +25,7 @@ CakePHP の中に含まれるコンポーネントの詳細については、各 ==================== コアコンポーネントの多くは設定を必要としています。コンポーネントが設定を -必要としている例は、 :doc:`/controllers/components/authentication` や +必要としている例は、 :doc:`/controllers/components/form-protection` や などにあります。これらのコンポーネントや 一般的なコンポーネントの設定は、通常、お使いのコントローラーの ``initialize()`` メソッド内で ``loadComponent()`` を使用するか、 ``$components`` 配列を介して行われます。 :: diff --git a/ja/development/testing.rst b/ja/development/testing.rst index 40b2de7f9e..83884f03df 100644 --- a/ja/development/testing.rst +++ b/ja/development/testing.rst @@ -1012,7 +1012,7 @@ Basic 認証のようなステートレス認証を使用する API をテスト Basic または Digest 認証をテストする際、自動的に `PHP が作成する `_ -環境変数を追加できます。これらの環境変数は、 :ref:`basic-authentication` に概説されている +環境変数を追加できます。これらの環境変数は、 に概説されている 認証アダプター内で使用されます。 :: public function testBasicAuthentication(): void diff --git a/ja/tutorials-and-examples/blog-auth-example/auth.rst b/ja/tutorials-and-examples/blog-auth-example/auth.rst index 2656a098d6..0883fac5d3 100644 --- a/ja/tutorials-and-examples/blog-auth-example/auth.rst +++ b/ja/tutorials-and-examples/blog-auth-example/auth.rst @@ -361,7 +361,6 @@ composerを使ってAuthenticationプラグインをインストールします ------------------------------------ #. :doc:`/bake/usage` 基本的な CRUD コードの生成について -#. :doc:`/controllers/components/authentication`: ユーザーの登録とログインについて .. meta:: :title lang=ja: Simple Authentication Application diff --git a/ja/tutorials-and-examples/bookmarks/part-two.rst b/ja/tutorials-and-examples/bookmarks/part-two.rst index 1856bf02e2..e7b2d2e664 100644 --- a/ja/tutorials-and-examples/bookmarks/part-two.rst +++ b/ja/tutorials-and-examples/bookmarks/part-two.rst @@ -11,8 +11,7 @@ CakePHP では、認証は :doc:`/controllers/components` によって制御されます。 コンポーネントは再利用可能な特定の機能や概念を作成するための方法と考えることができます。 コンポーネントもまた、コントローラーのイベントのライフサイクルをフックすることでアプリケーションに -作用することができます。初めに、 :doc:`AuthComponent -` をアプリケーションに追加しましょう。 +作用することができます。初めに、 をアプリケーションに追加しましょう。 すべてのメソッドに認証を必須にすることをおすすめします。では AuthComponent を AppController に追加しましょう。 ::