Skip to content

Commit 0b5e7dd

Browse files
committed
#1081 - remove fuzzy flags
1 parent 1006299 commit 0b5e7dd

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

‎c-api/conversion.po

+9-13
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ msgstr ""
5454
"함수가 제공하지 않는 수준의 일관된 동작을 보장하는 것입니다."
5555

5656
#: ../../c-api/conversion.rst:28
57-
#, fuzzy
5857
msgid ""
5958
"The wrappers ensure that ``str[size-1]`` is always ``'\\0'`` upon return."
6059
" They never write more than *size* bytes (including the trailing "
@@ -64,8 +63,9 @@ msgid ""
6463
"would determine the necessary buffer size."
6564
msgstr ""
6665
"래퍼는 반환 시 ``str[size-1]``\\이 항상 ``'\\0'``\\이 되도록 합니다. str에 *size* 바이트(후행 "
67-
"``'\\0'`` 포함)를 초과해서 쓰지 않습니다. 두 함수 모두 ``str != NULL``, ``size > 0`` 및 "
68-
"``format != NULL``\\을 요구합니다."
66+
"``'\\0'`` 포함)를 초과해서 쓰지 않습니다. 두 함수 모두 ``str != NULL``, ``size > 0``, "
67+
"``format != NULL`` 및 ``size < INT_MAX``\\를 요구합니다. 이는 필요한 버퍼 크기를 결정하는 C99 "
68+
"``n = snprintf(NULL, 0, ...)``\\에 해당하는 것이 없다는 뜻임에 유의하십시오."
6969

7070
#: ../../c-api/conversion.rst:34
7171
msgid ""
@@ -152,15 +152,14 @@ msgid "See also the Unix man page :manpage:`strtol(3)`."
152152
msgstr ""
153153

154154
#: ../../c-api/conversion.rst:89
155-
#, fuzzy
156155
msgid ""
157156
"Convert a string ``s`` to a :c:expr:`double`, raising a Python exception "
158157
"on failure. The set of accepted strings corresponds to the set of "
159158
"strings accepted by Python's :func:`float` constructor, except that ``s``"
160159
" must not have leading or trailing whitespace. The conversion is "
161160
"independent of the current locale."
162161
msgstr ""
163-
"문자열 ``s``\\를 :c:type:`double`\\로 변환하고, 실패 시 파이썬 예외를 발생시킵니다. 허용되는 문자열 집합은 "
162+
"문자열 ``s``\\를 :c:expr:`double`\\로 변환하고, 실패 시 파이썬 예외를 발생시킵니다. 허용되는 문자열 집합은 "
164163
"``s``\\가 선행이나 후행 공백을 가질 수 없다는 점을 제외하고는 파이썬의 :func:`float` 생성자가 허용하는 문자열 "
165164
"집합에 대응합니다. 변환은 현재 로케일과 독립적입니다."
166165

@@ -208,12 +207,11 @@ msgid ""
208207
msgstr "변환 중 다른 에러가 발생하면 (예를 들어 메모리 부족 에러), 적절한 파이썬 예외를 설정하고 ``-1.0``\\을 반환합니다."
209208

210209
#: ../../c-api/conversion.rst:123
211-
#, fuzzy
212210
msgid ""
213211
"Convert a :c:expr:`double` *val* to a string using supplied "
214212
"*format_code*, *precision*, and *flags*."
215213
msgstr ""
216-
"제공된 *format_code*, *precision* 및 *flags*\\를 사용하여 :c:type:`double` "
214+
"제공된 *format_code*, *precision* 및 *flags*\\를 사용하여 :c:expr:`double` "
217215
"*val*\\을 문자열로 변환합니다."
218216

219217
#: ../../c-api/conversion.rst:126
@@ -277,22 +275,20 @@ msgstr ""
277275
":c:func:`PyMem_Free`\\를 호출하여 반환된 문자열을 해제해야 합니다."
278276

279277
#: ../../c-api/conversion.rst:157
280-
#, fuzzy
281278
msgid ""
282279
"Case insensitive comparison of strings. The function works almost "
283280
"identically to :c:func:`!strcmp` except that it ignores the case."
284281
msgstr ""
285-
"대소 문자 구분 없는 문자열 비교. 이 함수는 대소 문자를 무시한다는 점만 제외하면 :c:func:`strcmp`\\와 거의 같게 "
286-
"작동합니다."
282+
"대소 문자 구분 없는 문자열 비교. 이 함수는 대소 문자를 무시한다는 점만 제외하면 :c:func:`!strcmp`\\와 거의 같게"
283+
" 작동합니다."
287284

288285
#: ../../c-api/conversion.rst:163
289-
#, fuzzy
290286
msgid ""
291287
"Case insensitive comparison of strings. The function works almost "
292288
"identically to :c:func:`!strncmp` except that it ignores the case."
293289
msgstr ""
294-
"대소 문자 구분 없는 문자열 비교. 이 함수는 대소 문자를 무시한다는 점만 제외하면 :c:func:`strncmp`\\와 거의 같게"
295-
" 작동합니다."
290+
"대소 문자 구분 없는 문자열 비교. 이 함수는 대소 문자를 무시한다는 점만 제외하면 :c:func:`!strncmp`\\와 거의 "
291+
"같게 작동합니다."
296292

297293
#~ msgid ""
298294
#~ "If the platform doesn't have "

0 commit comments

Comments
 (0)