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

Skip to content

Commit 85002ca

Browse files
author
Becca
committed
0503_常用字改回原文(true false values)
1 parent 205ae78 commit 85002ca

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

library/stdtypes.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ msgstr "``x and y``"
162162

163163
#: ../../library/stdtypes.rst:90
164164
msgid "if *x* is false, then *x*, else *y*"
165-
msgstr "假如 *x* 為 false,則 *x*,否則 *y*"
165+
msgstr "假如 *x* 為假,則 *x*,否則 *y*"
166166

167167
#: ../../library/stdtypes.rst:90 ../../library/stdtypes.rst:288
168168
#: ../../library/stdtypes.rst:308 ../../library/stdtypes.rst:1205
@@ -177,7 +177,7 @@ msgstr "``not x``"
177177

178178
#: ../../library/stdtypes.rst:93
179179
msgid "if *x* is false, then ``True``, else ``False``"
180-
msgstr "假如 *x* 為 false,則 ``True``,否則 ``False``"
180+
msgstr "假如 *x* 為假,則 ``True``,否則 ``False``"
181181

182182
#: ../../library/stdtypes.rst:93 ../../library/stdtypes.rst:975
183183
#: ../../library/stdtypes.rst:1208 ../../library/stdtypes.rst:2430
@@ -200,14 +200,14 @@ msgid ""
200200
"This is a short-circuit operator, so it only evaluates the second argument "
201201
"if the first one is false."
202202
msgstr ""
203-
"這是一個短路運算子,所以他只有在第一個引數為 false 時,才會對第二個引數求值。"
203+
"這是一個短路運算子,所以他只有在第一個引數為假時,才會對第二個引數求值。"
204204

205205
#: ../../library/stdtypes.rst:109
206206
msgid ""
207207
"This is a short-circuit operator, so it only evaluates the second argument "
208208
"if the first one is true."
209209
msgstr ""
210-
"這是一個短路運算子,所以他只有在第一個引數為 true 時,才會對第二個引數求值。"
210+
"這是一個短路運算子,所以他只有在第一個引數為真時,才會對第二個引數求值。"
211211

212212
#: ../../library/stdtypes.rst:113
213213
msgid ""
@@ -231,7 +231,7 @@ msgid ""
231231
msgstr ""
232232
"在 Python 裡共有 8 種比較運算。他們的優先順序都相同(皆優先於 Boolean 運"
233233
"算)。比較運算可以任意的串連;例如,``x < y <= z`` 等同於 ``x < y and y <= "
234-
"z``,差異只在於前者的 *y* 只有被求值一次(但在這兩個例子中,當 ``x < y`` 為 false"
234+
"z``,差異只在於前者的 *y* 只有被求值一次(但在這兩個例子中,當 ``x < y`` 為假"
235235
"時,*z* 皆不會被求值)。"
236236

237237
#: ../../library/stdtypes.rst:140

0 commit comments

Comments
 (0)