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

Skip to content

Commit 1a527e6

Browse files
committed
[po] auto sync bot
1 parent cdea89a commit 1a527e6

3 files changed

Lines changed: 28 additions & 13 deletions

File tree

extending/newtypes.po

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2018, Python Software Foundation
2+
# Copyright (C) 2001-2019, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6+
# Translators:
7+
# 操旭 <[email protected]>, 2017
8+
# Freesand Leo <[email protected]>, 2018
9+
# Pandaaaa906 <[email protected]>, 2019
10+
#
611
#, fuzzy
712
msgid ""
813
msgstr ""
914
"Project-Id-Version: Python 3.7\n"
1015
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2018\n"
16+
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
17+
"PO-Revision-Date: 2017-02-16 17:42+0000\n"
18+
"Last-Translator: Pandaaaa906 <ye.pandaaaa906@gmail.com>, 2019\n"
1419
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1520
"MIME-Version: 1.0\n"
1621
"Content-Type: text/plain; charset=UTF-8\n"
@@ -26,20 +31,20 @@ msgstr ""
2631
msgid ""
2732
"This section aims to give a quick fly-by on the various type methods you can"
2833
" implement and what they do."
29-
msgstr ""
34+
msgstr "本章节目标是提供一个各种你可以实现的类型方法及其功能的简短介绍。"
3035

3136
#: ../../extending/newtypes.rst:12
3237
msgid ""
3338
"Here is the definition of :c:type:`PyTypeObject`, with some fields only used"
3439
" in debug builds omitted:"
35-
msgstr ""
40+
msgstr "这是C类型:c:type:`PyTypeObject的定义,省略了只用于调试构建的字段:"
3641

3742
#: ../../extending/newtypes.rst:18
3843
msgid ""
3944
"Now that's a *lot* of methods. Don't worry too much though -- if you have a"
4045
" type you want to define, the chances are very good that you will only "
4146
"implement a handful of these."
42-
msgstr ""
47+
msgstr "至此已经介绍了*很多*方法。但是不要太担心,如果你要定义一个类型,通常只需要实现少量的方法。"
4348

4449
#: ../../extending/newtypes.rst:22
4550
msgid ""

library/_thread.po

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2018, Python Software Foundation
2+
# Copyright (C) 2001-2019, 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
# cissoid <[email protected]>, 2018
88
# Freesand Leo <[email protected]>, 2018
9+
# Pandaaaa906 <[email protected]>, 2019
910
#
1011
#, fuzzy
1112
msgid ""
1213
msgstr ""
1314
"Project-Id-Version: Python 3.7\n"
1415
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2018-11-08 09:41+0900\n"
16+
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1617
"PO-Revision-Date: 2017-02-16 17:47+0000\n"
17-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2018\n"
18+
"Last-Translator: Pandaaaa906 <ye.pandaaaa906@gmail.com>, 2019\n"
1819
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
@@ -118,6 +119,10 @@ msgid ""
118119
"stack size is the suggested approach in the absence of more specific "
119120
"information)."
120121
msgstr ""
122+
"返回新建线程是用的堆栈大小。可选参数*size*指定之后新建的线程的堆栈大小,而且一定要是0(根据平台或者默认配置)或者最小是32,768(32KiB)的一个正整数。如果*size*没有指定,默认是0。如果不支持改变线程堆栈大小,会抛出:exc:`RuntimeError`错误。如果指定的堆栈大小不合法,会抛出"
123+
" "
124+
":exc:`ValueError`错误并且不会修改堆栈大小。32KiB是当前最小的能保证解释器足够堆栈空间的堆栈大小。需要注意的是部分平台对于堆栈大小会有特定的限制,例如要求大于32KiB的堆栈大小或者需要根据系统内存页面的整数倍进行分配"
125+
" - 应当查阅平台文档有关详细信息(4KiB页面比较普遍,在没有更具体信息的情况下,建议的方法是使用4096的倍数作为堆栈大小)"
121126

122127
#: ../../library/_thread.rst:105
123128
msgid ""

library/threading.po

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2018, Python Software Foundation
2+
# Copyright (C) 2001-2019, 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
# ww song <[email protected]>, 2018
88
# Freesand Leo <[email protected]>, 2018
9+
# Pandaaaa906 <[email protected]>, 2019
910
#
1011
#, fuzzy
1112
msgid ""
1213
msgstr ""
1314
"Project-Id-Version: Python 3.7\n"
1415
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2018-12-20 10:06+0900\n"
16+
"POT-Creation-Date: 2019-01-01 10:14+0900\n"
1617
"PO-Revision-Date: 2017-02-16 23:30+0000\n"
17-
"Last-Translator: Freesand Leo <yuqinju@163.com>, 2018\n"
18+
"Last-Translator: Pandaaaa906 <ye.pandaaaa906@gmail.com>, 2019\n"
1819
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1920
"MIME-Version: 1.0\n"
2021
"Content-Type: text/plain; charset=UTF-8\n"
@@ -122,6 +123,10 @@ msgid ""
122123
"stack size is the suggested approach in the absence of more specific "
123124
"information)."
124125
msgstr ""
126+
"返回新建线程是用的堆栈大小。可选参数*size*指定之后新建的线程的堆栈大小,而且一定要是0(根据平台或者默认配置)或者最小是32,768(32KiB)的一个正整数。如果*size*没有指定,默认是0。如果不支持改变线程堆栈大小,会抛出:exc:`RuntimeError`错误。如果指定的堆栈大小不合法,会抛出"
127+
" "
128+
":exc:`ValueError`错误并且不会修改堆栈大小。32KiB是当前最小的能保证解释器足够堆栈空间的堆栈大小。需要注意的是部分平台对于堆栈大小会有特定的限制,例如要求大于32KiB的堆栈大小或者需要根据系统内存页面的整数倍进行分配"
129+
" - 应当查阅平台文档有关详细信息(4KiB页面比较普遍,在没有更具体信息的情况下,建议的方法是使用4096的倍数作为堆栈大小)"
125130

126131
#: ../../library/threading.rst:104
127132
msgid ""

0 commit comments

Comments
 (0)