Skip to content

Commit 1f1e5ce

Browse files
committed
#1032 - remove fuzzy flags
1 parent 7bb72a5 commit 1f1e5ce

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

extending/windows.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ msgid "A Cookbook Approach"
6161
msgstr "요리책 접근법"
6262

6363
#: ../../extending/windows.rst:36
64-
#, fuzzy
6564
msgid ""
6665
"There are two approaches to building extension modules on Windows, just "
6766
"as there are on Unix: use the ``setuptools`` package to control the build"
@@ -72,9 +71,9 @@ msgid ""
7271
"study the project file for the :source:`winsound "
7372
"<PCbuild/winsound.vcxproj>` standard library module."
7473
msgstr ""
75-
"유닉스에서처럼, 윈도우에서 확장 모듈을 빌드하는 두 가지 접근법이 있습니다: :mod:`distutils` 패키지를 사용하여 빌드 "
76-
"프로세스를 제어하거나 수동으로 작업합니다. distutils 접근법은 대부분 확장에서 잘 작동합니다; "
77-
":mod:`distutils`\\를 사용하여 확장 모듈을 빌드하고 패키징하는 방법에 대한 설명은 :ref:`distutils-"
74+
"유닉스에서처럼, 윈도우에서 확장 모듈을 빌드하는 두 가지 접근법이 있습니다: ``setuptools`` 패키지를 사용하여 빌드 "
75+
"프로세스를 제어하거나 수동으로 작업합니다. setuptools 접근법은 대부분 확장에서 잘 작동합니다; "
76+
"``setuptools``\\를 사용하여 확장 모듈을 빌드하고 패키징하는 방법에 대한 설명은 :ref:`setuptools-"
7877
"index`\\에 있습니다. 수동으로 작업할 수밖에 없다면, :source:`winsound "
7978
"<PCbuild/winsound.vcxproj>` 표준 라이브러리 모듈의 프로젝트 파일을 연구하는 것이 도움이 될 겁니다."
8079

@@ -185,13 +184,12 @@ msgid "Using DLLs in Practice"
185184
msgstr "DLL을 실제로 사용하기"
186185

187186
#: ../../extending/windows.rst:108
188-
#, fuzzy
189187
msgid ""
190188
"Windows Python is built in Microsoft Visual C++; using other compilers "
191189
"may or may not work. The rest of this section is MSVC++ specific."
192190
msgstr ""
193191
"윈도우 파이썬은 Microsoft Visual C++로 빌드되었습니다; 다른 컴파일러를 사용하는 것은 동작할 수도 있고 그렇지 않을"
194-
" 수도 있습니다 (볼랜드는 되는 것 같지만). 이 섹션의 나머지 부분은 MSVC++에만 해당합니다."
192+
" 수도 있습니다. 이 섹션의 나머지 부분은 MSVC++에만 해당합니다."
195193

196194
#: ../../extending/windows.rst:111
197195
msgid ""
@@ -207,6 +205,8 @@ msgid ""
207205
"cl /LD /I/python/include spam.c ../libs/pythonXY.lib\n"
208206
"cl /LD /I/python/include ni.c spam.lib ../libs/pythonXY.lib"
209207
msgstr ""
208+
"cl /LD /I/python/include spam.c ../libs/pythonXY.lib\n"
209+
"cl /LD /I/python/include ni.c spam.lib ../libs/pythonXY.lib"
210210

211211
#: ../../extending/windows.rst:118
212212
msgid ""
@@ -242,7 +242,7 @@ msgstr ""
242242
"*NiGetSpamData(void)``\\처럼 ``_declspec(dllexport)``\\라고 선언해야 합니다."
243243

244244
#: ../../extending/windows.rst:132
245-
#, fuzzy, python-brace-format
245+
#, python-brace-format
246246
msgid ""
247247
"Developer Studio will throw in a lot of import libraries that you do not "
248248
"really need, adding about 100K to your executable. To get rid of them, "
@@ -252,5 +252,5 @@ msgid ""
252252
msgstr ""
253253
"Developer Studio는 실제로 필요하지 않은 많은 임포트 라이브러리를 던져넣어서 실행 파일에 약 100K를 추가합니다. "
254254
"이것들을 제거하려면, 프로젝트 설정 대화 상자를 통해 *ignore default libraries*\\를 지정하십시오. 올바른 "
255-
":file:`msvcrtxx.lib`\\를 라이브러리 목록에 추가하십시오."
255+
":file:`msvcrt{xx}.lib`\\를 라이브러리 목록에 추가하십시오."
256256

0 commit comments

Comments
 (0)