Skip to content

Commit 35c6330

Browse files
committed
fix: resolve fuzzy entries
1 parent 1b60a6b commit 35c6330

28 files changed

+164
-339
lines changed

howto/descriptor.po

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ msgstr ""
1919
"Plural-Forms: nplurals=1; plural=0;\n"
2020

2121
#: ../../howto/descriptor.rst:5
22-
#, fuzzy
2322
msgid "Descriptor Guide"
24-
msgstr "描述器 HowTo 指南"
23+
msgstr "描述器 (Descriptor) 指南"
2524

2625
#: ../../howto/descriptor.rst:0
2726
msgid "Author"

howto/pyporting.po

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -84,33 +84,3 @@ msgid ""
8484
"`Guide by ActiveState <https://www.activestate.com/blog/how-to-migrate-"
8585
"python-2-applications-to-python-3>`_"
8686
msgstr ""
87-
88-
#~ msgid "Abstract"
89-
#~ msgstr "摘要"
90-
91-
#~ msgid "The Short Explanation"
92-
#~ msgstr "簡短的說明"
93-
94-
#~ msgid "Learn the differences between Python 2 and 3"
95-
#~ msgstr "瞭解 Python 2 & 3 的差異"
96-
97-
#~ msgid "Details"
98-
#~ msgstr "詳細的"
99-
100-
#~ msgid "Have good test coverage"
101-
#~ msgstr "有好的測試覆蓋率"
102-
103-
#~ msgid "Be aware of the differences between Python 2 and 3"
104-
#~ msgstr "注意 Python 2 & 3 的差異"
105-
106-
#~ msgid "Update your code"
107-
#~ msgstr "更新你的程式碼"
108-
109-
#~ msgid "\\"
110-
#~ msgstr "\\"
111-
112-
#~ msgid "isdecimal"
113-
#~ msgstr "isdecimal"
114-
115-
#~ msgid "isnumeric"
116-
#~ msgstr "isnumeric"

howto/sorting.po

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@ msgstr ""
2020
"Plural-Forms: nplurals=1; plural=0;\n"
2121

2222
#: ../../howto/sorting.rst:4
23-
#, fuzzy
2423
msgid "Sorting Techniques"
25-
msgstr "基礎排序"
24+
msgstr "排序技法"
2625

2726
#: ../../howto/sorting.rst:0
2827
msgid "Author"
@@ -127,21 +126,20 @@ msgid ""
127126
msgstr ""
128127

129128
#: ../../howto/sorting.rst:104
130-
#, fuzzy
131129
msgid "Operator Module Functions and Partial Function Evaluation"
132-
msgstr "Operator 模組的函式"
130+
msgstr ""
133131

134132
#: ../../howto/sorting.rst:106
135-
#, fuzzy
136133
msgid ""
137134
"The :term:`key function` patterns shown above are very common, so Python "
138135
"provides convenience functions to make accessor functions easier and faster. "
139136
"The :mod:`operator` module has :func:`~operator.itemgetter`, :func:"
140137
"`~operator.attrgetter`, and a :func:`~operator.methodcaller` function."
141138
msgstr ""
142-
"上述的鍵函式模式非常常見,所以 Python 提供了方便的函式讓物件存取更簡單且快"
143-
"速。:mod:`operator` 模組裡有 :func:`~operator.itemgetter`、:func:`~operator."
144-
"attrgetter` 及 :func:`~operator.methodcaller` 函式可以使用。"
139+
"上述的\\ :term:`鍵函式 <key function>`\\ 模式非常常見,所以 Python 提供了方便"
140+
"的函式讓物件存取更簡單且快速。:mod:`operator` 模組裡有 :func:`~operator."
141+
"itemgetter`、:func:`~operator.attrgetter` 及 :func:`~operator.methodcaller` "
142+
"函式可以使用。"
145143

146144
#: ../../howto/sorting.rst:111
147145
msgid "Using those functions, the above examples become simpler and faster:"

library/abc.po

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,18 +150,17 @@ msgstr ""
150150
"__subclasscheck__` 方法中呼叫。)"
151151

