Skip to content

Commit f507d68

Browse files
committed
#707 - remove fuzzy flags
1 parent 6a37019 commit f507d68

File tree

1 file changed

+22
-12
lines changed

1 file changed

+22
-12
lines changed

tutorial/interpreter.po

Lines changed: 22 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,18 @@ msgid "Invoking the Interpreter"
2525
msgstr "인터프리터 실행하기"
2626

2727
#: ../../tutorial/interpreter.rst:13
28-
#, fuzzy
2928
msgid ""
3029
"The Python interpreter is usually installed as "
3130
"|usr_local_bin_python_x_dot_y_literal| on those machines where it is "
3231
"available; putting :file:`/usr/local/bin` in your Unix shell's search "
3332
"path makes it possible to start it by typing the command:"
3433
msgstr ""
35-
"파이썬 인터프리터는 보통 :file:`/usr/local/bin/python3.9` 에 설치됩니다; 유닉스 셸의 검색 경로에 "
36-
":file:`/usr/local/bin` 를 넣으면 명령:"
34+
"파이썬 인터프리터는 보통 |usr_local_bin_python_x_dot_y_literal| 에 설치됩니다; 유닉스 셸의 검색 "
35+
"경로에 :file:`/usr/local/bin` 를 넣으면 명령:"
3736

3837
#: ../../tutorial/interpreter.rst:17
3938
msgid "python3.13"
40-
msgstr ""
39+
msgstr "python3.13"
4140

4241
#: ../../tutorial/interpreter.rst:21
4342
msgid ""
@@ -51,7 +50,6 @@ msgstr ""
5150
":file:`/usr/local/python` 도 널리 사용되는 위치입니다.)"
5251

5352
#: ../../tutorial/interpreter.rst:26
54-
#, fuzzy
5553
msgid ""
5654
"On Windows machines where you have installed Python from the "
5755
":ref:`Microsoft Store <windows-store>`, the |python_x_dot_y_literal| "
@@ -60,9 +58,9 @@ msgid ""
6058
":`setting-envvars` for other ways to launch Python."
6159
msgstr ""
6260
":ref:`마이크로소프트 스토어 <windows-store>`\\에서 설치한 파이썬이 있는 윈도우 시스템에서는, "
63-
":file:`python3.9` 명령을 사용할 수 있습니다. :ref:`py.exe 구동기 <launcher>`\\ 설치했으면, "
64-
":file:`py` 명령을 사용할 수 있습니다. 파이썬을 구동하는 다른 방법은 :ref:`setting-envvars`\\"
65-
"참조하십시오."
61+
"|python_x_dot_y_literal| 명령을 사용할 수 있습니다. :ref:`py.exe 구동기 <launcher>`\\를 "
62+
"설치했으면, :file:`py` 명령을 사용할 수 있습니다. 파이썬을 구동하는 다른 방법은 :ref:`setting-"
63+
"envvars`\\참조하십시오."
6664

6765
#: ../../tutorial/interpreter.rst:31
6866
msgid ""
@@ -107,7 +105,6 @@ msgstr ""
107105
"실행합니다; 파일명을 인자로 주거나 파일을 표준입력으로 연결한 상태로 실행되면 스크립트를 읽고 실행합니다."
108106

109107
#: ../../tutorial/interpreter.rst:51
110-
#, fuzzy
111108
msgid ""
112109
"A second way of starting the interpreter is ``python -c command [arg] "
113110
"...``, which executes the statement(s) in *command*, analogous to the "
@@ -117,7 +114,7 @@ msgid ""
117114
msgstr ""
118115
"인터프리터를 실행하는 두 번째 방법은 ``python -c command [arg] ...`` 인데, *command* 에 있는 "
119116
"문장들을 실행합니다. 셸의 :option:`-c` 옵션에 해당합니다. 파이썬 문장은 종종 셸에서 특별한 의미가 있는 공백이나 다른 "
120-
"문자들을 포함하기 때문에, *command* 전체를 작은따옴표로 감싸주는 것이 좋습니다."
117+
"문자들을 포함하기 때문에, *command* 전체를 따옴표로 감싸주는 것이 좋습니다."
121118

122119
#: ../../tutorial/interpreter.rst:57
123120
msgid ""
@@ -197,6 +194,12 @@ msgid ""
197194
"information.\n"
198195
">>>"
199196
msgstr ""
197+
"$ python3.13\n"
198+
"Python 3.13 (default, April 4 2023, 09:25:04)\n"
199+
"[GCC 10.2.0] on linux\n"
200+
"Type \"help\", \"copyright\", \"credits\" or \"license\" for more "
201+
"information.\n"
202+
">>>"
200203

201204
#: ../../tutorial/interpreter.rst:108
202205
msgid ""
@@ -212,6 +215,11 @@ msgid ""
212215
"...\n"
213216
"Be careful not to fall off!"
214217
msgstr ""
218+
">>> the_world_is_flat = True\n"
219+
">>> if the_world_is_flat:\n"
220+
"... print(\"Be careful not to fall off!\")\n"
221+
"...\n"
222+
"Be careful not to fall off!"
215223

216224
#: ../../tutorial/interpreter.rst:118
217225
msgid "For more on interactive mode, see :ref:`tut-interac`."
@@ -249,7 +257,7 @@ msgstr "인코딩을 기본값 외의 것으로 선언하려면, 파일의 첫
249257

250258
#: ../../tutorial/interpreter.rst:143
251259
msgid "# -*- coding: encoding -*-"
252-
msgstr ""
260+
msgstr "# -*- coding: encoding -*-"
253261

254262
#: ../../tutorial/interpreter.rst:145
255263
msgid "where *encoding* is one of the valid :mod:`codecs` supported by Python."
@@ -263,7 +271,7 @@ msgstr "예를 들어, Windows-1252 인코딩을 사용하도록 선언하려면
263271

264272
#: ../../tutorial/interpreter.rst:150
265273
msgid "# -*- coding: cp1252 -*-"
266-
msgstr ""
274+
msgstr "# -*- coding: cp1252 -*-"
267275

268276
#: ../../tutorial/interpreter.rst:152
269277
msgid ""
@@ -280,6 +288,8 @@ msgid ""
280288
"#!/usr/bin/env python3\n"
281289
"# -*- coding: cp1252 -*-"
282290
msgstr ""
291+
"#!/usr/bin/env python3\n"
292+
"# -*- coding: cp1252 -*-"
283293

284294
#: ../../tutorial/interpreter.rst:160
285295
msgid "Footnotes"

0 commit comments

Comments
 (0)