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

Skip to content

Commit 0eb8908

Browse files
committed
[po] auto sync bot
1 parent b6aeaae commit 0eb8908

24 files changed

Lines changed: 4823 additions & 4785 deletions

c-api/conversion.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
11+
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
1414
"MIME-Version: 1.0\n"
@@ -106,9 +106,9 @@ msgstr ""
106106

107107
#: ../../c-api/conversion.rst:62
108108
msgid ""
109-
"If ``endptr`` is ``NULL``, convert the whole string. Raise ValueError and "
110-
"return ``-1.0`` if the string is not a valid representation of a floating-"
111-
"point number."
109+
"If ``endptr`` is ``NULL``, convert the whole string. Raise "
110+
":exc:`ValueError` and return ``-1.0`` if the string is not a valid "
111+
"representation of a floating-point number."
112112
msgstr ""
113113

114114
#: ../../c-api/conversion.rst:66

faq/design.po

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-08-01 08:44+0900\n"
11+
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: ww song <[email protected]>, 2018\n"
1414
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -693,9 +693,10 @@ msgstr ""
693693

694694
#: ../../faq/design.rst:531
695695
msgid ""
696-
"would raise a KeyError exception because the id of the ``[1, 2]`` used in "
697-
"the second line differs from that in the first line. In other words, "
698-
"dictionary keys should be compared using ``==``, not using :keyword:`is`."
696+
"would raise a :exc:`KeyError` exception because the id of the ``[1, 2]`` "
697+
"used in the second line differs from that in the first line. In other "
698+
"words, dictionary keys should be compared using ``==``, not using "
699+
":keyword:`is`."
699700
msgstr ""
700701

701702
#: ../../faq/design.rst:535

faq/extending.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-06-30 05:56+0900\n"
11+
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: Yinuo Huang <[email protected]>, 2018\n"
1414
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -93,7 +93,7 @@ msgid ""
9393
"The highest-level function to do this is :c:func:`PyRun_SimpleString` which "
9494
"takes a single string argument to be executed in the context of the module "
9595
"``__main__`` and returns ``0`` for success and ``-1`` when an exception "
96-
"occurred (including ``SyntaxError``). If you want more control, use "
96+
"occurred (including :exc:`SyntaxError`). If you want more control, use "
9797
":c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in "
9898
"``Python/pythonrun.c``."
9999
msgstr ""

glossary.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-09-03 09:04+0900\n"
11+
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: 欢 王 <[email protected]>, 2018\n"
1414
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -360,9 +360,9 @@ msgid ""
360360
"``int(3.15)`` converts the floating point number to the integer ``3``, but "
361361
"in ``3+4.5``, each argument is of a different type (one int, one float), and"
362362
" both must be converted to the same type before they can be added or it will"
363-
" raise a ``TypeError``. Without coercion, all arguments of even compatible "
364-
"types would have to be normalized to the same value by the programmer, e.g.,"
365-
" ``float(3)+4.5`` rather than just ``3+4.5``."
363+
" raise a :exc:`TypeError`. Without coercion, all arguments of even "
364+
"compatible types would have to be normalized to the same value by the "
365+
"programmer, e.g., ``float(3)+4.5`` rather than just ``3+4.5``."
366366
msgstr ""
367367

368368
#: ../../glossary.rst:206

library/asyncio-dev.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-09-18 09:12+0900\n"
11+
"POT-Creation-Date: 2018-10-27 09:37+0900\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: ww song <[email protected]>, 2018\n"
1414
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -95,7 +95,7 @@ msgstr ""
9595

9696
#: ../../library/asyncio-dev.rst:53
9797
msgid ""
98-
"Many non-treadsafe asyncio APIs (such as :meth:`loop.call_soon` and "
98+
"Many non-threadsafe asyncio APIs (such as :meth:`loop.call_soon` and "
9999
":meth:`loop.call_at` methods) raise an exception if they are called from a "
100100
"wrong thread."
101101
msgstr ""

0 commit comments

Comments
 (0)