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

Skip to content

Commit cb01b0a

Browse files
author
Becca
committed
translate stdtypes - boolean & numeric types (little modification10_modify '
'
1 parent 62932c9 commit cb01b0a

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

library/stdtypes.po

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ msgid ""
321321
msgstr ""
322322
"除了不同的數字型別外,不同型別的物件不能進行相等比較。"
323323
"運算子 ``==`` 總有定義,但在某些物件型別(例如,"
324-
"class 物件)時,運算子會等同於 :keyword:`is`\\ 。其他運算子 ``<``、``<=``、"
324+
"class 物件)時,運算子會等同於 :keyword:`is`\\ 。其他運算子 ``<``\\ 、``<=``\\ 、"
325325
"``>`` 及 ``>=`` 皆僅在有意義的部分有所定義;例如,"
326326
"當其中一個引數為複數時,"
327327
"將引發一個 :exc:`TypeError` 的例外。"
@@ -345,7 +345,7 @@ msgid ""
345345
msgstr ""
346346
"一個 class 的實例不可以與其他相同 class 的實例"
347347
"或其他物件的類別進行排序,除非 class 定義足夠的"
348-
" method ,包含 :meth:`~object.__lt__`、:meth:`~object.__le__`、:meth:`~object."
348+
" method ,包含 :meth:`~object.__lt__`\\ 、:meth:`~object.__le__`\\ 、:meth:`~object."
349349
"__gt__` 及 :meth:`~object.__ge__`\\ (一般來說,使用 :meth:`~object.__lt__` 及 :"
350350
"meth:`~object.__eq__` 就可以滿足常規意義上的比較運算子)。"
351351

@@ -370,7 +370,7 @@ msgstr ""
370370

371371
#: ../../library/stdtypes.rst:205
372372
msgid "Numeric Types --- :class:`int`, :class:`float`, :class:`complex`"
373-
msgstr "數字型別 --- :class:`int`、:class:`float`、:class:`complex`"
373+
msgstr "數字型別 --- :class:`int`\\ 、:class:`float`\\ 、:class:`complex`"
374374

375375
#: ../../library/stdtypes.rst:215
376376
msgid ""
@@ -386,7 +386,7 @@ msgid ""
386386
"numeric types :mod:`fractions.Fraction`, for rationals, and :mod:`decimal."
387387
"Decimal`, for floating-point numbers with user-definable precision.)"
388388
msgstr ""
389-
"數字型別共有三種::dfn:`integers`、:dfn:`floating "
389+
"數字型別共有三種::dfn:`integers`\\ 、:dfn:`floating "
390390
"point numbers` 及 :dfn:`complex numbers`\\ 。此外,Boolean 為為整數中的"
391391
"一個子型別。整數有無限的精度。浮點數通常使用 C 裡面的 :c:expr:`double` "
392392
"實現。關於在你程式所運作的機器上之浮點數的精度及內部表示法可以在 :data:`sys."
@@ -434,7 +434,7 @@ msgid ""
434434
"The constructors :func:`int`, :func:`float`, and :func:`complex` can be used "
435435
"to produce numbers of a specific type."
436436
msgstr ""
437-
"建構函數: :func:`inc`、:func:`float` 及 :func:`complex` 可以用來"
437+
"建構函數: :func:`inc`\\ 、:func:`float` 及 :func:`complex` 可以用來"
438438
"產生特定型別的數字。"
439439

440440
#: ../../library/stdtypes.rst:271
@@ -630,8 +630,8 @@ msgid ""
630630
msgstr ""
631631
"也被稱為整數除法。對於整數型別的操作數,結果"
632632
"為一個整數,但型別並不需要為整數。結果會總是"
633-
"往負無限大的方向取整數值: ``1//2`` 為 ``0``、``(-1)//2`` 為"
634-
"``-1``、``1//(-2)`` 為 ``-1`` 及 ``(-1)//(-2)`` 為 ``0``"
633+
"往負無限大的方向取整數值: ``1//2`` 為 ``0``\\ 、``(-1)//2`` 為"
634+
"``-1``\\ 、``1//(-2)`` 為 ``-1`` 及 ``(-1)//(-2)`` 為 ``0``"
635635

636636
#: ../../library/stdtypes.rst:328
637637
msgid ""
@@ -1273,10 +1273,10 @@ msgid ""
12731273
"``!=`` should be preferred over ``&``, ``|`` and ``^``."
12741274
msgstr ""
12751275
"對於邏輯運算,使用 :ref:`boolean operators <boolean>`"
1276-
" ``and``、``or`` 和 ``not``\\ 。當將位元運算子 ``&``、``"
1277-
"|``、``^`` 應用於兩個布林值時,它們會返回一個等同於邏輯運算"
1276+
" ``and``\\ 、``or`` 和 ``not``\\ 。當將位元運算子 ``&``\\ 、``"
1277+
"|``\\ 、``^`` 應用於兩個布林值時,它們會返回一個等同於邏輯運算"
12781278
" \"and\"\"or\"\"xor\" 的布林值。然而,應該優先使用邏輯"
1279-
"運算子 ``and``、``or`` 和 ``!=`` 而不是 ``&``、``|`` 和 ``^``\\ 。"
1279+
"運算子 ``and``\\ 、``or`` 和 ``!=`` 而不是 ``&``\\ 、``|`` 和 ``^``\\ 。"
12801280

12811281
#: ../../library/stdtypes.rst:830
12821282
msgid ""

0 commit comments

Comments
 (0)