|
1 | 1 | # SOME DESCRIPTIVE TITLE. |
2 | | -# Copyright (C) 2001-2022, Python Software Foundation |
| 2 | +# Copyright (C) 2001-2024, Python Software Foundation |
3 | 3 | # This file is distributed under the same license as the Python package. |
4 | 4 | # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
5 | 5 | # |
|
8 | 8 | |
9 | 9 | # ppcfish <[email protected]>, 2019 |
10 | 10 | # Freesand Leo <[email protected]>, 2022 |
| 11 | +# Rafael Fontenelle <[email protected]>, 2024 |
11 | 12 | # |
12 | 13 | #, fuzzy |
13 | 14 | msgid "" |
14 | 15 | msgstr "" |
15 | 16 | "Project-Id-Version: Python 3.9\n" |
16 | 17 | "Report-Msgid-Bugs-To: \n" |
17 | | -"POT-Creation-Date: 2022-11-04 14:34+0000\n" |
| 18 | +"POT-Creation-Date: 2024-02-16 21:12+0000\n" |
18 | 19 | "PO-Revision-Date: 2017-02-16 23:02+0000\n" |
19 | | -"Last-Translator: Freesand Leo <yuqinju@163.com>, 2022\n" |
20 | | -"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n" |
| 20 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n" |
| 21 | +"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/zh_CN/)\n" |
21 | 22 | "MIME-Version: 1.0\n" |
22 | 23 | "Content-Type: text/plain; charset=UTF-8\n" |
23 | 24 | "Content-Transfer-Encoding: 8bit\n" |
@@ -54,7 +55,7 @@ msgstr "" |
54 | 55 | msgid "" |
55 | 56 | "The module defines the following functions for encoding and decoding with " |
56 | 57 | "any codec:" |
57 | | -msgstr "该模块定义了以下用于使用任何编解码器进行编码和解码的函数:" |
| 58 | +msgstr "该模块定义了以下用于使用任何编解码器进行编码和解码的函数:" |
58 | 59 |
|
59 | 60 | #: ../../library/codecs.rst:38 |
60 | 61 | msgid "Encodes *obj* using the codec registered for *encoding*." |
@@ -240,7 +241,7 @@ msgid "" |
240 | 241 | "wider range of codecs when working with binary files:" |
241 | 242 | msgstr "" |
242 | 243 | "虽然内置的 :func:`open` 和相关联的 :mod:`io` " |
243 | | -"模块是操作已编码文本文件的推荐方式,但本模块也提供了额外的工具函数和类,允许在操作二进制文件时使用更多各类的编解码器:" |
| 244 | +"模块是操作已编码文本文件的推荐方式,但本模块也提供了额外的工具函数和类,允许在操作二进制文件时使用更多种类的编解码器:" |
244 | 245 |
|
245 | 246 | #: ../../library/codecs.rst:183 |
246 | 247 | msgid "" |
@@ -422,7 +423,7 @@ msgstr "值" |
422 | 423 | #: ../../library/codecs.rst:384 ../../library/codecs.rst:1317 |
423 | 424 | #: ../../library/codecs.rst:1384 ../../library/codecs.rst:1439 |
424 | 425 | msgid "Meaning" |
425 | | -msgstr "含义" |
| 426 | +msgstr "含意" |
426 | 427 |
|
427 | 428 | #: ../../library/codecs.rst:325 |
428 | 429 | msgid "``'strict'``" |
@@ -1020,7 +1021,7 @@ msgstr "" |
1020 | 1021 | msgid "" |
1021 | 1022 | "The *stream* argument must be a file-like object open for writing text or " |
1022 | 1023 | "binary data, as appropriate for the specific codec." |
1023 | | -msgstr "*stream* 参数必须为一个基于特定编解码器打开用于写入文本或二进制数据的文件类对象。" |
| 1024 | +msgstr "*stream* 参数必须为一个基于特定编解码器打开用于写入文本或二进制数据的文件型对象。" |
1024 | 1025 |
|
1025 | 1026 | #: ../../library/codecs.rst:722 |
1026 | 1027 | msgid "" |
@@ -1100,7 +1101,7 @@ msgstr "" |
1100 | 1101 | msgid "" |
1101 | 1102 | "The *stream* argument must be a file-like object open for reading text or " |
1102 | 1103 | "binary data, as appropriate for the specific codec." |
1103 | | -msgstr "*stream* 参数必须为一个基于特定编解码器打开用于读取文本或二进制数据的文件类对象。" |
| 1104 | +msgstr "*stream* 参数必须为一个基于特定编解码器打开用于读取文本或二进制数据的文件型对象。" |
1104 | 1105 |
|
1105 | 1106 | #: ../../library/codecs.rst:777 |
1106 | 1107 | msgid "" |
@@ -1236,7 +1237,7 @@ msgid "" |
1236 | 1237 | "resp. Error handling is done in the same way as defined for the stream " |
1237 | 1238 | "readers and writers." |
1238 | 1239 | msgstr "" |
1239 | | -"创建一个 :class:`StreamReaderWriter` 实例。 *stream* 必须为一个文件类对象。 *Reader* 和 " |
| 1240 | +"创建一个 :class:`StreamReaderWriter` 实例。 *stream* 必须为一个文件型对象。 *Reader* 和 " |
1240 | 1241 | "*Writer* 必须为分别提供了 :class:`StreamReader` 和 :class:`StreamWriter` 接口的工厂函数或类。 " |
1241 | 1242 | "错误处理通过与流式读取器和写入器所定义的相同方式来完成。" |
1242 | 1243 |
|
@@ -1278,7 +1279,7 @@ msgstr "你可以使用这些对象来进行透明转码,例如从 Latin-1 转 |
1278 | 1279 |
|
1279 | 1280 | #: ../../library/codecs.rst:895 |
1280 | 1281 | msgid "The *stream* argument must be a file-like object." |
1281 | | -msgstr "*stream* 参数必须为一个文件类对象。" |
| 1282 | +msgstr "*stream* 参数必须为一个文件型对象。" |
1282 | 1283 |
|
1283 | 1284 | #: ../../library/codecs.rst:897 |
1284 | 1285 | msgid "" |
|
0 commit comments