Skip to content

Commit 3f6f72d

Browse files
committed
fix inconsistent term references
1 parent f19bdce commit 3f6f72d

10 files changed

Lines changed: 40 additions & 42 deletions

File tree

glossary.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,9 +2226,9 @@ msgid ""
22262226
"<argument>`. This is the default kind of parameter, for example *foo* "
22272227
"and *bar* in the following::"
22282228
msgstr ""
2229-
":dfn:`위치-키워드 (positional-or-keyword)`: :term:`위치 인자 <positional "
2230-
"argument>` 나 :term:`키워드 인자 <keyword argument>` 로 전달될 수 있는 인자를 지정합니다. 이것이 "
2231-
"기본 형태의 매개변수입니다, 예를 들어 다음에서 *foo* 와 *bar*::"
2229+
":dfn:`위치-키워드 (positional-or-keyword)`: :term:`위치 <argument>` 나 :term:`키워드"
2230+
" 인자 <argument>` 로 전달될 수 있는 인자를 지정합니다. 이것이 기본 형태의 매개변수입니다, 예를 들어 다음에서 "
2231+
"*foo* 와 *bar*::"
22322232

22332233
#: ../../glossary.rst:1045
22342234
msgid "def func(foo, bar=None): ..."

library/asyncio-eventloop.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ msgstr ""
753753
msgid ""
754754
"The protocol instance is coupled with the transport by calling its "
755755
":meth:`~BaseProtocol.connection_made` method."
756-
msgstr "프로토콜 인스턴스는 :meth:`connection_made` 메서드를 호출함으로써 트랜스포트와 연결됩니다."
756+
msgstr "프로토콜 인스턴스는 :meth:`~BaseProtocol.connection_made` 메서드를 호출함으로써 트랜스포트와 연결됩니다."
757757

758758
#: ../../library/asyncio-eventloop.rst:482
759759
msgid "A ``(transport, protocol)`` tuple is returned on success."

library/contextlib.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,8 @@ msgid ""
297297
" decorators."
298298
msgstr ""
299299
"데코레이터로 사용될 때, 새로운 제너레이터 인스턴스는 각 함수 호출마다 묵시적으로 만들어집니다. 이는 그렇지 않을 경우 "
300-
":func:`contextmanager`\\에 의해 만들어진 \"일회성\" 컨텍스트 관리자가 데코레이터로 사용하기 위해 컨텍스트 "
301-
"관리자가 여러 번의 호출을 지원해야 한다는 요구 사항을 충족시킬 수 있도록 합니다."
300+
":func:`asynccontextmanager`\\에 의해 만들어진 \"일회성\" 컨텍스트 관리자가 데코레이터로 사용하기 위해 "
301+
"컨텍스트 관리자가 여러 번의 호출을 지원해야 한다는 요구 사항을 충족시킬 수 있도록 합니다."
302302

303303
#: ../../library/contextlib.rst:154
304304
msgid ""

library/ftplib.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ msgid ""
376376
"provide the data to be stored."
377377
msgstr ""
378378
"(바이너리 모드로 열린) 파일 객체이며 저장될 데이터를 제공하기 위해 *blocksize* 크기의 블록으로 "
379-
":meth:`~io.IOBase.read` 메서드를 사용하여 EOF까지 읽힙니다."
379+
":meth:`~io.RawIOBase.read` 메서드를 사용하여 EOF까지 읽힙니다."
380380

381381
#: ../../library/ftplib.rst:298
382382
msgid "The read block size. Defaults to ``8192``."