152152
#: ../../library/abc.rst:104
153-
#, fuzzy
154153
msgid ""
155154
"This method should return ``True``, ``False`` or :data:`NotImplemented`. If "
156155
"it returns ``True``, the *subclass* is considered a subclass of this ABC. If "
157156
"it returns ``False``, the *subclass* is not considered a subclass of this "
158157
"ABC, even if it would normally be one. If it returns :data:`!"
159158
"NotImplemented`, the subclass check is continued with the usual mechanism."
160159
msgstr ""
161-
"此方法必須回傳 ``True``、``False`` 或是 ``NotImplemented``。如果回傳 "
160+
"此方法必須回傳 ``True``、``False`` 或是 :data:`NotImplemented`。如果回傳 "
162161
"``True``,*subclass* 就會被認為是這個 ABC 的子類別。如果回傳 ``False``,"
163-
"*subclass* 就會被判定並非該 ABC 的子類別,即便正常情況應如此。如果回傳 "
164-
"``NotImplemented``,子類別檢查會按照正常機制繼續執行。"
162+
"*subclass* 就會被判定並非該 ABC 的子類別,即便正常情況應如此。如果回傳 :data:"
163+
"`!NotImplemented`,子類別檢查會按照正常機制繼續執行。"
165164

166165
#: ../../library/abc.rst:114
167166
msgid ""

library/ast.po

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1304,10 +1304,9 @@ msgid ""
13041304
msgstr ""
13051305

13061306
#: ../../library/ast.rst:2191
1307-
#, fuzzy
13081307
msgid ""
13091308
"If source contains a null character (``\\0``), :exc:`ValueError` is raised."
1310-
msgstr "如果來源包含 null 字元 ('\\0'),則會引發 :exc:`ValueError`。"
1309+
msgstr "如果來源包含 null 字元 (``\\0``),則會引發 :exc:`ValueError`。"
13111310

13121311
#: ../../library/ast.rst:2194
13131312
msgid ""

library/audit_events.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ msgid "Audit events table"
2323
msgstr "稽核事件表"
2424

2525
#: ../../library/audit_events.rst:8
26-
#, fuzzy
2726
msgid ""
2827
"This table contains all events raised by :func:`sys.audit` or :c:func:"
2928
"`PySys_Audit` calls throughout the CPython runtime and the standard "
3029
"library. These calls were added in 3.8 or later (see :pep:`578`)."
3130
msgstr ""
3231
"這張表包含了所有在 CPython 運行環境 (runtime) 與標準函式庫對於 :func:`sys."
33-
"audit` 或 :c:func:`PySys_Audit` 的呼叫所觸發的事件。這些呼叫是在 3.8.0 或更新"
34-
"的版本中被新增(請見 :pep:`578`\\ )。"
32+
"audit` 或 :c:func:`PySys_Audit` 的呼叫所觸發的事件。這些呼叫是在 3.8 或更新的"
33+
"版本中被新增(請見 :pep:`578`\\ )。"
3534

3635
#: ../../library/audit_events.rst:12
3736
msgid ""

library/datetime.po

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2049,12 +2049,8 @@ msgid ""
20492049
msgstr ""
20502050

20512051
#: ../../library/datetime.rst:1794
2052-
#, fuzzy
20532052
msgid "Examples:"
2054-
msgstr ""
2055-
"範例:\n"
2056-
"\n"
2057-
"::"
2053+
msgstr "範例: ::"
20582054

20592055
#: ../../library/datetime.rst:1818
20602056
msgid ""

library/itertools.po

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,12 @@ msgstr ":func:`dropwhile`"
210210

211211
#: ../../library/itertools.rst:59 ../../library/itertools.rst:60
212212
#: ../../library/itertools.rst:65
213-
#, fuzzy
214213
msgid "predicate, seq"
215-
msgstr "pred, seq"
214+
msgstr "predicate, seq"
216215

217216
#: ../../library/itertools.rst:59
218-
#, fuzzy
219217
msgid "seq[n], seq[n+1], starting when predicate fails"
220-
msgstr "seq[0], seq[1], until pred fails"
218+
msgstr ""
221219

222220
#: ../../library/itertools.rst:59
223221
msgid "``dropwhile(lambda x: x<5, [1,4,6,4,1]) --> 6 4 1``"
@@ -296,9 +294,8 @@ msgid ":func:`takewhile`"
296294
msgstr ":func:`takewhile`"
297295

298296
#: ../../library/itertools.rst:65
299-
#, fuzzy
300297
msgid "seq[0], seq[1], until predicate fails"
301-
msgstr "seq[0], seq[1], until pred fails"
298+
msgstr ""
302299

303300
#: ../../library/itertools.rst:65
304301
msgid "``takewhile(lambda x: x<5, [1,4,6,4,1]) --> 1 4``"

