From c7dc652d8ad333dd52fb07ffcdd6abaf8d959aff Mon Sep 17 00:00:00 2001 From: timmy Date: Wed, 20 Dec 2023 10:49:58 +0800 Subject: [PATCH 01/16] working on ssl --- library/ssl.po | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/library/ssl.po b/library/ssl.po index 91617a5a39..0d23acd690 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-07-29 00:03+0000\n" -"PO-Revision-Date: 2023-12-19 09:38+0800\n" +"PO-Revision-Date: 2023-12-20 09:54+0800\n" "Last-Translator: Adrian Liaw \n" "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" "tw)\n" @@ -20,7 +20,7 @@ msgstr "" #: ../../library/ssl.rst:2 msgid ":mod:`ssl` --- TLS/SSL wrapper for socket objects" -msgstr "" +msgstr ":mod:`ssl` --- socket 物件的 TLS/SSL 封套資料" #: ../../library/ssl.rst:10 msgid "**Source code:** :source:`Lib/ssl.py`" @@ -47,6 +47,9 @@ msgid "" "cause variations in behavior. For example, TLSv1.3 with OpenSSL version " "1.1.1." msgstr "" +"由於調用了作業系統的 socket APIs,有些行為會根據平台而有所不同。OpenSSL的安裝" +"版本也會對模組的運作產生影響。例如,使用 OpenSSL 版本 1.1.1 的情況下可能涉及" +"到 TLSv1.3。" #: ../../library/ssl.rst:32 msgid "" @@ -54,6 +57,8 @@ msgid "" "lead to a false sense of security, as the default settings of the ssl module " "are not necessarily appropriate for your application." msgstr "" +"在使用此模組之前,請閱讀\\ :ref:`ssl-security`\\ 。如果不這樣做,可能會產生錯" +"誤的安全感,因為 ssl 模組的默認設定未必適合您的應用程序。" #: ../../includes/wasm-notavail.rst:3 msgid ":ref:`Availability `: not Emscripten, not WASI." @@ -74,6 +79,8 @@ msgid "" "more general information about TLS, SSL, and certificates, the reader is " "referred to the documents in the \"See Also\" section at the bottom." msgstr "" +"這個章節記錄了 ``ssl`` 模組的物件及函式;關於 TSL、SSL、以及憑證的更多資訊," +"可以去參考此章節底部的 \"詳情\" 部分。" #: ../../library/ssl.rst:42 msgid "" @@ -84,6 +91,11 @@ msgid "" "certificate of the other side of the connection, and :meth:`cipher`, which " "retrieves the cipher being used for the secure connection." msgstr "" +"此模組提供了一個類別,即 :class:`ssl.SSLSocket`。它是從 :class:`socket." +"socket` 衍生出來的,並且提供類似 socket 的封套資料,讓使用 SSL 進行資料傳輸" +"時,可以進行資料的加密集解密。它也提供了一些額外的語法,如 :meth:" +"`getpeercert` ,用於檢索另一端連結的證書,以及 :meth:`cipher` ,用於檢索用於" +"安全連接的加密算法。" #: ../../library/ssl.rst:49 msgid "" @@ -92,8 +104,8 @@ msgid "" "created through the :meth:`SSLContext.wrap_socket` method." msgstr "" "對於更複雜的應用程式,:class:`ssl.SSLContext` 類別有助於管理設定及認證,然後" -"可以透過 :meth:`SSLContext.wrap_socket` 方法建立的 SSL socket 繼承這些設定和" -"認證。" +"可以透過\\ :meth:`SSLContext.wrap_socket`\\ 方法建立的 SSL socket 繼承這些設" +"定和認證。" #: ../../library/ssl.rst:53 msgid "Updated to support linking with OpenSSL 1.1.0" @@ -124,7 +136,7 @@ msgstr "函式、常數與例外" #: ../../library/ssl.rst:75 msgid "Socket creation" -msgstr "Socket 的建立" +msgstr "Socket 建立" #: ../../library/ssl.rst:77 msgid "" @@ -132,6 +144,9 @@ msgid "" "wrap_socket` method. The helper function :func:`create_default_context` " "returns a new context with secure default settings." msgstr "" +":class:`SSLSocket` 實體必需要使用\\ :meth:`SSLContext.wrap_socket`\\ 方法來建" +"立。輔助函式\\ :func:`create_default_context` \\ 會回傳有安全默認設定的新內" +"容。" #: ../../library/ssl.rst:82 msgid "Client socket example with default context and IPv4/IPv6 dual stack::" From 1f547301025a0bae57c37fc224ed4c6b8030bfab Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:55:30 +0800 Subject: [PATCH 02/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index 0d23acd690..a67aa0ddec 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -20,7 +20,7 @@ msgstr "" #: ../../library/ssl.rst:2 msgid ":mod:`ssl` --- TLS/SSL wrapper for socket objects" -msgstr ":mod:`ssl` --- socket 物件的 TLS/SSL 封套資料" +msgstr ":mod:`ssl` --- socket 物件的 TLS/SSL 包裝器" #: ../../library/ssl.rst:10 msgid "**Source code:** :source:`Lib/ssl.py`" From 2c4e218bbdc7c5c0e5dcc4716fe0ab0ab31da59f Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:55:41 +0800 Subject: [PATCH 03/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index a67aa0ddec..d55b8f9d06 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -47,7 +47,7 @@ msgid "" "cause variations in behavior. For example, TLSv1.3 with OpenSSL version " "1.1.1." msgstr "" -"由於調用了作業系統的 socket APIs,有些行為會根據平台而有所不同。OpenSSL的安裝" +"由於呼叫了作業系統的 socket APIs,有些行為會根據平台而有所不同。OpenSSL 的安裝" "版本也會對模組的運作產生影響。例如,使用 OpenSSL 版本 1.1.1 的情況下可能涉及" "到 TLSv1.3。" From 06570814f9e8ee55d3819da97538c61e309170e9 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:56:02 +0800 Subject: [PATCH 04/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/ssl.po b/library/ssl.po index d55b8f9d06..bbdc6a3af5 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -48,8 +48,7 @@ msgid "" "1.1.1." msgstr "" "由於呼叫了作業系統的 socket APIs,有些行為會根據平台而有所不同。OpenSSL 的安裝" -"版本也會對模組的運作產生影響。例如,使用 OpenSSL 版本 1.1.1 的情況下可能涉及" -"到 TLSv1.3。" +"版本也會對模組的運作產生影響。例如,於 OpenSSL 版本 1.1.1 使用 TLSv1.3。" #: ../../library/ssl.rst:32 msgid "" From fd4472cb1a2991d3d062ccc2bf17c41389a44eab Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:56:38 +0800 Subject: [PATCH 05/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index bbdc6a3af5..d42dc20cf8 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -79,7 +79,7 @@ msgid "" "referred to the documents in the \"See Also\" section at the bottom." msgstr "" "這個章節記錄了 ``ssl`` 模組的物件及函式;關於 TSL、SSL、以及憑證的更多資訊," -"可以去參考此章節底部的 \"詳情\" 部分。" +"可以去參考此章節底部的「詳情」部分。" #: ../../library/ssl.rst:42 msgid "" From 01331fd0675da85ae3fb34db2adf8797421b71f5 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:56:49 +0800 Subject: [PATCH 06/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index d42dc20cf8..0d499f5a4d 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -92,7 +92,7 @@ msgid "" msgstr "" "此模組提供了一個類別,即 :class:`ssl.SSLSocket`。它是從 :class:`socket." "socket` 衍生出來的,並且提供類似 socket 的封套資料,讓使用 SSL 進行資料傳輸" -"時,可以進行資料的加密集解密。它也提供了一些額外的語法,如 :meth:" +"時,可以進行資料的加密及解密。它也提供了一些額外的方法,如 :meth:" "`getpeercert` ,用於檢索另一端連結的證書,以及 :meth:`cipher` ,用於檢索用於" "安全連接的加密算法。" From 7cc7f836fd02cc75ac7a1d139d645d502e594c90 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:57:28 +0800 Subject: [PATCH 07/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index 0d499f5a4d..5712107684 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -93,7 +93,7 @@ msgstr "" "此模組提供了一個類別,即 :class:`ssl.SSLSocket`。它是從 :class:`socket." "socket` 衍生出來的,並且提供類似 socket 的封套資料,讓使用 SSL 進行資料傳輸" "時,可以進行資料的加密及解密。它也提供了一些額外的方法,如 :meth:" -"`getpeercert` ,用於檢索另一端連結的證書,以及 :meth:`cipher` ,用於檢索用於" +"`getpeercert`,用於取得連結另一端的憑證,以及 :meth:`cipher`,用於檢索用於" "安全連接的加密算法。" #: ../../library/ssl.rst:49 From 26d77bd1c30fe11bf67537cfd107339afd185f61 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:57:45 +0800 Subject: [PATCH 08/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index 5712107684..1092186f6b 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -144,7 +144,7 @@ msgid "" "returns a new context with secure default settings." msgstr "" ":class:`SSLSocket` 實體必需要使用\\ :meth:`SSLContext.wrap_socket`\\ 方法來建" -"立。輔助函式\\ :func:`create_default_context` \\ 會回傳有安全默認設定的新內" +"立。輔助函式 :func:`create_default_context` 會回傳有安全預設設定的新內" "容。" #: ../../library/ssl.rst:82 From b5dbe9094ba507abc062b506e5881625af66d25d Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 07:58:11 +0800 Subject: [PATCH 09/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index 1092186f6b..4ae1515d79 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -143,7 +143,7 @@ msgid "" "wrap_socket` method. The helper function :func:`create_default_context` " "returns a new context with secure default settings." msgstr "" -":class:`SSLSocket` 實體必需要使用\\ :meth:`SSLContext.wrap_socket`\\ 方法來建" +":class:`SSLSocket` 實例必須使用 :meth:`SSLContext.wrap_socket` 方法來建" "立。輔助函式 :func:`create_default_context` 會回傳有安全預設設定的新內" "容。" From ccaf887bbbf585b0f6fb2f7c745849038e4efb48 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 08:10:28 +0800 Subject: [PATCH 10/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/ssl.po b/library/ssl.po index 4ae1515d79..f882d38826 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -56,8 +56,8 @@ msgid "" "lead to a false sense of security, as the default settings of the ssl module " "are not necessarily appropriate for your application." msgstr "" -"在使用此模組之前,請閱讀\\ :ref:`ssl-security`\\ 。如果不這樣做,可能會產生錯" -"誤的安全感,因為 ssl 模組的默認設定未必適合您的應用程序。" +"在使用此模組之前,請閱讀 :ref:`ssl-security`。如果不這樣做,可能會產生錯" +"誤的安全性認知,因為 ssl 模組的預設設定未必適合你的應用程式。" #: ../../includes/wasm-notavail.rst:3 msgid ":ref:`Availability `: not Emscripten, not WASI." From a5e635a19a03511aff9348914160631241750b27 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 08:10:55 +0800 Subject: [PATCH 11/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index f882d38826..b25491b60a 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -90,7 +90,7 @@ msgid "" "certificate of the other side of the connection, and :meth:`cipher`, which " "retrieves the cipher being used for the secure connection." msgstr "" -"此模組提供了一個類別,即 :class:`ssl.SSLSocket`。它是從 :class:`socket." +"此模組提供了一個 :class:`ssl.SSLSocket` 類別,它是從 :class:`socket." "socket` 衍生出來的,並且提供類似 socket 的封套資料,讓使用 SSL 進行資料傳輸" "時,可以進行資料的加密及解密。它也提供了一些額外的方法,如 :meth:" "`getpeercert`,用於取得連結另一端的憑證,以及 :meth:`cipher`,用於檢索用於" From 7f071367c3261e45a5e4d0d732196e90a08029ee Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 08:11:08 +0800 Subject: [PATCH 12/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index b25491b60a..c9c2b68e96 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -91,7 +91,7 @@ msgid "" "retrieves the cipher being used for the secure connection." msgstr "" "此模組提供了一個 :class:`ssl.SSLSocket` 類別,它是從 :class:`socket." -"socket` 衍生出來的,並且提供類似 socket 的封套資料,讓使用 SSL 進行資料傳輸" +"socket` 衍生出來的,並且提供類似 socket 的包裝器,讓使用 SSL 進行資料傳輸" "時,可以進行資料的加密及解密。它也提供了一些額外的方法,如 :meth:" "`getpeercert`,用於取得連結另一端的憑證,以及 :meth:`cipher`,用於檢索用於" "安全連接的加密算法。" From fc58cb4a77fd053538bd74ec8c79c8499e65adda Mon Sep 17 00:00:00 2001 From: timmy Date: Thu, 21 Dec 2023 08:24:51 +0800 Subject: [PATCH 13/16] Update SSL --- library/ssl.po | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/library/ssl.po b/library/ssl.po index c9c2b68e96..d133b21486 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-07-29 00:03+0000\n" -"PO-Revision-Date: 2023-12-20 09:54+0800\n" +"PO-Revision-Date: 2023-12-21 08:24+0800\n" "Last-Translator: Adrian Liaw \n" "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" "tw)\n" @@ -47,8 +47,8 @@ msgid "" "cause variations in behavior. For example, TLSv1.3 with OpenSSL version " "1.1.1." msgstr "" -"由於呼叫了作業系統的 socket APIs,有些行為會根據平台而有所不同。OpenSSL 的安裝" -"版本也會對模組的運作產生影響。例如,於 OpenSSL 版本 1.1.1 使用 TLSv1.3。" +"由於呼叫了作業系統的 socket APIs,有些行為會根據平台而有所不同。OpenSSL 的安" +"裝版本也會對模組的運作產生影響。例如,於 OpenSSL 版本 1.1.1 使用 TLSv1.3。" #: ../../library/ssl.rst:32 msgid "" @@ -56,8 +56,8 @@ msgid "" "lead to a false sense of security, as the default settings of the ssl module " "are not necessarily appropriate for your application." msgstr "" -"在使用此模組之前,請閱讀 :ref:`ssl-security`。如果不這樣做,可能會產生錯" -"誤的安全性認知,因為 ssl 模組的預設設定未必適合你的應用程式。" +"在使用此模組之前,請閱讀 :ref:`ssl-security`。如果不這樣做,可能會產生錯誤的" +"安全性認知,因為 ssl 模組的預設設定未必適合你的應用程式。" #: ../../includes/wasm-notavail.rst:3 msgid ":ref:`Availability `: not Emscripten, not WASI." @@ -90,11 +90,10 @@ msgid "" "certificate of the other side of the connection, and :meth:`cipher`, which " "retrieves the cipher being used for the secure connection." msgstr "" -"此模組提供了一個 :class:`ssl.SSLSocket` 類別,它是從 :class:`socket." -"socket` 衍生出來的,並且提供類似 socket 的包裝器,讓使用 SSL 進行資料傳輸" -"時,可以進行資料的加密及解密。它也提供了一些額外的方法,如 :meth:" -"`getpeercert`,用於取得連結另一端的憑證,以及 :meth:`cipher`,用於檢索用於" -"安全連接的加密算法。" +"此模組提供了一個 :class:`ssl.SSLSocket` 類別,它是從 :class:`socket.socket` " +"衍生出來的,並且提供類似 socket 的包裝器,讓使用 SSL 進行資料傳輸時,可以進行" +"資料的加密及解密。它也提供了一些額外的方法,如 :meth:`getpeercert`,用於取得" +"連結另一端的憑證,以及 :meth:`cipher`,用於搜尋用於安全連接的加密。" #: ../../library/ssl.rst:49 msgid "" @@ -143,9 +142,8 @@ msgid "" "wrap_socket` method. The helper function :func:`create_default_context` " "returns a new context with secure default settings." msgstr "" -":class:`SSLSocket` 實例必須使用 :meth:`SSLContext.wrap_socket` 方法來建" -"立。輔助函式 :func:`create_default_context` 會回傳有安全預設設定的新內" -"容。" +":class:`SSLSocket` 實例必須使用 :meth:`SSLContext.wrap_socket` 方法來建立。輔" +"助函式 :func:`create_default_context` 會回傳有安全預設設定的新內容。" #: ../../library/ssl.rst:82 msgid "Client socket example with default context and IPv4/IPv6 dual stack::" From 8bfc4a7913f7deff43d1016cd4e351414426e9c8 Mon Sep 17 00:00:00 2001 From: timmy Date: Thu, 21 Dec 2023 08:35:10 +0800 Subject: [PATCH 14/16] Update SSL --- library/ssl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/ssl.po b/library/ssl.po index d133b21486..42a8a0c4c4 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: Python 3.12\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-07-29 00:03+0000\n" -"PO-Revision-Date: 2023-12-21 08:24+0800\n" +"PO-Revision-Date: 2023-12-21 08:33+0800\n" "Last-Translator: Adrian Liaw \n" "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" "tw)\n" @@ -93,7 +93,7 @@ msgstr "" "此模組提供了一個 :class:`ssl.SSLSocket` 類別,它是從 :class:`socket.socket` " "衍生出來的,並且提供類似 socket 的包裝器,讓使用 SSL 進行資料傳輸時,可以進行" "資料的加密及解密。它也提供了一些額外的方法,如 :meth:`getpeercert`,用於取得" -"連結另一端的憑證,以及 :meth:`cipher`,用於搜尋用於安全連接的加密。" +"連結另一端的憑證,以及 :meth:`cipher`,用於搜尋用於安全連接的密碼。" #: ../../library/ssl.rst:49 msgid "" From c15553332ae00b4e190d3020a5e2b6d62e61aca4 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 10:49:34 +0800 Subject: [PATCH 15/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index 42a8a0c4c4..59898b02e1 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -102,7 +102,7 @@ msgid "" "created through the :meth:`SSLContext.wrap_socket` method." msgstr "" "對於更複雜的應用程式,:class:`ssl.SSLContext` 類別有助於管理設定及認證,然後" -"可以透過\\ :meth:`SSLContext.wrap_socket`\\ 方法建立的 SSL socket 繼承這些設" +"可以透過 :meth:`SSLContext.wrap_socket` 方法建立的 SSL socket 繼承這些設" "定和認證。" #: ../../library/ssl.rst:53 From fb8b6b1a294479af4a1fdc2c8b7b4a6ded7ecbf0 Mon Sep 17 00:00:00 2001 From: timmy0123 <48618505+timmy0123@users.noreply.github.com> Date: Thu, 21 Dec 2023 10:49:43 +0800 Subject: [PATCH 16/16] Update library/ssl.po Co-authored-by: Wei-Hsiang (Matt) Wang --- library/ssl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ssl.po b/library/ssl.po index 59898b02e1..8e79b9969d 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -93,7 +93,7 @@ msgstr "" "此模組提供了一個 :class:`ssl.SSLSocket` 類別,它是從 :class:`socket.socket` " "衍生出來的,並且提供類似 socket 的包裝器,讓使用 SSL 進行資料傳輸時,可以進行" "資料的加密及解密。它也提供了一些額外的方法,如 :meth:`getpeercert`,用於取得" -"連結另一端的憑證,以及 :meth:`cipher`,用於搜尋用於安全連接的密碼。" +"連結另一端的憑證,以及 :meth:`cipher`,用於搜尋用於安全連接的密碼 (cipher)。" #: ../../library/ssl.rst:49 msgid ""