library/logging.handlers.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,11 @@ msgid ""
279279
"the file grows indefinitely. If *errors* is provided, it determines how "
280280
"encoding errors are handled."
281281
msgstr ""
282-
":class:`FileHandler` 클래스의 새로운 인스턴스를 반환합니다. 지정된 파일이 열리고 로깅을 위한 스트림으로 "
283-
"사용됩니다. *mode* 가 지정되지 않으면, ``'a'`` 가 사용됩니다. *encoding* 이 ``None`` 이 아니면, "
284-
"*encoding*\\을 사용하여 파일을 엽니다. *delay* 가 참이면, 파일 열기는 :meth:`emit`\\의 첫 번째 "
285-
"호출이 있을 때까지 연기됩니다. 기본적으로, 파일은 제한 없이 커집니다. *errors*\\가 제공되면, 인코딩 에러 처리 방법을 "
286-
"결정합니다."
282+
":class:`WatchedFileHandler` 클래스의 새로운 인스턴스를 반환합니다. 지정된 파일이 열리고 로깅을 위한 "
283+
"스트림으로 사용됩니다. *mode* 가 지정되지 않으면, ``'a'`` 가 사용됩니다. *encoding* 이 ``None`` 이 "
284+
"아니면, *encoding*\\을 사용하여 파일을 엽니다. *delay* 가 참이면, 파일 열기는 :meth:`emit`\\의 첫 "
285+
"번째 호출이 있을 때까지 연기됩니다. 기본적으로, 파일은 제한 없이 커집니다. *errors*\\가 제공되면, 인코딩 에러 처리 "
286+
"방법을 결정합니다."
287287

288288
#: ../../library/logging.handlers.rst:199
289289
msgid ""

library/queue.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ msgid ""
172172
"Exception raised when :meth:`~Queue.put` or :meth:`~Queue.get` is called "
173173
"on a :class:`Queue` object which has been shut down."
174174
msgstr ""
175-
":meth:`~Queue.put`\\(또는 :meth:`~Queue.put`)이 종료된 :class:`Queue` 객체에 호출될 때"
176-
" 발생하는 예외."
175+
":meth:`~Queue.put` 이나 :meth:`~Queue.get`\\이 종료된 :class:`Queue` 객체에 호출될 때 "
176+
"발생하는 예외."
177177

178178
#: ../../library/queue.rst:107
179179
msgid "Queue Objects"

library/ssl.po

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2457,7 +2457,7 @@ msgid ""
24572457
"This method will raise :exc:`NotImplementedError` if :data:`HAS_ALPN` is "
24582458
"``False``."
24592459
msgstr ""
2460-
":data:`HAS_NPN`\\이 ``False``\\면, 이 메서드는 :exc:`NotImplementedError`\\를 "
2460+
":data:`HAS_ALPN`\\이 ``False``\\면, 이 메서드는 :exc:`NotImplementedError`\\를 "
24612461
"발생시킵니다."
24622462

24632463
#: ../../library/ssl.rst:1682
@@ -3125,12 +3125,11 @@ msgid ""
31253125
msgstr ""
31263126

31273127
#: ../../library/ssl.rst:2106 ../../library/ssl.rst:2151
3128-
#, fuzzy
31293128
msgid ""
31303129
"This method will raise :exc:`NotImplementedError` if :data:`HAS_PSK` is "
31313130
"``False``."
31323131
msgstr ""
3133-
":data:`HAS_NPN`\\ ``False``\\면, 이 메서드는 :exc:`NotImplementedError`\\를 "
3132+
":data:`HAS_PSK`\\ ``False``\\면, 이 메서드는 :exc:`NotImplementedError`\\를 "
31343133
"발생시킵니다."
31353134

31363135
#: ../../library/ssl.rst:2113

library/unittest.mock.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1640,7 +1640,7 @@ msgid ""
16401640
":class:`MagicMock` otherwise or to *new_callable* if specified."
16411641
msgstr ""
16421642
":func:`patch`\\는 임의의 키워드 인자를 취합니다. 이들은 만들어질 때 패치되는 객체가 비동기이면 "
1643-
":class:`AsyncMock`\\으로, 그렇지 않으면 :class:`Mock`\\으로, 또는 지정되면 "
1643+
":class:`AsyncMock`\\으로, 그렇지 않으면 :class:`MagicMock`\\으로, 또는 지정되면 "
16441644
"*new_callable*\\로 전달됩니다."
16451645

16461646
#: ../../library/unittest.mock.rst:1497

whatsnew/3.13.po

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.13\n"
@@ -17,7 +16,7 @@ msgstr ""
1716
"MIME-Version: 1.0\n"
1817
"Content-Type: text/plain; charset=utf-8\n"
1918
"Content-Transfer-Encoding: 8bit\n"
20-
"Generated-By: Babel 2.18.0\n"
19+
"Generated-By: Babel 2.17.0\n"
2120

