@@ -18,9 +18,8 @@ msgstr ""
18
18
"Generated-By : Babel 2.17.0\n "
19
19
20
20
#: ../../library/winsound.rst:2
21
- #, fuzzy
22
21
msgid ":mod:`!winsound` --- Sound-playing interface for Windows"
23
- msgstr ":mod:`winsound` --- 윈도우용 소리 재생 인터페이스"
22
+ msgstr ":mod:`! winsound` --- 윈도우용 소리 재생 인터페이스"
24
23
25
24
#: ../../library/winsound.rst:13
26
25
msgid ""
@@ -44,7 +43,6 @@ msgstr ""
44
43
"울리지 못하면, :exc:`RuntimeError`\\ 가 발생합니다."
45
44
46
45
#: ../../library/winsound.rst:27
47
- #, fuzzy
48
46
msgid ""
49
47
"Call the underlying :c:func:`!PlaySound` function from the Platform API."
50
48
" The *sound* parameter may be a filename, a system sound alias, audio "
@@ -54,14 +52,13 @@ msgid ""
54
52
"any currently playing waveform sound is stopped. If the system indicates "
55
53
"an error, :exc:`RuntimeError` is raised."
56
54
msgstr ""
57
- "플랫폼 API에서 하부 :c:func:`PlaySound` 함수를 호출합니다. *sound* 매개 변수는 파일명, 시스템 소리 "
55
+ "플랫폼 API에서 하부 :c:func:`! PlaySound` 함수를 호출합니다. *sound* 매개 변수는 파일명, 시스템 소리 "
58
56
"별칭, :term:`바이트열류 객체 <bytes-like object>`\\ 의 오디오 데이터 또는 ``None`` 일 수 있습니다."
59
57
" 해석은 *flags*\\ 의 값에 따라 달라지는데, 아래에 설명된 상수의 비트별 OR 결합이 될 수 있습니다. *sound* 매개 "
60
58
"변수가 ``None``\\ 이면, 현재 재생 중인 파형 소리가 중지됩니다. 시스템이 에러를 표시하면 "
61
59
":exc:`RuntimeError`\\ 가 발생합니다."
62
60
63
61
#: ../../library/winsound.rst:38
64
- #, fuzzy
65
62
msgid ""
66
63
"Call the underlying :c:func:`!MessageBeep` function from the Platform "
67
64
"API. This plays a sound as specified in the registry. The *type* "
@@ -72,7 +69,7 @@ msgid ""
72
69
"cannot be played otherwise. If the system indicates an error, "
73
70
":exc:`RuntimeError` is raised."
74
71
msgstr ""
75
- "플랫폼 API에서 하부 :c:func:`MessageBeep` 함수를 호출합니다. 레지스트리에 지정된 소리를 재생합니다. "
72
+ "플랫폼 API에서 하부 :c:func:`! MessageBeep` 함수를 호출합니다. 레지스트리에 지정된 소리를 재생합니다. "
76
73
"*type* 인자는 재생할 소리를 지정합니다; 가능한 값은 아래에 설명된 ``-1``, ``MB_ICONASTERISK``, "
77
74
"``MB_ICONEXCLAMATION``, ``MB_ICONHAND``, ``MB_ICONQUESTION`` 및 "
78
75
"``MB_OK``\\ 입니다. ``-1`` 값은 \" 간단한 신호음\" 을 생성합니다; 이것은 소리를 재생할 수 없을 때 최종 대체가 "
@@ -164,6 +161,13 @@ msgid ""
164
161
"# \" *\" probably isn't the registered name of any sound).\n"
165
162
"winsound.PlaySound(\" *\" , winsound.SND_ALIAS)"
166
163
msgstr ""
164
+ "import winsound\n"
165
+ "# 윈도우 종료 소리를 재생합니다.\n"
166
+ "winsound.PlaySound(\" SystemExit\" , winsound.SND_ALIAS)\n"
167
+ "\n"
168
+ "# 아마도 (등록되어 있다면) 윈도우 기본 소리를 재생합니다 (아마도 \" *\" 는 등록 된 소리\n"
169
+ "# 이름이 아닐 것이기 때문입니다).\n"
170
+ "winsound.PlaySound(\" *\" , winsound.SND_ALIAS)"
167
171
168
172
#: ../../library/winsound.rst:90
169
173
msgid ""
0 commit comments