library/multiprocessing.po

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -479,9 +479,8 @@ msgid ""
479479
msgstr ""
480480

481481
#: ../../library/multiprocessing.rst:521
482-
#, fuzzy
483482
msgid "Added the *daemon* parameter."
484-
msgstr "新增 *daemon* 引數。"
483+
msgstr "新增 *daemon* 參數。"
485484

486485
#: ../../library/multiprocessing.rst:526
487486
msgid "Method representing the process's activity."
@@ -2465,14 +2464,12 @@ msgid ""
24652464
msgstr ""
24662465

24672466
#: ../../library/multiprocessing.rst:2245
2468-
#, fuzzy
24692467
msgid "Added the *maxtasksperchild* parameter."
2470-
msgstr "新增 *shutdown_timeout* 參數。"
2468+
msgstr "新增 *maxtasksperchild* 參數。"
24712469

24722470
#: ../../library/multiprocessing.rst:2248
2473-
#, fuzzy
24742471
msgid "Added the *context* parameter."
2475-
msgstr "新增 *shutdown_timeout* 參數。"
2472+
msgstr "新增 *context* 參數。"
24762473

24772474
#: ../../library/multiprocessing.rst:2253
24782475
msgid ""

library/numbers.po

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,6 @@ msgstr ""
208208
"如果 ``A`` 有定義成一個接受 ``b`` 的 :meth:`~object.__add__`,不會發生問題。"
209209

210210
#: ../../library/numbers.rst:166
211-
#, fuzzy
212211
msgid ""
213212
"If ``A`` falls back to the boilerplate code, and it were to return a value "
214213
"from :meth:`~object.__add__`, we'd miss the possibility that ``B`` defines a "
@@ -218,7 +217,7 @@ msgid ""
218217
msgstr ""
219218
"如果 ``A`` 回退成模板程式碼,它將回傳一個來自 :meth:`~object.__add__` 的值,"
220219
"並喪失讓 ``B`` 定義一個更完善的 :meth:`~object.__radd__` 的機會,因此模板需要"
221-
"回傳一個來自 :meth:`!__add__` 的 :const:`NotImplemented`。(或者 ``A`` 可能完"
220+
"回傳一個來自 :meth:`!__add__` 的 :data:`NotImplemented`。(或者 ``A`` 可能完"
222221
"全不實作 :meth:`!__add__`。)"
223222

224223
#: ../../library/numbers.rst:172

library/pyexpat.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2022, Python Software Foundation
1+
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
43
#
54
# Translators:
@@ -58,7 +57,7 @@ msgstr ""
5857

5958
#: ../../library/pyexpat.rst:52
6059
msgid "Alias for :exc:`ExpatError`."
61-
msgstr ""
60+
msgstr ":exc:`ExpatError` 的別名。"
6261

6362
#: ../../library/pyexpat.rst:57
6463
msgid "The type of the return values from the :func:`ParserCreate` function."

library/random.po

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,12 +513,11 @@ msgstr ""
513513
"a`` 時確保 N 為 ``b <= N <= a``。"
514514

515515
#: ../../library/random.rst:303
516-
#, fuzzy
517516
msgid ""
518517
"The end-point value ``b`` may or may not be included in the range depending "
519518
"on floating-point rounding in the expression ``a + (b-a) * random()``."
520519
msgstr ""
521-
"終點值 ``b`` 可能包含在範圍內,也可能不包含在範圍內,取決於方程式 ``a + (b-"
520+
"終點值 ``b`` 可能包含在範圍內,也可能不包含在範圍內,取決於運算式 ``a + (b-"
522521
"a) * random()`` 中的浮點捨入。"
523522

524523
#: ../../library/random.rst:310

library/socket.po

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2022, Python Software Foundation
1+
# Copyright (C) 2001-2024, Python Software Foundation
32
# This file is distributed under the same license as the Python package.
43
#
54
# Translators:

library/ssl.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -967,13 +967,12 @@ msgstr ""
967967
"Python 編譯舊版的 OpenSSL 時,該標志預設為 *0*。"
968968

