@@ -8,7 +8,7 @@ msgstr ""
88"Project-Id-Version :Python 3.12\n "
99"Report-Msgid-Bugs-To :\n "
1010"POT-Creation-Date :2023-09-09 00:03+0000\n "
11- "PO-Revision-Date :2024-01-17 01:09 +0800\n "
11+ "PO-Revision-Date :2024-01-20 23:25 +0800\n "
1212"Last-Translator :Liang-Bo Wang <me@liang2.tw>\n "
1313"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
1414"tw)\n "
@@ -206,7 +206,7 @@ msgid ""
206206"it is not possible to track nested calls where the parameters used to create "
207207"ancestors are important:"
208208msgstr ""
209- "然而,回傳 mock 的呼叫的參數不會被記錄,這代表著無法追蹤用於建立重要的祖先的 "
209+ "然而,回傳 mock 的呼叫的參數不會被記錄,這代表著無法追蹤用於建立重要的上代的 "
210210"參數的巢狀呼叫:"
211211
212212#: ../../library/unittest.mock-examples.rst:181
@@ -482,8 +482,8 @@ msgid ""
482482"decorators are applied). This means from the bottom up, so in the example "
483483"above the mock for ``test_module.ClassName2`` is passed in first."
484484msgstr ""
485- "當你嵌套 patch 裝飾器時,mock 會以被應用的順序傳遞到裝飾函數(裝飾器應用的正 "
486- "常 *Python* 順序)。這意味著由下而上,因此在上面的範例中,\\ ``module."
485+ "當你巢狀使用 patch 裝飾器時,mock 會以被應用的順序傳遞到裝飾函數(裝飾器應用 "
486+ "的正常 *Python* 順序)。這意味著由下而上,因此在上面的範例中,\\ ``module."
487487"ClassName2`` 的 mock 會先被傳入。"
488488
489489#: ../../library/unittest.mock-examples.rst:487