From 6bebdfdba36d9359ce12d4140350247b769dd1ac Mon Sep 17 00:00:00 2001 From: satomicchy Date: Mon, 9 Jun 2025 00:10:39 +0900 Subject: [PATCH 1/5] [ja_JP] Tutorials / Creating a channel #846 This patch translates "create_channel/create_channel_overview.rst" into Japanese. Signed-off-by: satomicchy Signed-off-by: MomoKiller <1226421458@qq.com> --- .../source/create_channel/create_channel_overview.rst | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/locale/ja_JP/source/create_channel/create_channel_overview.rst b/docs/locale/ja_JP/source/create_channel/create_channel_overview.rst index c53f227c3..89e65a5c9 100644 --- a/docs/locale/ja_JP/source/create_channel/create_channel_overview.rst +++ b/docs/locale/ja_JP/source/create_channel/create_channel_overview.rst @@ -8,15 +8,18 @@ Hyperledger Fabricのネットワークでアセットを作成して転送す ピア、オーダリングノード、CAがネットワークの物理的なインフラストラクチャを形成する一方で、チャネルは組織が相互に接続してやりとりするプロセスです。 チャネルはFabricの運用と管理において基本的な役割を果たすため、チャネルの作成方法についてさまざまな側面から説明する一連のチュートリアルを紹介します。 -:doc:`Creating a new channel ` では、ネットワーク管理者が実行する必要がある操作手順について説明します。 -:doc:`Using configtx.yaml to build a channel configuration ` では、チャネルの作成に関する概念について説明した後、 -:doc:`Channel Policies ` について個別に説明します。 +Fabric v2.3では、システムチャネルを必要とせずにチャネルを作成する機能が追加され、プロセスから余分な管理レイヤーが削除されました。 +**Create a channel** チュートリアルでは、新しいフローについて説明します。 +ネットワークがまだない場合やテストネットワークを使用したい場合は、**Create a channel using the test network** をご覧ください。 +システムチャネルを基にチャネルを作成する従来のプロセスは引き続きサポートされており、Fabric v2.2の `Create a channel tutorial `_ で説明しています。 +各チュートリアルでは、ネットワーク管理者がチャネルを作成するために必要な操作手順について説明しています。より詳細な内容については、 :doc:`create_channel_config` チュートリアルでチャネルの作成に関する概念について説明した後、 :doc:`channel_policies` について個別に説明します。 .. toctree:: :maxdepth: 1 - create_channel.md + create_channel_participation.md + create_channel_test_net.md create_channel_config.md channel_policies.md From 190709356e295758d1f900dd224e07f5c755a5d4 Mon Sep 17 00:00:00 2001 From: wenpingwu Date: Tue, 8 Jul 2025 13:42:29 +0800 Subject: [PATCH 2/5] =?UTF-8?q?feat(zh-CN):=20tutorials.rst=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E6=B1=89=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MomoKiller <1226421458@qq.com> --- docs/locale/zh_CN/source/tutorials.rst | 34 +++++++++++--------------- 1 file changed, 14 insertions(+), 20 deletions(-) diff --git a/docs/locale/zh_CN/source/tutorials.rst b/docs/locale/zh_CN/source/tutorials.rst index 693bb53ac..d82e61ccd 100644 --- a/docs/locale/zh_CN/source/tutorials.rst +++ b/docs/locale/zh_CN/source/tutorials.rst @@ -1,24 +1,18 @@ 教程 ========= -Application developers can use the Fabric tutorials to get started building their -own solutions. Start working with Fabric by deploying the `test network <./test_network.html>`_ -on your local machine. You can then use the steps provided by the :doc:`deploy_chaincode` -tutorial to deploy and test your smart contracts. The :doc:`write_first_app` -tutorial provides an introduction to how to use the APIs provided by the Fabric -SDKs to invoke smart contracts from your client applications. For an in depth -overview of how Fabric applications and smart contracts work together, you -can visit the :doc:`developapps/developing_applications` topic. - -Network operators can use the :doc:`deploy_chaincode` tutorial and the -:doc:`create_channel/create_channel_overview` tutorial series to learn -important aspects of administering a running network. Both network operators and -application developers can use the tutorials on -`Private data <./private_data_tutorial.html>`_ and `CouchDB <./couchdb_tutorial.html>`_ -to explore important Fabric features. When you are ready to deploy Hyperledger -Fabric in production, see the guide for :doc:`deployment_guide_overview`. - -有两个更新通道的教程: :doc:`config_update` 和 :doc:`updating_capabilities` , :doc:`upgrading_your_components` 展示了如何升级组件,如 Peer 节点、排序节点、SDK等。 +应用开发人员可以通过Fabric教程开始构建自己的解决方案。首先在本地机器上部署`测试网络 <./test_network.html>`_, +开始使用Fabric。然后,您可以按照:doc:`deploy_chaincode`教程的步骤部署和测试智能合约。 +:doc:`write_first_app`教程介绍了如何使用Fabric SDK提供的API从客户端应用程序调用智能合约。 +如需深入了解Fabric应用程序与智能合约如何协同工作,您可以参阅:doc:`developapps/developing_applications`主题。 + +网络运维人员可以使用:doc:`deploy_chaincode`教程和:doc:`create_channel/create_channel_overview`教程系列 +学习管理运行中网络的重要知识。无论是网络运维人员还是应用开发人员,都可以通过`私有数据 <./private_data_tutorial.html>`_ +和`CouchDB <./couchdb_tutorial.html>`_教程探索Fabric的重要功能。当您准备在生产环境中部署Hyperledger Fabric时, +请参阅:doc:`deployment_guide_overview`指南。 + +有两个关于更新通道的教程::doc:`config_update`和:doc:`updating_capabilities`。:doc:`upgrading_your_components`展示了如何升级组件, +例如Peer节点、排序节点、SDK等。 最后,我们提供了一个如何写基础智能合约的介绍, :doc:`chaincode4ade` 。 @@ -27,7 +21,7 @@ Fabric in production, see the guide for :doc:`deployment_guide_overview`. .. toctree:: :maxdepth: 1 - :caption: Tutorials + :caption: 教程 test_network deploy_chaincode.md @@ -41,5 +35,5 @@ Fabric in production, see the guide for :doc:`deployment_guide_overview`. chaincode4ade videos -.. Licensed under Creative Commons Attribution 4.0 International License +.. 本文档采用知识共享署名 4.0 国际许可协议授权 https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file From 2f453fa20fc414d18991be6cdaae8cf06c797e1c Mon Sep 17 00:00:00 2001 From: wenpingwu Date: Wed, 10 Sep 2025 11:11:54 +0800 Subject: [PATCH 3/5] =?UTF-8?q?feat(zh-CN):=20tutorials.rst=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E6=B1=89=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MomoKiller <1226421458@qq.com> --- docs/locale/zh_CN/source/tutorials.rst | 27 +++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/docs/locale/zh_CN/source/tutorials.rst b/docs/locale/zh_CN/source/tutorials.rst index d82e61ccd..37b213659 100644 --- a/docs/locale/zh_CN/source/tutorials.rst +++ b/docs/locale/zh_CN/source/tutorials.rst @@ -1,22 +1,23 @@ 教程 ========= -应用开发人员可以通过Fabric教程开始构建自己的解决方案。首先在本地机器上部署`测试网络 <./test_network.html>`_, -开始使用Fabric。然后,您可以按照:doc:`deploy_chaincode`教程的步骤部署和测试智能合约。 -:doc:`write_first_app`教程介绍了如何使用Fabric SDK提供的API从客户端应用程序调用智能合约。 -如需深入了解Fabric应用程序与智能合约如何协同工作,您可以参阅:doc:`developapps/developing_applications`主题。 +应用开发人员可以使用 Fabric 教程来开始构建他们自己的解决方案。 +你可以先在本地机器上部署 `测试网络 <./test_network.html>`_, 来开始使用 Fabric。 +随后,你可以按照 :doc:`deploy_chaincode` 教程提供的步骤来部署和测试智能合约。 +:doc:`write_first_app` 教程提供了一个入门指南,介绍如何使用 Fabric SDK 提供的 API,从客户端应用程序中调用智能合约。 +如需深入了解 Fabric 应用程序和智能合约如何协同工作,可以参考 :doc:`developapps/developing_applications` 。 -网络运维人员可以使用:doc:`deploy_chaincode`教程和:doc:`create_channel/create_channel_overview`教程系列 -学习管理运行中网络的重要知识。无论是网络运维人员还是应用开发人员,都可以通过`私有数据 <./private_data_tutorial.html>`_ -和`CouchDB <./couchdb_tutorial.html>`_教程探索Fabric的重要功能。当您准备在生产环境中部署Hyperledger Fabric时, -请参阅:doc:`deployment_guide_overview`指南。 +网络运维人员可以通过 :doc:`deploy_chaincode` 教程和 :doc:`create_channel/create_channel_overview` 系列教程来学习管理运行中网络的重要知识。 +无论是网络运维还是应用开发人员,都可以通过 `私有数据 <./private_data_tutorial.html>`_ 和 `CouchDB <./couchdb_tutorial.html>`_ 教程来探索 Fabric 的重要功能。 +当你准备在生产环境中部署 Hyperledger Fabric 时,请参考 :doc:`deployment_guide_overview` 指南。 -有两个关于更新通道的教程::doc:`config_update`和:doc:`updating_capabilities`。:doc:`upgrading_your_components`展示了如何升级组件, -例如Peer节点、排序节点、SDK等。 +有两个关于更新通道的教程::doc:`config_update` 和 :doc:`updating_capabilities`。 +此外,:doc:`upgrading_your_components` 展示了如何升级组件,例如 Peer 节点、排序节点、SDK 等。 -最后,我们提供了一个如何写基础智能合约的介绍, :doc:`chaincode4ade` 。 +最后,我们提供了一个关于如何编写基础智能合约的介绍::doc:`chaincode4ade`。 + +.. note:: 如果本文档不能解决你的问题,或者在使用本教程的过程中遇到了其他问题,请阅读 :doc:`questions` 章节来寻求额外帮助。 -.. note:: 如果本文档不能解决你的问题,或者你使用本教程的过程中遇到了其他问题,请阅读 :doc:`questions` 章节来寻求额外的帮助。 .. toctree:: @@ -35,5 +36,5 @@ chaincode4ade videos -.. 本文档采用知识共享署名 4.0 国际许可协议授权 +.. Licensed under Creative Commons Attribution 4.0 International License https://creativecommons.org/licenses/by/4.0/ \ No newline at end of file From 537f0de27f0fc2d5c265553643df3233b6cf2be2 Mon Sep 17 00:00:00 2001 From: wenpingwu Date: Wed, 10 Sep 2025 11:16:02 +0800 Subject: [PATCH 4/5] =?UTF-8?q?eat(zh-CN):=20tutorials.rst=20=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E6=B1=89=E5=8C=96=EF=BC=8C=E5=88=A0=E9=99=A4=E5=A4=9A?= =?UTF-8?q?=E4=BD=99=E4=B8=8B=E5=88=92=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: vincent <1226421458@qq.com> Signed-off-by: MomoKiller <1226421458@qq.com> --- docs/locale/zh_CN/source/tutorials.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/locale/zh_CN/source/tutorials.rst b/docs/locale/zh_CN/source/tutorials.rst index 37b213659..d547eaf69 100644 --- a/docs/locale/zh_CN/source/tutorials.rst +++ b/docs/locale/zh_CN/source/tutorials.rst @@ -2,13 +2,13 @@ ========= 应用开发人员可以使用 Fabric 教程来开始构建他们自己的解决方案。 -你可以先在本地机器上部署 `测试网络 <./test_network.html>`_, 来开始使用 Fabric。 +你可以先在本地机器上部署 `测试网络 <./test_network.html>`, 来开始使用 Fabric。 随后,你可以按照 :doc:`deploy_chaincode` 教程提供的步骤来部署和测试智能合约。 :doc:`write_first_app` 教程提供了一个入门指南,介绍如何使用 Fabric SDK 提供的 API,从客户端应用程序中调用智能合约。 如需深入了解 Fabric 应用程序和智能合约如何协同工作,可以参考 :doc:`developapps/developing_applications` 。 网络运维人员可以通过 :doc:`deploy_chaincode` 教程和 :doc:`create_channel/create_channel_overview` 系列教程来学习管理运行中网络的重要知识。 -无论是网络运维还是应用开发人员,都可以通过 `私有数据 <./private_data_tutorial.html>`_ 和 `CouchDB <./couchdb_tutorial.html>`_ 教程来探索 Fabric 的重要功能。 +无论是网络运维还是应用开发人员,都可以通过 `私有数据 <./private_data_tutorial.html>` 和 `CouchDB <./couchdb_tutorial.html>` 教程来探索 Fabric 的重要功能。 当你准备在生产环境中部署 Hyperledger Fabric 时,请参考 :doc:`deployment_guide_overview` 指南。 有两个关于更新通道的教程::doc:`config_update` 和 :doc:`updating_capabilities`。 @@ -16,7 +16,7 @@ 最后,我们提供了一个关于如何编写基础智能合约的介绍::doc:`chaincode4ade`。 -.. note:: 如果本文档不能解决你的问题,或者在使用本教程的过程中遇到了其他问题,请阅读 :doc:`questions` 章节来寻求额外帮助。 +.. note:: 如果本文档不能解决你的问题,或者在使用本教程的过程中遇到了其他问题,请阅读 :doc:`questions` 章节来寻求额外的帮助。 From d3e169e3d26e5b5e2344bdba7871b1277a624bf6 Mon Sep 17 00:00:00 2001 From: vincent <1226421458@qq.com> Date: Wed, 15 Oct 2025 17:55:06 +0800 Subject: [PATCH 5/5] =?UTF-8?q?feat(zh=5FCN):=20=E6=B1=89=E5=8C=96?= =?UTF-8?q?=E6=96=87=E4=BB=B6=EF=BC=8Csigned?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: MomoKiller <1226421458@qq.com> --- docs/locale/zh_CN/source/tutorials.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/locale/zh_CN/source/tutorials.rst b/docs/locale/zh_CN/source/tutorials.rst index d547eaf69..c61fd9852 100644 --- a/docs/locale/zh_CN/source/tutorials.rst +++ b/docs/locale/zh_CN/source/tutorials.rst @@ -19,7 +19,6 @@ .. note:: 如果本文档不能解决你的问题,或者在使用本教程的过程中遇到了其他问题,请阅读 :doc:`questions` 章节来寻求额外的帮助。 - .. toctree:: :maxdepth: 1 :caption: 教程