Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 26bbfe1

Browse files
committed
[po] auto sync bot
1 parent 2fe7b09 commit 26bbfe1

4 files changed

Lines changed: 26 additions & 20 deletions

File tree

howto/functional.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Kder <[email protected]>, 2018
1111
# Freesand Leo <[email protected]>, 2019
1212
# chen_chao <[email protected]>, 2019
13+
# ppcfish <[email protected]>, 2019
1314
#
1415
#, fuzzy
1516
msgid ""
@@ -18,7 +19,7 @@ msgstr ""
1819
"Report-Msgid-Bugs-To: \n"
1920
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
2021
"PO-Revision-Date: 2017-02-16 17:44+0000\n"
21-
"Last-Translator: chen_chao <wenbushi@gmail.com>, 2019\n"
22+
"Last-Translator: ppcfish <ppcfish@gmail.com>, 2019\n"
2223
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2324
"MIME-Version: 1.0\n"
2425
"Content-Type: text/plain; charset=UTF-8\n"
@@ -371,7 +372,7 @@ msgid ""
371372
msgstr ""
372373
"内置的 :func:`iter` 函数接受任意对象并试图返回一个迭代器来输出对象的内容或元素,并会在对象不支持迭代的时候抛出 "
373374
":exc:`TypeError` 异常。Python 有几种内置数据类型支持迭代,最常见的就是列表和字典。如果一个对象能生成迭代器,那么它就会被称作 "
374-
":term:`可迭代的`(:term:`iterable`。"
375+
":term:`iterable` 。"
375376

376377
#: ../../howto/functional.rst:199
377378
msgid "You can experiment with the iteration interface manually:"

library/functools.po

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# zc Jin <[email protected]>, 2018
99
# Freesand Leo <[email protected]>, 2018
1010
# akira asura <[email protected]>, 2019
11+
# ppcfish <[email protected]>, 2019
1112
#
1213
#, fuzzy
1314
msgid ""
@@ -16,7 +17,7 @@ msgstr ""
1617
"Report-Msgid-Bugs-To: \n"
1718
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1819
"PO-Revision-Date: 2017-02-16 23:12+0000\n"
19-
"Last-Translator: akira asura <[email protected]>, 2019\n"
20+
"Last-Translator: ppcfish <[email protected]>, 2019\n"
2021
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2122
"MIME-Version: 1.0\n"
2223
"Content-Type: text/plain; charset=UTF-8\n"
@@ -55,10 +56,10 @@ msgid ""
5556
" tool for programs being converted from Python 2 which supported the use of "
5657
"comparison functions."
5758
msgstr ""
58-
"将(旧式的)比较函数转换为新式的 :term:`key function`. 在类似于:func:`sorted`, :func:`min`"
59-
":func:`max`, :func:`heapq.nlargest`, "
60-
":func:`heapq.nsmallest`,:func:`itertools.groupby`等函数的`key`参数中使用。此函数主要用于转换Python"
61-
" 2程序至新版的转换工具,从而保持对比较函数的兼容。"
59+
"将(旧式的)比较函数转换为新式的 :term:`key function` . 在类似于 :func:`sorted` , :func:`min`"
60+
" :func:`max` , :func:`heapq.nlargest` , :func:`heapq.nsmallest` , "
61+
":func:`itertools.groupby` 等函数的`key`参数中使用。此函数主要用于转换Python "
62+
"2程序至新版的转换工具,从而保持对比较函数的兼容。"
6263

6364
#: ../../library/functools.rst:32
6465
msgid ""

library/io.po

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Meng Du <[email protected]>, 2019
1010
# Wu Pipi, 2019
1111
# isombyt <[email protected]>, 2019
12+
# ppcfish <[email protected]>, 2019
1213
#
1314
#, fuzzy
1415
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
1718
"Report-Msgid-Bugs-To: \n"
1819
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1920
"PO-Revision-Date: 2017-02-16 23:15+0000\n"
20-
"Last-Translator: isombyt <[email protected]>, 2019\n"
21+
"Last-Translator: ppcfish <[email protected]>, 2019\n"
2122
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
2223
"MIME-Version: 1.0\n"
2324
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,6 +59,7 @@ msgid ""
5859
"location), or only sequential access (for example in the case of a socket or"
5960
" pipe)."
6061
msgstr ""
62+
"独立于其类别,每个具体流对象也将具有各种功能:它可以是只读,只写或读写。它还可以允许任意随机访问(向前或向后寻找任何位置),或仅允许顺序访问(例如在套接字或管道的情况下)。"
6163

