Skip to content

Commit 5f9927a

Browse files
committed
Translate pdb.po
- complete 20 percent
1 parent bf80ef1 commit 5f9927a

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

library/pdb.po

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,25 +46,33 @@ msgid ""
4646
"reading the source. The extension interface uses the modules :mod:`bdb` "
4747
"and :mod:`cmd`."
4848
msgstr ""
49+
"이 디버거는 확장이 가능합니다. 디버거는 실제로 :class:`Pdb`\\로 정의됩니다. "
50+
"현재 문서화되어 있진 않지만 소스를 읽어보시면 쉽게 이해하실 수 있습니다. "
51+
"확장 인터페이스는 :mod:`bdb`\\와 :mod:`cmd`\\모듈을 활용합니다."
4952

5053
#: ../Doc/library/pdb.rst:30
5154
msgid ""
5255
"The debugger's prompt is ``(Pdb)``. Typical usage to run a program under "
5356
"control of the debugger is::"
5457
msgstr ""
58+
"디버거 프롬프트는 ``(Pdb)``\\입니다. "
59+
"디버거 제어하에 프로그램을 실행하는 일반적인 사용법은 다음과 같습니다::"
5560

5661
#: ../Doc/library/pdb.rst:44
5762
msgid ""
5863
"Tab-completion via the :mod:`readline` module is available for commands "
5964
"and command arguments, e.g. the current global and local names are "
6065
"offered as arguments of the ``p`` command."
6166
msgstr ""
67+
":mod:`readline`\\모듈을 통한 탭 완성은 명령과 명령 인자에 사용할 수 있습니다. "
68+
"예를 들면, 현재 전역 및 지역 이름들은 ``p``\\명령의 인자로 제공됩니다."
6269

6370
#: ../Doc/library/pdb.rst:49
6471
msgid ""
6572
":file:`pdb.py` can also be invoked as a script to debug other scripts. "
6673
"For example::"
6774
msgstr ""
75+
":file:`pdb.py`\\는 다른 스크립트를 디버그하기 위한 스크립트로 호출될 수 있습니다. 예를 들면::"
6876

6977
#: ../Doc/library/pdb.rst:54
7078
msgid ""
@@ -75,48 +83,62 @@ msgid ""
7583
"breakpoints) and in most cases is more useful than quitting the debugger "
7684
"upon program's exit."
7785
msgstr ""
86+
"스크립트로 호출하는 경우, 디버깅 중인 프로그램이 비정상적으로 종료되면 pdb는 자동으로 포스트 모템(post-mortem) "
87+
"디버깅을 시작합니다. 포스트 모템 디버깅이 끝나면(또는 프로그램이 정상적으로 종료되면), pdb는 프로그램을 재시작합니다. "
88+
"자동 재시작은 중단점과 같은 pdb의 상태를 유지하고 대부분의 경우 프로그램 종료시 디버거를 종료하는 것보다 유용합니다."
7889

7990
#: ../Doc/library/pdb.rst:60
8091
msgid ""
8192
":file:`pdb.py` now accepts a ``-c`` option that executes commands as if "
8293
"given in a :file:`.pdbrc` file, see :ref:`debugger-commands`."
8394
msgstr ""
95+
":file:`pdb.py`\\는 이제 :file:`.pdbrc`\\파일에 주어진 것처럼 명령을 실행하는 ``-c``\\옵션을 받을 수 있습니다. "
96+
":ref:`debugger-commands`\\를 확인해보세요."
8497

8598
#: ../Doc/library/pdb.rst:64
8699
msgid ""
87100
":file:`pdb.py` now accepts a ``-m`` option that execute modules similar "
88101
"to the way ``python3 -m`` does. As with a script, the debugger will pause"
89102
" execution just before the first line of the module."
90103
msgstr ""
104+
":file:`pdb.py`\\는 이제 ``python3 -m``\\과 비슷한 모듈을 실행하는 ``-m``\\옵션을 받을 수 있습니다. "
105+
"스크립트와 마찬가지로 디버거는 모듈의 첫번째 줄 바로 전에 실행을 일시정지합니다."
91106

92107
#: ../Doc/library/pdb.rst:70
93108
msgid ""
94109
"The typical usage to break into the debugger from a running program is to"
95110
" insert ::"
96111
msgstr ""
112+
"실행중인 프로그램에서 디버거로 진입하는 일반적인 사용법은::"
97113

98114
#: ../Doc/library/pdb.rst:75
99115
msgid ""
100116
"at the location you want to break into the debugger. You can then step "
101117
"through the code following this statement, and continue running without "
102118
"the debugger using the :pdbcmd:`continue` command."
103119
msgstr ""
120+
"위 코드를 디버거로 진입하고 싶은 구간에 추가하면 됩니다. "
121+
"그런 다음 이 문장을 따라 코드를 단계별로 실행하고 :pdbcmd:`continue`\\명령을 사용하여 디버거없이 "
122+
"프로그램을 계속 실행할 수 있습니다."
104123

105124
#: ../Doc/library/pdb.rst:79
106125
msgid ""
107126
"The built-in :func:`breakpoint()`, when called with defaults, can be used"
108127
" instead of ``import pdb; pdb.set_trace()``."
109128
msgstr ""
129+
"내장 :func:`breakpoint()`\\가 기본값으로 호출될 때는 ``import pdb; pdb.set_trace()``\\를 대신해서 사용할 수 있습니다."
110130

111131
#: ../Doc/library/pdb.rst:83
112132
msgid "The typical usage to inspect a crashed program is::"
113133
msgstr ""
134+
"에러가 발생하는 프로그램을 검사하는 일반적인 사용법은 다음과 같습니다."
114135

115136
#: ../Doc/library/pdb.rst:101
116137
msgid ""
117138
"The module defines the following functions; each enters the debugger in a"
118139
" slightly different way:"
119140
msgstr ""
141+
"이 모듈은 다음과 같은 함수를 정의합니다. 각 함수는 조금 다른 방식으로 디버거로 진입합니다."
120142

121143
#: ../Doc/library/pdb.rst:106
122144
msgid ""

0 commit comments

Comments
 (0)