@@ -10,6 +10,7 @@ msgstr ""
1010"Report-Msgid-Bugs-To : \n "
1111"POT-Creation-Date : 2018-06-30 05:56+0900\n "
1212"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13+ "
Last-Translator :
sunsol s <[email protected] >, 2018\n "
1314"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
1415"MIME-Version : 1.0\n "
1516"Content-Type : text/plain; charset=UTF-8\n "
@@ -19,22 +20,22 @@ msgstr ""
1920
2021#: ../../library/wave.rst:2
2122msgid ":mod:`wave` --- Read and write WAV files"
22- msgstr ""
23+ msgstr ":mod:`wave` --- 读写WAV格式文件 "
2324
2425#: ../../library/wave.rst:10
2526msgid "**Source code:** :source:`Lib/wave.py`"
26- msgstr ""
27+ msgstr "**源代码:** :source:`Lib/wave.py` "
2728
2829#: ../../library/wave.rst:14
2930msgid ""
3031"The :mod:`wave` module provides a convenient interface to the WAV sound "
3132"format. It does not support compression/decompression, but it does support "
3233"mono/stereo."
33- msgstr ""
34+ msgstr ":mod:`wave`模块提供了一个处理WAV声音格式文件的便利接口,虽然不支持压缩和解压,但支持单声道和多声道。 "
3435
3536#: ../../library/wave.rst:17
3637msgid "The :mod:`wave` module defines the following function and exception:"
37- msgstr ""
38+ msgstr ":mod:`wave`模块定义了以下函数和异常: "
3839
3940#: ../../library/wave.rst:22
4041msgid ""
@@ -48,19 +49,19 @@ msgstr ""
4849
4950#: ../../library/wave.rst:26
5051msgid "Read only mode."
51- msgstr ""
52+ msgstr "只读。 "
5253
5354#: ../../library/wave.rst:29
5455msgid "``'wb'``"
5556msgstr ""
5657
5758#: ../../library/wave.rst:29
5859msgid "Write only mode."
59- msgstr ""
60+ msgstr "只写。 "
6061
6162#: ../../library/wave.rst:31
6263msgid "Note that it does not allow read/write WAV files."
63- msgstr ""
64+ msgstr "注意不支持同时读写WAV文件。 "
6465
6566#: ../../library/wave.rst:33
6667msgid ""
@@ -75,7 +76,7 @@ msgid ""
7576"If you pass in a file-like object, the wave object will not close it when "
7677"its :meth:`close` method is called; it is the caller's responsibility to "
7778"close the file object."
78- msgstr ""
79+ msgstr "如果操作的是文件对象,当使用wave对象的:meth:`close`方法时,并不会真正关闭文件对象,这需要调用者负责来关闭文件对象。 "
7980
8081#: ../../library/wave.rst:42
8182msgid ""
@@ -91,54 +92,54 @@ msgstr ""
9192
9293#: ../../library/wave.rst:52
9394msgid "A synonym for :func:`.open`, maintained for backwards compatibility."
94- msgstr ""
95+ msgstr "同:func:`.open`,用于向后兼容。 "
9596
9697#: ../../library/wave.rst:59
9798msgid ""
9899"An error raised when something is impossible because it violates the WAV "
99100"specification or hits an implementation deficiency."
100- msgstr ""
101+ msgstr "当不符合WAV格式或无法操作时引发的错误。 "
101102
102103#: ../../library/wave.rst:66
103104msgid "Wave_read Objects"
104- msgstr ""
105+ msgstr "Wave_read对象 "
105106
106107#: ../../library/wave.rst:68
107108msgid ""
108109"Wave_read objects, as returned by :func:`.open`, have the following methods:"
109- msgstr ""
110+ msgstr "由:func:`.open`返回的Wave_read对象,有以下几种方法: "
110111
111112#: ../../library/wave.rst:73
112113msgid ""
113114"Close the stream if it was opened by :mod:`wave`, and make the instance "
114115"unusable. This is called automatically on object collection."
115- msgstr ""
116+ msgstr "关闭:mod:`wave`打开的数据流并使对象不可用。当对象销毁时会自动调用。 "
116117
117118#: ../../library/wave.rst:79
118119msgid "Returns number of audio channels (``1`` for mono, ``2`` for stereo)."
119- msgstr ""
120+ msgstr "返回声道数量(``1``单声道, ``2``立体声) "
120121
121122#: ../../library/wave.rst:84
122123msgid "Returns sample width in bytes."
123- msgstr ""
124+ msgstr "返回采样字节长度。 "
124125
125126#: ../../library/wave.rst:89
126127msgid "Returns sampling frequency."
127- msgstr ""
128+ msgstr "返回采样频率。 "
128129
129130#: ../../library/wave.rst:94
130131msgid "Returns number of audio frames."
131- msgstr ""
132+ msgstr "返回音频总帧数。 "
132133
133134#: ../../library/wave.rst:99
134135msgid "Returns compression type (``'NONE'`` is the only supported type)."
135- msgstr ""
136+ msgstr "返回压缩类型(只支持``'NONE'``) "
136137
137138#: ../../library/wave.rst:104
138139msgid ""
139140"Human-readable version of :meth:`getcomptype`. Usually ``'not compressed'`` "
140141"parallels ``'NONE'``."
141- msgstr ""
142+ msgstr ":meth:`getcomptype`的通俗版本.使用``'not compressed'``代替``'NONE'``. "
142143
143144#: ../../library/wave.rst:110
144145msgid ""
0 commit comments