@@ -17,107 +17,32 @@ msgstr ""
17
17
"Generated-By : Babel 2.17.0\n "
18
18
19
19
#: ../../library/sndhdr.rst:2
20
- #, fuzzy
21
20
msgid ":mod:`!sndhdr` --- Determine type of sound file"
22
- msgstr ":mod:`sndhdr` --- 음향 파일 유형 판단"
21
+ msgstr ":mod:`! sndhdr` --- 음향 파일 유형 판단"
23
22
24
23
#: ../../library/sndhdr.rst:10
25
24
msgid ""
26
25
"This module is no longer part of the Python standard library. It was "
27
26
":ref:`removed in Python 3.13 <whatsnew313-pep594>` after being deprecated"
28
27
" in Python 3.11. The removal was decided in :pep:`594`."
29
28
msgstr ""
29
+ "이 모듈은 더는 파이썬 표준 라이브러리에 포함되지 않습니다. 파이썬 3.11 에서 폐지된 후 :ref:`파이썬 3.13 에서 제거 "
30
+ "<whatsnew313-pep594>`\\ 되었습니다. 제거는 :pep:`594` 에서 결정되었습니다."
30
31
31
32
#: ../../library/sndhdr.rst:14
32
33
msgid ""
33
34
"Possible replacements are third-party modules from PyPI: "
34
35
":pypi:`filetype`, :pypi:`puremagic`, or :pypi:`python-magic`. These are "
35
36
"not supported or maintained by the Python core team."
36
37
msgstr ""
38
+ "가능한 대체품은 PyPI 에 있는 타사 라이브러리들입니다: :pypi:`filetype`, :pypi:`puremagic` 또는 "
39
+ ":pypi:`python-magic`. 이 라이브러리는 파이썬 코어 팀에서 지원하거나 유지 관리하지 않습니다."
37
40
38
41
#: ../../library/sndhdr.rst:18
39
42
msgid ""
40
43
"The last version of Python that provided the :mod:`!sndhdr` module was "
41
44
"`Python 3.12 <https://docs.python.org/3.12/library/sndhdr.html>`_."
42
45
msgstr ""
43
-
44
- #~ msgid "**Source code:** :source:`Lib/sndhdr.py`"
45
- #~ msgstr "**소스 코드:** :source:`Lib/sndhdr.py`"
46
-
47
- #~ msgid ""
48
- #~ "The :mod:`sndhdr` provides utility functions"
49
- #~ " which attempt to determine the type"
50
- #~ " of sound data which is in a"
51
- #~ " file. When these functions are able"
52
- #~ " to determine what type of sound "
53
- #~ "data is stored in a file, they "
54
- #~ "return a :func:`~collections.namedtuple`, containing"
55
- #~ " five attributes: (``filetype``, ``framerate``,"
56
- #~ " ``nchannels``, ``nframes``, ``sampwidth``). The"
57
- #~ " value for *type* indicates the data"
58
- #~ " type and will be one of the"
59
- #~ " strings ``'aifc'``, ``'aiff'``, ``'au'``, "
60
- #~ "``'hcom'``, ``'sndr'``, ``'sndt'``, ``'voc'``, "
61
- #~ "``'wav'``, ``'8svx'``, ``'sb'``, ``'ub'``, or"
62
- #~ " ``'ul'``. The *sampling_rate* will be "
63
- #~ "either the actual value or ``0`` "
64
- #~ "if unknown or difficult to decode. "
65
- #~ "Similarly, *channels* will be either the"
66
- #~ " number of channels or ``0`` if "
67
- #~ "it cannot be determined or if the"
68
- #~ " value is difficult to decode. The"
69
- #~ " value for *frames* will be either"
70
- #~ " the number of frames or ``-1``. "
71
- #~ "The last item in the tuple, "
72
- #~ "*bits_per_sample*, will either be the "
73
- #~ "sample size in bits or ``'A'`` for"
74
- #~ " A-LAW or ``'U'`` for u-LAW."
75
- #~ msgstr ""
76
- #~ ":mod:`sndhdr`\\은 파일에 있는 음향 데이터 유형을 "
77
- #~ "판별하려고 하는 유틸리티 함수를 제공합니다. 이 함수는 "
78
- #~ "파일에 저장된 음향 데이터의 형식을 결정할 수 있을"
79
- #~ " 때 5가지 어트리뷰트를 포함하는 "
80
- #~ ":func:`~collections.namedtuple`\\을 반환합니다: (``filetype``,"
81
- #~ " ``framerate``, ``nchannels``, ``nframes``, "
82
- #~ "``sampwidth``). *type*\\의 값은 데이터 유형을 "
83
- #~ "나타내며 ``'aifc'``, ``'aiff'``, ``'au'``, "
84
- #~ "``'hcom'``, ``'sndr'``, ``'sndt'``, ``'voc'``, "
85
- #~ "``'wav'``, ``'8svx'``, ``'sb'``, ``'ub'`` 또는"
86
- #~ " ``'ul'`` 문자열 중 하나가 됩니다. "
87
- #~ "*sampling_rate*\\는 실제 값이거나 알 수 없거나 "
88
- #~ "디코드하기 어려우면 ``0``\\입니다. 마찬가지로, *channels*\\는"
89
- #~ " 채널 수거나 결정할 수 없거나 값을 디코드하기 "
90
- #~ "어려우면 ``0``\\이 됩니다. *frames* 의 값은 "
91
- #~ "프레임 수 또는 ``-1``\\이 됩니다. 튜플의 마지막"
92
- #~ " 항목인 *bits_per_sample*\\는 비트 단위의 샘플 "
93
- #~ "크기이거나 A-LAW의 경우 ``'A'`` 또는 u-LAW의 "
94
- #~ "경우 ``'U'`` 입니다."
95
-
96
- #~ msgid ""
97
- #~ "Determines the type of sound data "
98
- #~ "stored in the file *filename* using "
99
- #~ ":func:`whathdr`. If it succeeds, returns "
100
- #~ "a namedtuple as described above, "
101
- #~ "otherwise ``None`` is returned."
102
- #~ msgstr ""
103
- #~ ":func:`whathdr`\\를 사용하여 *filename* 파일에 저장된 "
104
- #~ "음향 데이터 유형을 판단합니다. 성공하면 위의 설명과 "
105
- #~ "같이 네임드 튜플을 반환합니다. 그렇지 않으면 "
106
- #~ "``None``\\을 반환합니다."
107
-
108
- #~ msgid "Result changed from a tuple to a namedtuple."
109
- #~ msgstr "결과가 튜플에서 네임드 튜플로 변경되었습니다."
110
-
111
- #~ msgid ""
112
- #~ "Determines the type of sound data "
113
- #~ "stored in a file based on the "
114
- #~ "file header. The name of the file"
115
- #~ " is given by *filename*. This "
116
- #~ "function returns a namedtuple as "
117
- #~ "described above on success, or ``None``."
118
- #~ msgstr ""
119
- #~ "파일 헤더에 따라 파일에 저장된 음향 데이터의 "
120
- #~ "유형을 판단합니다. 파일의 이름은 *filename*\\으로 주어집니다."
121
- #~ " 이 함수는 성공 시에 위에서 설명한 네임드 "
122
- #~ "튜플을 반환하고, 그렇지 않으면 ``None``\\을 반환합니다."
46
+ ":mod:`!sndhdr` 모듈을 제공한 마지막 파이썬 버전은 `파이썬 3.12 "
47
+ "<https://docs.python.org/ko/3.12/library/sndhdr.html>`_ 입니다."
123
48
0 commit comments