2221
#: ../../whatsnew/3.13.rst:4
2322
msgid "What's New In Python 3.13"
@@ -1216,8 +1215,8 @@ msgid ""
12161215
":mod:`dbm.sqlite3`: An SQLite backend for :mod:`dbm`. (Contributed by "
12171216
"Raymond Hettinger and Erlend E. Aasland in :gh:`100414`.)"
12181217
msgstr ""
1219-
":mod:`dbm.sqlite3`: :mod:`dbm`용 SQLite 백엔드입니다. (Raymond Hettinger와 Erlend"
1220-
" E. Aasland가 :gh:`100414`\\를 통해 기능을 구현하였습니다.)"
1218+
":mod:`dbm.sqlite3`: :mod:`dbm`\\용 SQLite 백엔드입니다. (Raymond Hettinger와 "
1219+
"Erlend E. Aasland가 :gh:`100414`\\를 통해 기능을 구현하였습니다.)"
12211220

12221221
#: ../../whatsnew/3.13.rst:613
12231222
msgid "Improved Modules"
@@ -1508,8 +1507,8 @@ msgid ""
15081507
"(Contributed by Victor Stinner in :gh:`109649`.)"
15091508
msgstr ""
15101509
"작업자 스레드와 프로세스의 기본 개수는 이제 :func:`os.cpu_count` 대신 "
1511-
":func:`os.process_cpu_count`를 사용해 결정됩니다. (Victor Stinner가 :gh:`109649`\\"
1512-
" 통해 기능을 구현하였습니다.)"
1510+
":func:`os.process_cpu_count`\\를 사용해 결정됩니다. (Victor Stinner가 "
1511+
":gh:`109649`\\ 통해 기능을 구현하였습니다.)"
15131512

15141513
#: ../../whatsnew/3.13.rst:770
15151514
msgid "concurrent.futures"
@@ -1674,8 +1673,8 @@ msgid ""
16741673
msgstr ""
16751674
":meth:`~dis.get_instructions`\\는 캐시 항목을 별도의 명령어로 더 이상 나타내지 않습니다. 대신, 새 "
16761675
"*cache_info* 필드에 포함된 :class:`~dis.Instruction`\\의 일부로 반환합니다. "
1677-
":meth:`~dis.get_instructions`의 *show_caches* 인자는 더 이상 아무 효과도 없으며 폐지되었습니다."
1678-
" (Irit Katriel가 :gh:`112962`\\를 통해 기능을 구현하였습니다.)"
1676+
":meth:`~dis.get_instructions`\\의 *show_caches* 인자는 더 이상 아무 효과도 없으며 "
1677+
"폐지되었습니다. (Irit Katriel가 :gh:`112962`\\를 통해 기능을 구현하였습니다.)"
16791678

16801679
#: ../../whatsnew/3.13.rst:863
16811680
msgid "doctest"
@@ -1782,7 +1781,7 @@ msgid ""
17821781
"with shell-style wildcards to a regular expression. (Contributed by "
17831782
"Barney Gale in :gh:`72904`.)"
17841783
msgstr ""
1785-
"셸 스타일 와일드카드를 사용하는 경로 지정 문자열을 정규식으로 변환하는 함수인 :func:`~glob.translate`가 "
1784+
"셸 스타일 와일드카드를 사용하는 경로 지정 문자열을 정규식으로 변환하는 함수인 :func:`~glob.translate`\\가 "
17861785
"추가되었습니다. (Barney Gale가 :gh:`72904`\\를 통해 기능을 구현하였습니다.)"
17871786

17881787
#: ../../whatsnew/3.13.rst:924
@@ -2077,8 +2076,8 @@ msgid ""
20772076
"which makes the newly spawned process use the current process "
20782077
"environment. (Contributed by Jakub Kulik in :gh:`113119`.)"
20792078
msgstr ""
2080-
"이제 :func:`~os.posix_spawn`에서 *env* 인자로 `None`\\을 전달할 수 있으며, 이 경우 새로 생성된 "
2081-
"프로세스는 현재 프로세스의 환경을 사용합니다. (Jakub Kulik가 :gh:`113119`\\를 통해 기능을 구현하였습니다.)"
2079+
"이제 :func:`~os.posix_spawn`\\에서 *env* 인자로 `None`\\을 전달할 수 있으며, 이 경우 새로 생성된"
2080+
" 프로세스는 현재 프로세스의 환경을 사용합니다. (Jakub Kulik가 :gh:`113119`\\를 통해 기능을 구현하였습니다.)"
20822081

