@@ -9,12 +9,12 @@ msgstr ""
99"Report-Msgid-Bugs-To : \n "
1010"POT-Creation-Date : 2025-10-11 20:40+0000\n "
1111"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
12- "Last-Translator : Dong-gweon Oh <flowdas @gmail.com>\n "
12+ "Last-Translator : Mir Jung <ham4051 @gmail.com>\n "
1313"Language-Team : Korean (https://python.flowdas.com)\n "
1414"MIME-Version : 1.0\n "
1515"Content-Type : text/plain; charset=utf-8\n "
1616"Content-Transfer-Encoding : 8bit\n "
17- "Generated-By : Babel 2.17 .0\n "
17+ "Generated-By : Babel 2.18 .0\n "
1818
1919#: ../../extending/windows.rst:8
2020msgid "Building C and C++ Extensions on Windows"
@@ -183,7 +183,7 @@ msgstr ""
183183msgid ""
184184"Turn off the implicit, ``#pragma``-based linkage with the Python library,"
185185" performed inside CPython header files."
186- msgstr ""
186+ msgstr "CPython 헤더 파일 내부에서 수행되는 ``#pragma`` 기반의 묵시적인 Python 라이브러리 링크를 비활성화합니다. "
187187
188188#: ../../extending/windows.rst:110
189189msgid "Using DLLs in Practice"
@@ -201,7 +201,7 @@ msgstr ""
201201msgid ""
202202"When creating DLLs in Windows, you can use the CPython library in two "
203203"ways:"
204- msgstr ""
204+ msgstr "윈도우에서 DLL을 만들 때, CPython 라이브러리를 두 가지 방법으로 사용할 수 있습니다: "
205205
206206#: ../../extending/windows.rst:120
207207msgid ""
@@ -212,63 +212,65 @@ msgid ""
212212"with the :ref:`Limited API <stable-application-binary-interface>` "
213213"enabled."
214214msgstr ""
215+ "기본적으로, :file:`PC/pyconfig.h`\\ 를 직접 포함하거나 :file:`Python.h`\\ 를 통해 포함하면 구성 "
216+ "정보를 인식하는 라이브러리와의 묵시적인 링크가 트리거됩니다. 헤더 파일은 Debug 빌드에는 "
217+ ":file:`pythonXY_d.lib`\\ 를, Release 빌드에는 :file:`pythonXY.lib`\\ 를, "
218+ ":ref:`제한된 API <stable-application-binary-interface>`\\ 가 활성화된 Release 빌드에는"
219+ " :file:`pythonX.lib`\\ 를 선택합니다."
215220
216221#: ../../extending/windows.rst:126 ../../extending/windows.rst:144
217- #, fuzzy
218222msgid ""
219223"To build two DLLs, spam and ni (which uses C functions found in spam), "
220224"you could use these commands::"
221- msgstr ""
222- "윈도우에서 DLL을 만들 때, :file:`pythonXY.lib`\\ 를 링커에 전달해야 합니다. 두 개의 DLL, spam과 "
223- "(spam에 있는 C 함수를 사용하는) ni를 빌드하려면, 다음 명령을 사용할 수 있습니다::"
225+ msgstr "두 개의 DLL, spam과 ni를 (spam에 있는 C 함수를 사용하는) 빌드하려면, 다음 명령을 사용할 수 있습니다::"
224226
225227#: ../../extending/windows.rst:129
226- #, fuzzy
227228msgid ""
228229"cl /LD /I/python/include spam.c\n"
229230"cl /LD /I/python/include ni.c spam.lib"
230231msgstr ""
231- "cl /LD /I/python/include spam.c ../libs/pythonXY.lib \n"
232- "cl /LD /I/python/include ni.c spam.lib ../libs/pythonXY.lib "
232+ "cl /LD /I/python/include spam.c\n"
233+ "cl /LD /I/python/include ni.c spam.lib"
233234
234235#: ../../extending/windows.rst:132
235- #, fuzzy
236236msgid ""
237237"The first command created three files: :file:`spam.obj`, :file:`spam.dll`"
238238" and :file:`spam.lib`. :file:`Spam.dll` does not contain any Python "
239239"functions (such as :c:func:`PyArg_ParseTuple`), but it does know how to "
240240"find the Python code thanks to the implicitly linked "
241241":file:`pythonXY.lib`."
242242msgstr ""
243- "첫 번째 명령은 세 개의 파일을 만들었습니다 : :file:`spam.obj`, :file:`spam.dll` 및 "
243+ "첫 번째 명령은 세 개의 파일을 생성했습니다 : :file:`spam.obj`, :file:`spam.dll` 및 "
244244":file:`spam.lib`. :file:`Spam.dll`\\ 은 파이썬 함수(가령 "
245- ":c:func:`PyArg_ParseTuple`)를 포함하지 않지만, :file:`pythonXY.lib` 덕분에 파이썬 코드를 "
246- "찾는 방법을 알고 있습니다."
245+ ":c:func:`PyArg_ParseTuple`)를 포함하지 않지만, :file:`pythonXY.lib`\\ 에 묵시적으로 연결된 "
246+ "덕분에 파이썬 코드를 찾는 방법을 알고 있습니다."
247247
248248#: ../../extending/windows.rst:137 ../../extending/windows.rst:155
249249msgid ""
250250"The second command created :file:`ni.dll` (and :file:`.obj` and "
251251":file:`.lib`), which knows how to find the necessary functions from spam,"
252252" and also from the Python executable."
253253msgstr ""
254- "두 번째 명령은 :file:`ni.dll`\\ (그리고 :file:`.obj`\\ 와 :file:`.lib`)을 만들었습니다 . "
254+ "두 번째 명령은 :file:`ni.dll`\\ (그리고 :file:`.obj`\\ 와 :file:`.lib`)을 생성했습니다 . "
255255"spam과 파이썬 실행 파일에서 필요한 함수를 찾는 방법을 알고 있습니다."
256256
257257#: ../../extending/windows.rst:141
258258msgid ""
259259"Manually by defining :c:macro:`Py_NO_LINK_LIB` macro before including "
260260":file:`Python.h`. You must pass :file:`pythonXY.lib` to the linker."
261261msgstr ""
262+ ":file:`Python.h`\\ 을 포함하기 전에 :c:macro:`Py_NO_LINK_LIB` 매크로를 정의하여 수동으로 "
263+ "설정합니다. 링커에 :file:`pythonXY.lib`\\ 를 전달해야 합니다."
262264
263265#: ../../extending/windows.rst:147
264- #, fuzzy
265266msgid ""
266267"cl /LD /DPy_NO_LINK_LIB /I/python/include spam.c ../libs/pythonXY.lib\n"
267268"cl /LD /DPy_NO_LINK_LIB /I/python/include ni.c spam.lib "
268269"../libs/pythonXY.lib"
269270msgstr ""
270- "cl /LD /I/python/include spam.c ../libs/pythonXY.lib\n"
271- "cl /LD /I/python/include ni.c spam.lib ../libs/pythonXY.lib"
271+ "cl /LD /DPy_NO_LINK_LIB /I/python/include spam.c ../libs/pythonXY.lib\n"
272+ "cl /LD /DPy_NO_LINK_LIB /I/python/include ni.c spam.lib "
273+ "../libs/pythonXY.lib"
272274
273275#: ../../extending/windows.rst:150
274276msgid ""
0 commit comments