Skip to content

Commit 5ac84bf

Browse files
committed
#1056 - remove fuzzy flags
1 parent 625f651 commit 5ac84bf

File tree

1 file changed

+13
-29
lines changed

1 file changed

+13
-29
lines changed

c-api/number.po

Lines changed: 13 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,14 @@ msgstr ""
6464
"o2``\\와 동등합니다."
6565

6666
#: ../../c-api/number.rst:46
67-
#, fuzzy, python-format
6867
msgid ""
6968
"Return the floor of *o1* divided by *o2*, or ``NULL`` on failure. This "
7069
"is the equivalent of the Python expression ``o1 // o2``."
7170
msgstr ""
72-
"*o1*\\을 *o2*\\나눈 나머지나, 실패 시 ``NULL``\\을 반환합니다. 이것은 파이썬 표현식 ``o1 % "
71+
"*o1*\\을 *o2*\\정수 나눗셈한 몫을, 실패 시 ``NULL``\\을 반환합니다. 이것은 파이썬 표현식 ``o1 // "
7372
"o2``\\와 동등합니다."
7473

7574
#: ../../c-api/number.rst:52
76-
#, fuzzy
7775
msgid ""
7876
"Return a reasonable approximation for the mathematical value of *o1* "
7977
"divided by *o2*, or ``NULL`` on failure. The return value is "
@@ -232,7 +230,6 @@ msgstr ""
232230
" 지원하면 *제자리에서(in-place)* 수행됩니다. 이것은 파이썬 문장 ``o1 //= o2``\\와 동등합니다."
233231

234232
#: ../../c-api/number.rst:178
235-
#, fuzzy
236233
msgid ""
237234
"Return a reasonable approximation for the mathematical value of *o1* "
238235
"divided by *o2*, or ``NULL`` on failure. The return value is "
@@ -245,7 +242,7 @@ msgstr ""
245242
"*o1*\\을 *o2*\\로 나눈 수학적 값의 적절한 근삿값이나, 실패 시 ``NULL``\\을 반환합니다. 반환 값은 "
246243
"\"근사치\" 인데, 이진 부동 소수점 수가 근사치이기 때문입니다; 이진수로 모든 실수를 표현할 수는 없습니다. 이 함수는 두 개의"
247244
" 정수를 전달할 때 부동 소수점 수를 반환할 수 있습니다. 이 연산은 *o1*\\이 지원하면 *제자리에서(in-place)* "
248-
"수행됩니다."
245+
"수행됩니다. 이것은 파이썬 문장 ``o1 /= o2``\\와 동등합니다."
249246

250247
#: ../../c-api/number.rst:188
251248
msgid ""
@@ -363,17 +360,15 @@ msgstr ""
363360
"변환됩니다."
364361

365362
#: ../../c-api/number.rst:276
366-
#, fuzzy
367363
msgid ""
368364
"Returns *o* converted to a :c:type:`Py_ssize_t` value if *o* can be "
369365
"interpreted as an integer. If the call fails, an exception is raised and"
370366
" ``-1`` is returned."
371367
msgstr ""
372-
"*o*\\가 정수로 해석될 수 있으면, *o*\\를 Py_ssize_t 값으로 변환하여 반환합니다. 호출이 실패하면, 예외가 "
373-
"발생하고 ``-1``\\이 반환됩니다."
368+
"*o*\\가 정수로 해석될 수 있으면, *o*\\:c:type:`Py_ssize_t` 값으로 변환하여 반환합니다. 호출이 "
369+
"실패하면, 예외가 발생하고 ``-1``\\이 반환됩니다."
374370

375371
#: ../../c-api/number.rst:279
376-
#, fuzzy
377372
msgid ""
378373
"If *o* can be converted to a Python int but the attempt to convert to a "
379374
":c:type:`Py_ssize_t` value would raise an :exc:`OverflowError`, then the "
@@ -382,55 +377,44 @@ msgid ""
382377
"the exception is cleared and the value is clipped to ``PY_SSIZE_T_MIN`` "
383378
"for a negative integer or ``PY_SSIZE_T_MAX`` for a positive integer."
384379
msgstr ""
385-
"*o*\\가 파이썬 int로 변환될 수 있지만 Py_ssize_t 값으로 변환하려는 시도가 "
380+
"*o*\\가 파이썬 int로 변환될 수 있지만 :c:type:`Py_ssize_t` 값으로 변환하려는 시도가 "
386381
":exc:`OverflowError`\\를 발생시키면, *exc* 인자는 발생할 예외의 형(일반적으로 "
387382
":exc:`IndexError`\\나 :exc:`OverflowError`)입니다. *exc*\\가 ``NULL``\\이면, 예외가"
388383
" 지워지고 값은 음의 정수는 ``PY_SSIZE_T_MIN``\\으로, 양의 정수는 ``PY_SSIZE_T_MAX``\\로 "
389384
"잘립니다."
390385

391386
#: ../../c-api/number.rst:289
392-
#, fuzzy
393387
msgid ""
394388
"Returns ``1`` if *o* is an index integer (has the ``nb_index`` slot of "
395389
"the ``tp_as_number`` structure filled in), and ``0`` otherwise. This "
396390
"function always succeeds."
397391
msgstr ""
398-
"*o*\\가 인덱스 정수(tp_as_number 구조의 nb_index 슬롯이 채워져 있습니다)면 ``1``\\반환하고, 그렇지"
399-
" 않으면 ``0``\\을 반환합니다. 이 함수는 항상 성공합니다."
392+
"*o*\\가 인덱스 정수(``tp_as_number`` 구조의 ``nb_index`` 슬롯이 채워져 있습니다)면 ``1``\\을 "
393+
"반환하고, 그렇지 않으면 ``0``\\을 반환합니다. 이 함수는 항상 성공합니다."
400394

401395
#: ../../c-api/number.rst:67 ../../c-api/number.rst:75
402396
#: ../../c-api/number.rst:97 ../../c-api/number.rst:195
403397
#: ../../c-api/number.rst:241 ../../c-api/number.rst:249
404398
msgid "built-in function"
405-
msgstr ""
399+
msgstr "내장 함수"
406400

407401
#: ../../c-api/number.rst:67
408402
msgid "divmod"
409-
msgstr ""
403+
msgstr "divmod"
410404

411405
#: ../../c-api/number.rst:75 ../../c-api/number.rst:195
412406
msgid "pow"
413-
msgstr ""
407+
msgstr "pow"
414408

415409
#: ../../c-api/number.rst:97
416410
msgid "abs"
417-
msgstr ""
411+
msgstr "abs"
418412

419413
#: ../../c-api/number.rst:241
420414
msgid "int"
421-
msgstr ""
415+
msgstr "int"
422416

423417
#: ../../c-api/number.rst:249
424418
msgid "float"
425-
msgstr ""
426-
427-
#~ msgid ""
428-
#~ "Return the floor of *o1* divided "
429-
#~ "by *o2*, or ``NULL`` on failure. "
430-
#~ "This is equivalent to the \"classic\""
431-
#~ " division of integers."
432-
#~ msgstr ""
433-
#~ "*o1*\\을 *o2*\\로 나눈 결과나, 실패 시 "
434-
#~ "``NULL``\\을 반환합니다. 이것은 \"고전적인\" 정수 나눗셈과"
435-
#~ " 동등합니다."
419+
msgstr "float"
436420

0 commit comments

Comments
 (0)