20832082
#: ../../whatsnew/3.13.rst:1081
20842083
msgid ""
@@ -2924,7 +2923,7 @@ msgid ""
29242923
"``POST`` and ``PUT`` requests."
29252924
msgstr ""
29262925
":class:`!cgi.FieldStorage`\\는 통상 `GET` 및 `HEAD` 요청에서는 "
2927-
":func:`urllib.parse.parse_qsl`로 대체할 수 있고, `POST` 및 `PUT` 요청에서는 "
2926+
":func:`urllib.parse.parse_qsl`\\로 대체할 수 있고, `POST` 및 `PUT` 요청에서는 "
29282927
":mod:`email.message` 모듈이나 :pypi:`multipart` 라이브러리를 사용하면 대체할 수 있습니다."
29292928

29302929
#: ../../whatsnew/3.13.rst:1539
@@ -3619,8 +3618,8 @@ msgid ""
36193618
"instead. (Contributed by Serhiy Storchaka in :gh:`66543`.)"
36203619
msgstr ""
36213620
"파일 경로 인수를 받는 :func:`~mimetypes.guess_type` 호출은 :term:`약하게 폐지된 <soft "
3622-
"deprecated>` 것으로 처리되었습니다. 대신 :func:`~mimetypes.guess_file_type`을 사용해주시기를 "
3623-
"부탁드립니다. (Serhiy Storchaka가 :gh:`66543`\\를 통해 기능을 구현하였습니다.)"
3621+
"deprecated>` 것으로 처리되었습니다. 대신 :func:`~mimetypes.guess_file_type`\\ "
3622+
"사용해주시기를 부탁드립니다. (Serhiy Storchaka가 :gh:`66543`\\를 통해 기능을 구현하였습니다.)"
36243623

36253624
#: ../../whatsnew/3.13.rst:1907
36263625
msgid ":mod:`re`:"
@@ -4864,7 +4863,7 @@ msgid ""
48644863
":meth:`~threading.Condition.notify_all`."
48654864
msgstr ""
48664865
":meth:`!threading.Condition.notifyAll`: 대신 "
4867-
":meth:`threading.current_thread`\\ 사용해주시기를 부탁드립니다."
4866+
":meth:`~threading.Condition.notify_all`\\ 사용해주시기를 부탁드립니다."
48684867

48694868
#: ../../deprecations/pending-removal-in-future.rst:116
48704869
msgid ":meth:`!threading.Event.isSet`: use :meth:`~threading.Event.is_set`."
@@ -5016,7 +5015,7 @@ msgid ""
50165015
"needed to optimize closing of generators. (Contributed by Irit Katriel in"
50175016
" :gh:`111354`.)"
50185017
msgstr ""
5019-
":opcode:`YIELD_VALUE`의 oparg는 yield가 yield from이나 await의 일부인 경우에는 "
5018+
":opcode:`YIELD_VALUE`\\의 oparg는 yield가 yield from이나 await의 일부인 경우에는 "
50205019
"``1``\\이 되고, 그렇지 않으면 ``0``\\이 됩니다. :opcode:`RESUME`\\의 oparg에는 예외 깊이"
50215020
"(except-depth)가 1인지 여부를 나타내는 비트가 추가되도록 변경되었으며, 이는 제너레이터를 닫는 처리를 최적화하기 위해 "
50225021
"필요합니다. (Irit Katriel이 :gh:`111354`\\를 통해 기능을 구현하였습니다.)"
@@ -5425,7 +5424,7 @@ msgstr ""
54255424
":c:func:`PyObject_VisitManagedDict` 그리고 "
54265425
":c:func:`PyObject_ClearManagedDict` 함수를 추가하였습니다. 해당하는 함수들은 "
54275426
":c:macro:`Py_TPFLAGS_MANAGED_DICT` 플래그를 사용하는 형의 `traverse` 및 `clear` 함수를 "
5428-
"통해 호출되어야 합니다. `pythoncapi-compat 프로젝트`_\\를 통해 해당하는 함수들을 Python 3.11 및 "
5427+
"통해 호출되어야 합니다. `pythoncapi-compat project`_\\를 통해 해당하는 함수들을 Python 3.11 및 "
54295428
"3.12에서 사용할 수 있습니다. (Victor Stinner가 :gh:`107073`\\를 통해 기능을 구현하였습니다.)"
54305429