969969
#: ../../library/ssl.rst:740
970-
#, fuzzy
971970
msgid ""
972971
"The option is deprecated since OpenSSL 1.1.0. It was added to 2.7.15 and "
973972
"3.6.3 for backwards compatibility with OpenSSL 1.0.2."
974973
msgstr ""
975-
"此選項自 OpenSSL 1.1.0 以後已被棄用。它被添加到 2.7.15、3.6.3 和 3.7.0 中,"
976-
"向後相容 OpenSSL 1.0.2。"
974+
"此選項自 OpenSSL 1.1.0 以後已被棄用。它被添加到 2.7.15 和 3.6.3 中,以向後相"
975+
" OpenSSL 1.0.2。"
977976

978977
#: ../../library/ssl.rst:746
979978
msgid ""

library/unittest.mock.po

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2175,64 +2175,60 @@ msgid "Methods and their defaults:"
21752175
msgstr "方法及其預設值:"
21762176

21772177
#: ../../library/unittest.mock.rst:2097
2178-
#, fuzzy
21792178
msgid "``__lt__``: :data:`NotImplemented`"
2180-
msgstr "``__lt__``\\\\ ``NotImplemented``"
2179+
msgstr "``__lt__``::data:`NotImplemented`"
21812180

21822181
#: ../../library/unittest.mock.rst:2098
2183-
#, fuzzy
21842182
msgid "``__gt__``: :data:`!NotImplemented`"
2185-
msgstr "``__gt__``\\\\ ``NotImplemented``"
2183+
msgstr "``__gt__``::data:`!NotImplemented`"
21862184

21872185
#: ../../library/unittest.mock.rst:2099
2188-
#, fuzzy
21892186
msgid "``__le__``: :data:`!NotImplemented`"
2190-
msgstr "``__le__``\\\\ ``NotImplemented``"
2187+
msgstr "``__le__``::data:`!NotImplemented`"
21912188

21922189
#: ../../library/unittest.mock.rst:2100
2193-
#, fuzzy
21942190
msgid "``__ge__``: :data:`!NotImplemented`"
2195-
msgstr "``__ge__``\\\\ ``NotImplemented``"
2191+
msgstr "``__ge__``::data:`!NotImplemented`"
21962192

21972193
#: ../../library/unittest.mock.rst:2101
21982194
msgid "``__int__``: ``1``"
2199-
msgstr "``__int__``\\\\ ``1``"
2195+
msgstr "``__int__````1``"
22002196

22012197
#: ../../library/unittest.mock.rst:2102
22022198
msgid "``__contains__``: ``False``"
2203-
msgstr "``__contains__``\\\\ ``False``"
2199+
msgstr "``__contains__````False``"
22042200

22052201
#: ../../library/unittest.mock.rst:2103
22062202
msgid "``__len__``: ``0``"
2207-
msgstr "``__len__``\\\\ ``0``"
2203+
msgstr "``__len__````0``"
22082204

22092205
#: ../../library/unittest.mock.rst:2104
22102206
msgid "``__iter__``: ``iter([])``"
2211-
msgstr "``__iter__``\\\\ ``iter([])``"
2207+
msgstr "``__iter__````iter([])``"
22122208

22132209
#: ../../library/unittest.mock.rst:2105
22142210
msgid "``__exit__``: ``False``"
2215-
msgstr "``__exit__``\\\\ ``False``"
2211+
msgstr "``__exit__````False``"
22162212

22172213
#: ../../library/unittest.mock.rst:2106
22182214
msgid "``__aexit__``: ``False``"
2219-
msgstr "``__aexit__``\\\\ ``False``"
2215+
msgstr "``__aexit__````False``"
22202216

22212217
#: ../../library/unittest.mock.rst:2107
22222218
msgid "``__complex__``: ``1j``"
2223-
msgstr "``__complex__``\\\\ ``1j``"
2219+
msgstr "``__complex__````1j``"
22242220

22252221
#: ../../library/unittest.mock.rst:2108
22262222
msgid "``__float__``: ``1.0``"
2227-
msgstr "``__float__``\\\\ ``1.0``"
2223+
msgstr "``__float__````1.0``"
22282224

22292225
#: ../../library/unittest.mock.rst:2109
22302226
msgid "``__bool__``: ``True``"
2231-
msgstr "``__bool__``\\\\ ``True``"
2227+
msgstr "``__bool__````True``"
22322228

22332229
#: ../../library/unittest.mock.rst:2110
22342230
msgid "``__index__``: ``1``"
2235-
msgstr "``__index__``\\\\ ``1``"
2231+
msgstr "``__index__````1``"
22362232

22372233
#: ../../library/unittest.mock.rst:2111
22382234
msgid "``__hash__``: default hash for the mock"

0 commit comments

Comments
 (0)