Skip to content

Commit 8d66b82

Browse files
[po] auto sync
1 parent 7b8e4ce commit 8d66b82

File tree

8 files changed

+226
-243
lines changed

8 files changed

+226
-243
lines changed

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "89.62%", "updated_at": "2023-08-04T17:31:43Z"}
1+
{"translation": "89.63%", "updated_at": "2023-08-05T00:35:08Z"}

c-api/init.po

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.10\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-29 03:05+0000\n"
15+
"POT-Creation-Date: 2023-08-04 15:17+0000\n"
1616
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1818
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -313,6 +313,8 @@ msgid ""
313313
"handler, instead of the UTF-8 encoding with ``surrogatepass`` error handler,"
314314
" for the :term:`filesystem encoding and error handler`."
315315
msgstr ""
316+
"如果该旗标为非零值,则使用 ``mbcs`` 编码和``replace`` 错误处理句柄,而不是 UTF-8 编码和 ``surrogatepass``"
317+
" 错误处理句柄作用 :term:`filesystem encoding and error handler`。"
316318

317319
#: ../../c-api/init.rst:158
318320
msgid ""

c-api/sys.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
#
66
# Translators:
77
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
8-
# Freesand Leo <yuqinju@163.com>, 2023
98
# Alpha Du <alphanow@gmail.com>, 2023
9+
# Freesand Leo <yuqinju@163.com>, 2023
1010
#
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.10\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-07-29 03:05+0000\n"
16+
"POT-Creation-Date: 2023-08-04 15:17+0000\n"
1717
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
18-
"Last-Translator: Alpha Du <alphanow@gmail.com>, 2023\n"
18+
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2023\n"
1919
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2020
"MIME-Version: 1.0\n"
2121
"Content-Type: text/plain; charset=UTF-8\n"

library/collections.po

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-07-29 03:05+0000\n"
14+
"POT-Creation-Date: 2023-08-04 15:17+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -27,7 +27,7 @@ msgstr ":mod:`collections` --- 容器数据类型"
2727

2828
#: ../../library/collections.rst:10
2929
msgid "**Source code:** :source:`Lib/collections/__init__.py`"
30-
msgstr "**Source code:** :source:`Lib/collections/__init__.py`"
30+
msgstr "**源代码:** :source:`Lib/collections/__init__.py`"
3131

3232
#: ../../library/collections.rst:20
3333
msgid ""
@@ -44,47 +44,47 @@ msgstr ":func:`namedtuple`"
4444

4545
#: ../../library/collections.rst:25
4646
msgid "factory function for creating tuple subclasses with named fields"
47-
msgstr "创建命名元组子类的工厂函数"
47+
msgstr "一个工厂函数,用来创建元组的子类,子类的字段是有名称的。"
4848

4949
#: ../../library/collections.rst:26
5050
msgid ":class:`deque`"
5151
msgstr ":class:`deque`"
5252

5353
#: ../../library/collections.rst:26
5454
msgid "list-like container with fast appends and pops on either end"
55-
msgstr "类似列表(list)的容器,实现了在两端快速添加(append)和弹出(pop)"
55+
msgstr "类似列表的容器,但 appendpop 在其两端的速度都很快。"
5656

5757
#: ../../library/collections.rst:27
5858
msgid ":class:`ChainMap`"
5959
msgstr ":class:`ChainMap`"
6060

6161
#: ../../library/collections.rst:27
6262
msgid "dict-like class for creating a single view of multiple mappings"
63-
msgstr "类似字典(dict)的容器类,将多个映射集合到一个视图里面"
63+
msgstr "类似字典的类,用于创建包含多个映射的单个视图。"
6464

6565
#: ../../library/collections.rst:28
6666
msgid ":class:`Counter`"
6767
msgstr ":class:`Counter`"
6868

6969
#: ../../library/collections.rst:28
7070
msgid "dict subclass for counting :term:`hashable` objects"
71-
msgstr "用于对 :term:`hashable` 对象计数的字典子类"
71+
msgstr "用于计数 :term:`hashable` 对象的字典子类"
7272

7373
#: ../../library/collections.rst:29
7474
msgid ":class:`OrderedDict`"
7575
msgstr ":class:`OrderedDict`"
7676

7777
#: ../../library/collections.rst:29
7878
msgid "dict subclass that remembers the order entries were added"
79-
msgstr "字典的子类,保存了他们被添加的顺序"
79+
msgstr "字典的子类,能记住条目被添加进去的顺序。"
8080

8181
#: ../../library/collections.rst:30
8282
msgid ":class:`defaultdict`"
8383
msgstr ":class:`defaultdict`"
8484

8585
#: ../../library/collections.rst:30
8686
msgid "dict subclass that calls a factory function to supply missing values"
87-
msgstr "字典的子类,提供了一个工厂函数,为字典查询提供一个默认值"
87+
msgstr "字典的子类,通过调用用户指定的工厂函数,为键提供默认值。"
8888

8989
#: ../../library/collections.rst:31
9090
msgid ":class:`UserDict`"
@@ -121,13 +121,13 @@ msgid ""
121121
"than creating a new dictionary and running multiple :meth:`~dict.update` "
122122
"calls."
123123
msgstr ""
124-
"一个 :class:`ChainMap` 类是为了将多个映射快速的链接到一起,这样它们就可以作为一个单元处理。它通常比创建一个新字典和多次调用 "
125-
":meth:`~dict.update` 要快很多。"
124+
":class:`ChainMap` 类将多个映射迅速地链到一起,这样它们就可以作为一个单元处理。这通常比创建一个新字典再重复地使用 "
125+
":meth:`~dict.update` 要快得多。"
126126

127127
#: ../../library/collections.rst:46
128128
msgid ""
129129
"The class can be used to simulate nested scopes and is useful in templating."
130-
msgstr "这个类可以用于模拟嵌套作用域,并且在模版化的时候比较有用。"
130+
msgstr "这个类可以用于模拟嵌套作用域,并且对模版化有用。"
131131

132132
#: ../../library/collections.rst:50
133133
msgid ""
@@ -136,8 +136,8 @@ msgid ""
136136
"empty dictionary is provided so that a new chain always has at least one "
137137
"mapping."
138138
msgstr ""
139-
"一个 :class:`ChainMap` 将多个字典或者其他映射组合在一起,创建一个单独的可更新的视图。 如果没有 *maps* "
140-
"被指定,就提供一个默认的空字典,这样一个新链至少有一个映射。"
139+
"一个 :class:`ChainMap` 将多个字典或者其他映射组合在一起,创建一个单独的可更新的视图。 如果没有指定任何 "
140+
"*maps*,一个空字典会被作为 *maps*。这样,每个新链至少包含一个映射。"
141141

142142
#: ../../library/collections.rst:54
143143
msgid ""

0 commit comments

Comments
 (0)