Skip to content

Commit 328156f

Browse files
committed
#749 - remove fuzzy flags
1 parent 8b98a12 commit 328156f

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

library/winsound.po

+10-6
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ msgstr ""
1818
"Generated-By: Babel 2.17.0\n"
1919

2020
#: ../../library/winsound.rst:2
21-
#, fuzzy
2221
msgid ":mod:`!winsound` --- Sound-playing interface for Windows"
23-
msgstr ":mod:`winsound` --- 윈도우용 소리 재생 인터페이스"
22+
msgstr ":mod:`!winsound` --- 윈도우용 소리 재생 인터페이스"
2423

2524
#: ../../library/winsound.rst:13
2625
msgid ""
@@ -44,7 +43,6 @@ msgstr ""
4443
"울리지 못하면, :exc:`RuntimeError`\\가 발생합니다."
4544

4645
#: ../../library/winsound.rst:27
47-
#, fuzzy
4846
msgid ""
4947
"Call the underlying :c:func:`!PlaySound` function from the Platform API."
5048
" The *sound* parameter may be a filename, a system sound alias, audio "
@@ -54,14 +52,13 @@ msgid ""
5452
"any currently playing waveform sound is stopped. If the system indicates "
5553
"an error, :exc:`RuntimeError` is raised."
5654
msgstr ""
57-
"플랫폼 API에서 하부 :c:func:`PlaySound` 함수를 호출합니다. *sound* 매개 변수는 파일명, 시스템 소리 "
55+
"플랫폼 API에서 하부 :c:func:`!PlaySound` 함수를 호출합니다. *sound* 매개 변수는 파일명, 시스템 소리 "
5856
"별칭, :term:`바이트열류 객체 <bytes-like object>`\\의 오디오 데이터 또는 ``None`` 일 수 있습니다."
5957
" 해석은 *flags*\\의 값에 따라 달라지는데, 아래에 설명된 상수의 비트별 OR 결합이 될 수 있습니다. *sound* 매개 "
6058
"변수가 ``None``\\이면, 현재 재생 중인 파형 소리가 중지됩니다. 시스템이 에러를 표시하면 "
6159
":exc:`RuntimeError`\\가 발생합니다."
6260

6361
#: ../../library/winsound.rst:38
64-
#, fuzzy
6562
msgid ""
6663
"Call the underlying :c:func:`!MessageBeep` function from the Platform "
6764
"API. This plays a sound as specified in the registry. The *type* "
@@ -72,7 +69,7 @@ msgid ""
7269
"cannot be played otherwise. If the system indicates an error, "
7370
":exc:`RuntimeError` is raised."
7471
msgstr ""
75-
"플랫폼 API에서 하부 :c:func:`MessageBeep` 함수를 호출합니다. 레지스트리에 지정된 소리를 재생합니다. "
72+
"플랫폼 API에서 하부 :c:func:`!MessageBeep` 함수를 호출합니다. 레지스트리에 지정된 소리를 재생합니다. "
7673
"*type* 인자는 재생할 소리를 지정합니다; 가능한 값은 아래에 설명된 ``-1``, ``MB_ICONASTERISK``, "
7774
"``MB_ICONEXCLAMATION``, ``MB_ICONHAND``, ``MB_ICONQUESTION`` 및 "
7875
"``MB_OK``\\입니다. ``-1`` 값은 \"간단한 신호음\"을 생성합니다; 이것은 소리를 재생할 수 없을 때 최종 대체가 "
@@ -164,6 +161,13 @@ msgid ""
164161
"# \"*\" probably isn't the registered name of any sound).\n"
165162
"winsound.PlaySound(\"*\", winsound.SND_ALIAS)"
166163
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)"
167171

168172
#: ../../library/winsound.rst:90
169173
msgid ""

0 commit comments

Comments
 (0)