Skip to content

Commit 6993e09

Browse files
committed
Closes #452 - update tutorial/modules.po
1 parent acaa2b4 commit 6993e09

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

tutorial/modules.po

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ msgstr ""
137137
msgid ""
138138
"This does not introduce the module name from which the imports are taken "
139139
"in the local symbol table (so in the example, ``fibo`` is not defined)."
140-
msgstr "이것은 지역 심볼 테이블에 임포트되는 모듈의 이름을 만들지 않습니다 (그래서 이 예에서는, ``fibo`` 가 정의되지 않습니다)."
140+
msgstr ""
141+
"이것은 지역 심볼 테이블에 임포트되는 모듈의 이름을 만들지 않습니다 (그래서 이 예에서는, ``fibo`` 가 정의되지 않습니다)."
141142

142143
#: ../Doc/tutorial/modules.rst:100
143144
msgid "There is even a variant to import all names that a module defines::"
@@ -167,17 +168,20 @@ msgid ""
167168
"If the module name is followed by :keyword:`as`, then the name following "
168169
":keyword:`as` is bound directly to the imported module."
169170
msgstr ""
171+
"모듈 이름 다음에 :keyword:`as` 가 올 경우, :keyword:`as` 다음의 이름을 임포트한 모듈에 직접 연결합니다."
170172

171173
#: ../Doc/tutorial/modules.rst:124
172174
msgid ""
173175
"This is effectively importing the module in the same way that ``import "
174176
"fibo`` will do, with the only difference of it being available as "
175177
"``fib``."
176178
msgstr ""
179+
"이것은 ``import fibo`` 가하는 것과 같은 방식으로 모듈을 임포트 하는데, 유일한 차이점은 그 모듈을 ``fib`` 라는 "
180+
"이름으로 사용할 수 있다는 것입니다."
177181

178182
#: ../Doc/tutorial/modules.rst:127
179183
msgid "It can also be used when utilising :keyword:`from` with similar effects::"
180-
msgstr ""
184+
msgstr ":keyword:`from`\\을 써서 비슷한 효과를 낼 때도 사용할 수 있습니다::"
181185

182186
#: ../Doc/tutorial/modules.rst:136
183187
msgid ""
@@ -450,7 +454,6 @@ msgid "Packages"
450454
msgstr "패키지"
451455

452456
#: ../Doc/tutorial/modules.rst:380
453-
#, fuzzy
454457
msgid ""
455458
"Packages are a way of structuring Python's module namespace by using "
456459
"\"dotted module names\". For example, the module name :mod:`A.B` "
@@ -463,7 +466,7 @@ msgstr ""
463466
"패키지는 \"점으로 구분된 모듈 이름\" 를 써서 파이썬의 모듈 이름 공간을 구조화하는 방법입니다. 예를 들어, 모듈 이름 "
464467
":mod:`A.B` 는 ``A`` 라는 이름의 패키지에 있는 ``B`` 라는 이름의 서브 모듈을 가리킵니다. 모듈의 사용이 다른 "
465468
"모듈의 저자들이 서로의 전역 변수 이름들을 걱정할 필요 없게 만드는 것과 마찬가지로, 점으로 구분된 모듈의 이름들은 NumPy 나 "
466-
"PIL 과 같은 다중 모듈 패키지들의 저자들이 서로의 모듈 이름들을 걱정할 필요 없게 만듭니다."
469+
"Pillow 과 같은 다중 모듈 패키지들의 저자들이 서로의 모듈 이름들을 걱정할 필요 없게 만듭니다."
467470

468471
#: ../Doc/tutorial/modules.rst:388
469472
msgid ""
@@ -735,5 +738,5 @@ msgid ""
735738
"In fact function definitions are also 'statements' that are 'executed'; "
736739
"the execution of a module-level function definition enters the function "
737740
"name in the module's global symbol table."
738-
msgstr "사실 함수 정의도 '실행' 되는 '문장' 입니다; 모듈 수준의 함수 정의를 실행하면 함수의 이름이 전역 심볼 테이블에 들어갑니다."
739-
741+
msgstr ""
742+
"사실 함수 정의도 '실행' 되는 '문장' 입니다; 모듈 수준의 함수 정의를 실행하면 함수의 이름이 전역 심볼 테이블에 들어갑니다."

0 commit comments

Comments
 (0)