54315430
#: ../../whatsnew/3.13.rst:2212
@@ -6141,7 +6140,7 @@ msgstr ""
61416140
"reference>`\\를 반환합니다. 해당하는 함수들은 새 :c:func:`PyWeakref_GetRef` 함수로 대체되어야 "
61426141
"합니다. 해당하는 함수는 :term:`강한 참조 (strong reference) <strong reference>`\\를 "
61436142
"반환합니다. 파이썬 3.12 및 그 이전 버전에서 :c:func:`PyWeakref_GetRef`\\를 사용하기 위해 "
6144-
"`pythoncapi-compat 프로젝트`_\\를 활용할 수 있습니다."
6143+
"`pythoncapi-compat project`_\\를 활용할 수 있습니다."
61456144

61466145
#: ../../deprecations/c-api-pending-removal-in-3.14.rst:4
61476146
msgid ""
@@ -6915,7 +6914,7 @@ msgid ""
69156914
"The bundled mimalloc has custom changes, see :gh:`113141` for details. "
69166915
"(Contributed by Dino Viehland in :gh:`109914`.)"
69176916
msgstr ""
6918-
"CPython은 이제 기본적으로 `mimalloc 라이브러리`_\\를 함께 제공합니다. 해당하는 라이브러리는 MIT 라이센스로 "
6917+
"CPython은 이제 기본적으로 `mimalloc library`_\\를 함께 제공합니다. 해당하는 라이브러리는 MIT 라이센스로 "
69196918
"배포됩니다. 보다 자세한 내용은 :ref:`mimalloc 라이센스 <mimalloc-license>`\\을 참고 부탁드립니다. "
69206919
"mimalloc 번들에는 사용자에 의한 변경 사항이 있을 수 있습니다. 보다 자세한 내용은 :gh:`113141`\\을 참고 "
69216920
"부탁드립니다."
@@ -7417,8 +7416,8 @@ msgid ""
74177416
"The `pythoncapi-compat project`_ can be used to get most of these new "
74187417
"functions on Python 3.12 and older."
74197418
msgstr ""
7420-
"파이썬 3.12 및 상위 버전에서 `pythoncapi-compat 프로젝트`_\\를 통해 해당하는 새로운 함수 대부분을 사용할 "
7421-
"수 있습니다."
7419+
"파이썬 3.12 및 상위 버전에서 `pythoncapi-compat project`_\\를 통해 해당하는 새로운 함수 대부분을 "
7420+
"사용할 수 있습니다."
74227421

74237422
#: ../../whatsnew/3.13.rst:2809
74247423
msgid "Regression Test Changes"

whatsnew/3.9.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2777,9 +2777,9 @@ msgstr ""
27772777
"확장 모듈: 모듈 상태가 요청되었지만, 아직 할당되지 않았으면 :c:type:`PyModuleDef`\\의 "
27782778
":c:member:`~PyModuleDef.m_traverse`, :c:member:`~PyModuleDef.m_clear` 및 "
27792779
":c:member:`~PyModuleDef.m_free` 함수가 더는 호출되지 않습니다. 이것은 모듈이 만들이진 직후, 모듈이 "
2780-
"실행되기 직전의 경우입니다 (:c:data:`Py_mod_exec` 함수). 더 정확하게는, :c:member:`m_size`\\"
2781-
" 0보다 크고 모듈 상태(:c:func:`PyModule_GetState`\\반환하는)가 ``NULL``\\이면 이 함수가 "
2782-
"호출되지 않습니다."
2780+
"실행되기 직전의 경우입니다 (:c:data:`Py_mod_exec` 함수). 더 정확하게는, "
2781+
":c:member:`~PyModuleDef.m_size`\\0보다 크고 모듈 "
2782+
"상태(:c:func:`PyModule_GetState`\\가 반환하는)가 ``NULL``\\이면 이 함수가 호출되지 않습니다."
27832783

27842784
#: ../../whatsnew/3.9.rst:1349
27852785
msgid "Extension modules without module state (``m_size <= 0``) are not affected."

0 commit comments

Comments
 (0)