11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2021 , Python Software Foundation
2+ # Copyright (C) 2001-2023 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
77# Shengjing Zhu <[email protected] >, 20208- # Arisaka97 <[email protected] >, 202098# Alpha Du <[email protected] >, 20201091110# ppcfish <[email protected] >, 202012- # 1lin24 <[email protected] >, 20201311# Freesand Leo <[email protected] >, 202212+ # Rafael Fontenelle <[email protected] >, 20231413#
1514#, fuzzy
1615msgid ""
1716msgstr ""
1817"Project-Id-Version : Python 3.8\n "
1918"Report-Msgid-Bugs-To : \n "
20- "POT-Creation-Date : 2021-04-26 17:13 +0000\n "
19+ "POT-Creation-Date : 2023-08-18 16:12 +0000\n "
2120"PO-Revision-Date : 2020-05-30 11:56+0000\n "
22- "Last-Translator : Freesand Leo <yuqinju@163 .com>, 2022 \n "
23- "Language-Team : Chinese (China) (https://www .transifex.com/python-doc/teams/5390/zh_CN/)\n "
21+ "Last-Translator : Rafael Fontenelle <rffontenelle@gmail .com>, 2023 \n "
22+ "Language-Team : Chinese (China) (https://app .transifex.com/python-doc/teams/5390/zh_CN/)\n "
2423"MIME-Version : 1.0\n "
2524"Content-Type : text/plain; charset=UTF-8\n "
2625"Content-Transfer-Encoding : 8bit\n "
@@ -29,7 +28,7 @@ msgstr ""
2928
3029#: ../../library/array.rst:2
3130msgid ":mod:`array` --- Efficient arrays of numeric values"
32- msgstr ":mod:`array` --- 高效的数值数组 "
31+ msgstr ":mod:`array` --- 高效的数字数组 "
3332
3433#: ../../library/array.rst:11
3534msgid ""
@@ -40,9 +39,8 @@ msgid ""
4039"creation time by using a :dfn:`type code`, which is a single character. The"
4140" following type codes are defined:"
4241msgstr ""
43- "此模块定义了一种对象类型,可以紧凑地表示基本类型值的数组:字符、整数、浮点数等。 "
44- "数组属于序列类型,其行为与列表非常相似,不同之处在于其中存储的对象类型是受限的。 类型在对象创建时使用单个字符的 :dfn:`类型码` 来指定。 "
45- "已定义的类型码如下:"
42+ "此模块定义了一种对象类型,可以紧凑地表示由基本值(字符、整数、浮点数)组成的数组。数组是序列类型,其行为与列表非常相似,不同之处在于其中存储的对象类型是受限的,在数组对象创建时用单个字符的"
43+ " :dfn:`类型码` 来指定。已定义的类型码如下:"
4644
4745#: ../../library/array.rst:19
4846msgid "Type code"
@@ -58,11 +56,11 @@ msgstr "Python 类型"
5856
5957#: ../../library/array.rst:19
6058msgid "Minimum size in bytes"
61- msgstr "以字节表示的最小尺寸 "
59+ msgstr "以字节为单位的最小大小 "
6260
6361#: ../../library/array.rst:19
6462msgid "Notes"
65- msgstr "注释 "
63+ msgstr "备注 "
6664
6765#: ../../library/array.rst:21
6866msgid "``'b'``"
@@ -207,7 +205,7 @@ msgstr "double"
207205
208206#: ../../library/array.rst:48
209207msgid "Notes:"
210- msgstr "注释: "
208+ msgstr "注释: "
211209
212210#: ../../library/array.rst:51
213211msgid ""
@@ -233,16 +231,16 @@ msgstr "值的实际表示会由机器的架构决定(严格地说是由 C 实
233231
234232#: ../../library/array.rst:64
235233msgid "The module defines the following type:"
236- msgstr "这个模块定义了以下类型 :"
234+ msgstr "此模块定义了以下类型 :"
237235
238236#: ../../library/array.rst:69
239237msgid ""
240238"A new array whose items are restricted by *typecode*, and initialized from "
241239"the optional *initializer* value, which must be a list, a :term:`bytes-like "
242240"object`, or iterable over elements of the appropriate type."
243241msgstr ""
244- "一个包含由 *typecode* 限制类型的条目的新数组,并由可选的 *initializer* "
245- "值进行初始化,该值必须为一个列表 、:term:`bytes-like object` 或包含正确类型元素的可迭代对象 。"
242+ "一个由 *typecode* 限制类型的新数组,并通过可选的 *initializer* 进行初始化。 *initializer* "
243+ "必须为一个列表 、:term:`bytes-like object` 或在合适类型元素上迭代的可迭代对象 。"
246244
247245#: ../../library/array.rst:74
248246msgid ""
@@ -251,21 +249,20 @@ msgid ""
251249"below) to add initial items to the array. Otherwise, the iterable "
252250"initializer is passed to the :meth:`extend` method."
253251msgstr ""
254- "如果给定一个列表或字符串,该 initializer 会被传给新数组的 :meth:`fromlist`, :meth:`frombytes` 或 "
255- ":meth:`fromunicode` 方法(见下文)以将初始条目添加到数组中。 否则会将可迭代对象作为 initializer 传给 "
256- ":meth:`extend` 方法。"
252+ "如果是一个列表或字符串,该 initializer 会被传给新数组的 :meth:`fromlist`,:meth:`frombytes` 或 "
253+ ":meth:`fromunicode` 方法(见下)以将初始项添加到数组中。其它将可迭代对象将被传给 :meth:`extend` 方法。"
257254
258255#: ../../library/array.rst:79
259256msgid ""
260257"Raises an :ref:`auditing event <auditing>` ``array.__new__`` with arguments "
261258"``typecode``, ``initializer``."
262259msgstr ""
263- "引发一个 :ref:`审计事件 <auditing>` ``array.__new__`` 附带参数 ``typecode``, "
260+ "引发一个 :ref:`审计事件 <auditing>` ``array.__new__`` 附带参数 ``typecode`` 和 "
264261"``initializer``。"
265262
266263#: ../../library/array.rst:83
267264msgid "A string with all available type codes."
268- msgstr "一个包含所有可用类型码的字符串 。"
265+ msgstr "一个由所有可用的类型码组成的字符串 。"
269266
270267#: ../../library/array.rst:85
271268msgid ""
@@ -276,8 +273,8 @@ msgid ""
276273"interface, and may be used wherever :term:`bytes-like objects <bytes-like "
277274"object>` are supported."
278275msgstr ""
279- "数组对象支持普通的序列操作如索引、切片、拼接和重复等。 当使用切片赋值时,所赋的值必须为具有相同类型码的数组对象;所有其他情况都将引发 "
280- ":exc:`TypeError`。 数组对象也实现了缓冲区接口,可以用于所有支持 :term:`字节类对象 <bytes-like object>` "
276+ "数组对象支持普通的序列操作如索引、切片、拼接和重复等。当使用切片赋值时,所赋的值必须为具有相同类型码的数组对象;所有其他情况都将引发 "
277+ ":exc:`TypeError`。数组对象也实现了缓冲区接口,可以用于所有支持 :term:`字节类对象 <bytes-like object>` "
281278"的场合。"
282279
283280#: ../../library/array.rst:91
@@ -286,11 +283,11 @@ msgstr "以下数据项和方法也受到支持:"
286283
287284#: ../../library/array.rst:95
288285msgid "The typecode character used to create the array."
289- msgstr "用于创建数组的类型码字符 。"
286+ msgstr "在创建数组时指定的类型码字符 。"
290287
291288#: ../../library/array.rst:100
292289msgid "The length in bytes of one array item in the internal representation."
293- msgstr "在内部表示中一个数组项的字节长度 。"
290+ msgstr "在内部表示中,单个数组项的长度,单位为字节 。"
294291
295292#: ../../library/array.rst:105
296293msgid "Append a new item with value *x* to the end of the array."
0 commit comments