6264
#: ../../library/io.rst:40
6365
msgid ""
@@ -197,7 +199,7 @@ msgstr ""
197199

198200
#: ../../library/io.rst:149
199201
msgid ":mod:`sys`"
200-
msgstr ""
202+
msgstr ":mod:`sys`"
201203

202204
#: ../../library/io.rst:149
203205
msgid ""
@@ -292,50 +294,53 @@ msgstr ""
292294
#: ../../library/io.rst:201 ../../library/io.rst:206 ../../library/io.rst:208
293295
#: ../../library/io.rst:210
294296
msgid ":class:`IOBase`"
295-
msgstr ""
297+
msgstr ":class:`IOBase`"
296298

297299
#: ../../library/io.rst:201
298300
msgid "``fileno``, ``seek``, and ``truncate``"
299-
msgstr ""
301+
msgstr "``fileno``, ``seek``, 和 ``truncate``"
300302

301303
#: ../../library/io.rst:201
302304
msgid ""
303305
"``close``, ``closed``, ``__enter__``, ``__exit__``, ``flush``, ``isatty``, "
304306
"``__iter__``, ``__next__``, ``readable``, ``readline``, ``readlines``, "
305307
"``seekable``, ``tell``, ``writable``, and ``writelines``"
306308
msgstr ""
309+
"``close``, ``closed``, ``__enter__``, ``__exit__``, ``flush``, ``isatty``, "
310+
"``__iter__``, ``__next__``, ``readable``, ``readline``, ``readlines``, "
311+
"``seekable``, ``tell``, ``writable``, 和 ``writelines``"
307312

308313
#: ../../library/io.rst:206
309314
msgid ":class:`RawIOBase`"
310-
msgstr ""
315+
msgstr ":class:`RawIOBase`"
311316

312317
#: ../../library/io.rst:206
313318
msgid "``readinto`` and ``write``"
314-
msgstr ""
319+
msgstr "``readinto`` 和 ``write``"
315320

316321
#: ../../library/io.rst:206
317322
msgid "Inherited :class:`IOBase` methods, ``read``, and ``readall``"
318323
msgstr ""
319324

320325
#: ../../library/io.rst:208
321326
msgid ":class:`BufferedIOBase`"
322-
msgstr ""
327+
msgstr ":class:`BufferedIOBase`"
323328

324329
#: ../../library/io.rst:208
325330
msgid "``detach``, ``read``, ``read1``, and ``write``"
326-
msgstr ""
331+
msgstr "``detach``, ``read``, ``read1``, 和 ``write``"
327332

328333
#: ../../library/io.rst:208
329334
msgid "Inherited :class:`IOBase` methods, ``readinto``, and ``readinto1``"
330335
msgstr ""
331336

332337
#: ../../library/io.rst:210
333338
msgid ":class:`TextIOBase`"
334-
msgstr ""
339+
msgstr ":class:`TextIOBase`"
335340

336341
#: ../../library/io.rst:210
337342
msgid "``detach``, ``read``, ``readline``, and ``write``"
338-
msgstr ""
343+
msgstr "``detach``, ``read``, ``readline``, 和 ``write``"
339344

340345
#: ../../library/io.rst:210
341346
msgid ""

using/windows.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,9 +1613,8 @@ msgid ""
16131613
"the file. Import statements other than to ``site`` are not permitted, and "
16141614
"arbitrary code cannot be specified."
16151615
msgstr ""
1616-
"当文件存在时,将忽略所有注册表和环境变量,启用隔离模式,并且:除非文件中的一行指定 :mod:`site` ,否则不会导入 :mod:`site` "
1617-
"。以 ``#`` 开头的空白路径和行将被忽略。每个路径可以是绝对的或相对于文件的位置。不允许使用除 ``site`` "
1618-
"以外的导入语句,并且不能指定任意代码。"
1616+
"当文件存在时,将忽略所有注册表和环境变量,启用隔离模式,并且:除非文件中的一行指定 :mod:`site` ,否则不会导入 :mod:`site` 。以"
1617+
" ``#`` 开头的空白路径和行将被忽略。每个路径可以是绝对的或相对于文件的位置。不允许使用除 ``site`` 以外的导入语句,并且不能指定任意代码。"
16191618

16201619
#: ../../using/windows.rst:921
16211620
msgid ""

0 commit comments

Comments
 (0)