Skip to content

Commit 7466fe4

Browse files
committed
#840 - remove fuzzy flags
1 parent b28a719 commit 7466fe4

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

library/posix.po

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ msgstr ""
1717
"Generated-By: Babel 2.17.0\n"
1818

1919
#: ../../library/posix.rst:2
20-
#, fuzzy
2120
msgid ":mod:`!posix` --- The most common POSIX system calls"
22-
msgstr ":mod:`posix` --- 가장 일반적인 POSIX 시스템 호출"
21+
msgstr ":mod:`!posix` --- 가장 일반적인 POSIX 시스템 호출"
2322

2423
#: ../../library/posix.rst:10
2524
msgid ""
@@ -65,21 +64,18 @@ msgid "Large File Support"
6564
msgstr "대용량 파일 지원"
6665

6766
#: ../../library/posix.rst:42
68-
#, fuzzy
6967
msgid ""
7068
"Several operating systems (including AIX and Solaris) provide support for"
7169
" files that are larger than 2 GiB from a C programming model where "
7270
":c:expr:`int` and :c:expr:`long` are 32-bit values. This is typically "
7371
"accomplished by defining the relevant size and offset types as 64-bit "
7472
"values. Such files are sometimes referred to as :dfn:`large files`."
7573
msgstr ""
76-
"여러 운영 체제(AIX, HP-UX, Irix 및 Solaris 포함)는 :c:type:`int`\\와 "
77-
":c:type:`long`\\이 32비트 값인 C 프로그래밍 모델로 인한 2 GiB보다 큰 파일에 대한 지원을 제공합니다. 이것은 "
78-
"일반적으로 관련 크기 및 오프셋 형을 64비트 값으로 정의하여 수행됩니다. 이러한 파일을 때로 :dfn:`대용량 파일 (large "
79-
"files)`\\이라고 합니다."
74+
"여러 운영 체제(AIX 와 Solaris 포함)는 :c:expr:`int`\\와 :c:expr:`long`\\이 32비트 값인 C "
75+
"프로그래밍 모델로 인한 2 GiB보다 큰 파일에 대한 지원을 제공합니다. 이것은 일반적으로 관련 크기 및 오프셋 형을 64비트 "
76+
"값으로 정의하여 수행됩니다. 이러한 파일을 때로 :dfn:`대용량 파일 (large files)`\\이라고 합니다."
8077

8178
#: ../../library/posix.rst:48
82-
#, fuzzy
8379
msgid ""
8480
"Large file support is enabled in Python when the size of an "
8581
":c:type:`off_t` is larger than a :c:expr:`long` and the :c:expr:`long "
@@ -88,16 +84,17 @@ msgid ""
8884
"mode. For example, with Solaris 2.6 and 2.7 you need to do something "
8985
"like::"
9086
msgstr ""
91-
":c:type:`off_t`\\의 크기가 :c:type:`long`\\보다 크고 :c:type:`long long`\\이 적어도 "
87+
":c:type:`off_t`\\의 크기가 :c:expr:`long`\\보다 크고 :c:expr:`long long`\\이 적어도 "
9288
":c:type:`off_t`\\만큼 크면 파이썬에서 대용량 파일 지원이 활성화됩니다. 이 모드를 활성화하려면 특정 컴파일러 플래그로"
93-
" 파이썬을 구성하고 컴파일해야 할 수도 있습니다. 예를 들어, 최근 버전의 Irix에서는 기본적으로 활성화되지만, Solaris "
94-
"2.6과 2.7에서는 다음과 같은 작업이 필요합니다::"
89+
" 파이썬을 구성하고 컴파일해야 할 수도 있습니다. 예를 들어, Solaris 2.6과 2.7에서는 다음과 같은 작업이 필요합니다::"
9590

9691
#: ../../library/posix.rst:55
9792
msgid ""
9893
"CFLAGS=\"`getconf LFS_CFLAGS`\" OPT=\"-g -O2 $CFLAGS\" \\\n"
9994
" ./configure"
10095
msgstr ""
96+
"CFLAGS=\"`getconf LFS_CFLAGS`\" OPT=\"-g -O2 $CFLAGS\" \\\n"
97+
" ./configure"
10198

10299
#: ../../library/posix.rst:58
103100
msgid "On large-file-capable Linux systems, this might work::"
@@ -109,6 +106,9 @@ msgid ""
109106
"$CFLAGS\" \\\n"
110107
" ./configure"
111108
msgstr ""
109+
"CFLAGS='-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' OPT=\"-g -O2 "
110+
"$CFLAGS\" \\\n"
111+
" ./configure"
112112

113113
#: ../../library/posix.rst:67
114114
msgid "Notable Module Contents"
@@ -170,9 +170,8 @@ msgid "os"
170170
msgstr ""
171171

172172
#: ../../library/posix.rst:36
173-
#, fuzzy
174173
msgid "large files"
175-
msgstr "대용량 파일 지원"
174+
msgstr ""
176175

177176
#: ../../library/posix.rst:36
178177
msgid "file"

0 commit comments

Comments
 (0)