Skip to content

Commit 7fc48dc

Browse files
committed
Closes #566 - update tutorial/datastructures.po to reflect recent changes
1 parent e125e28 commit 7fc48dc

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

tutorial/datastructures.po

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, 2017.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: Python 3.6\n"
@@ -58,11 +57,10 @@ msgstr ""
5857
"는 리스트의 처음에 삽입하고, ``a.insert(len(a), x)`` 는 ``a.append(x)`` 와 동등합니다."
5958

6059
#: ../Doc/tutorial/datastructures.rst:43
61-
#, fuzzy
6260
msgid ""
6361
"Remove the first item from the list whose value is equal to *x*. It "
6462
"raises a :exc:`ValueError` if there is no such item."
65-
msgstr "리스트에서 값이 *x* 와 같은 첫 번째 항목을 삭제합니다. 그런 항목이 없으면 ``ValueError``\\를 일으킵니다."
63+
msgstr "리스트에서 값이 *x* 와 같은 첫 번째 항목을 삭제합니다. 그런 항목이 없으면 :exc:`ValueError`\\를 일으킵니다."
6664

6765
#: ../Doc/tutorial/datastructures.rst:50
6866
msgid ""
@@ -212,7 +210,6 @@ msgid "which is more concise and readable."
212210
msgstr "이것이 더 간결하고 읽기 쉽습니다."
213211

214212
#: ../Doc/tutorial/datastructures.rst:218
215-
#, fuzzy
216213
msgid ""
217214
"A list comprehension consists of brackets containing an expression "
218215
"followed by a :keyword:`!for` clause, then zero or more :keyword:`!for` "
@@ -221,9 +218,9 @@ msgid ""
221218
":keyword:`!if` clauses which follow it. For example, this listcomp "
222219
"combines the elements of two lists if they are not equal::"
223220
msgstr ""
224-
"리스트 컴프리헨션은 표현식과 그 뒤를 따르는 :keyword:`for` 절과 없거나 여러 개의 :keyword:`for` 나 "
225-
":keyword:`if` 절들을 감싸는 꺾쇠괄호로 구성됩니다. 그 결과는 새 리스트인데, :keyword:`for` 와 "
226-
":keyword:`if` 절의 문맥에서 표현식의 값을 구해서 만들어집니다. 예를 들어, 이 리스트 컴프리헨션은 두 리스트의 요소들을"
221+
"리스트 컴프리헨션은 표현식과 그 뒤를 따르는 :keyword:`!for` 절과 없거나 여러 개의 :keyword:`!for` 나 "
222+
":keyword:`!if` 절들을 감싸는 꺾쇠괄호로 구성됩니다. 그 결과는 새 리스트인데, :keyword:`!for` 와 "
223+
":keyword:`!if` 절의 문맥에서 표현식의 값을 구해서 만들어집니다. 예를 들어, 이 리스트 컴프리헨션은 두 리스트의 요소들을"
227224
" 서로 같지 않은 것끼리 결합합니다::"
228225

229226
#: ../Doc/tutorial/datastructures.rst:228
@@ -295,12 +292,10 @@ msgid ""
295292
msgstr "이 줄에 나오는 에스터리스크에 대한 자세한 내용은 :ref:`tut-unpacking-arguments` 을 보세요."
296293

297294
#: ../Doc/tutorial/datastructures.rst:334
298-
#, fuzzy
299295
msgid "The :keyword:`!del` statement"
300-
msgstr ":keyword:`del` 문"
296+
msgstr ":keyword:`!del` 문"
301297

302298
#: ../Doc/tutorial/datastructures.rst:336
303-
#, fuzzy
304299
msgid ""
305300
"There is a way to remove an item from a list given its index instead of "
306301
"its value: the :keyword:`del` statement. This differs from the "
@@ -310,7 +305,7 @@ msgid ""
310305
"example::"
311306
msgstr ""
312307
"리스트에서 값 대신에 인덱스를 사용해서 항목을 삭제하는 방법이 있습니다: :keyword:`del` 문입니다. 이것은 값을 돌려주는"
313-
" :meth:`pop` 메서드와 다릅니다. :keyword:`del` 문은 리스트에서 슬라이스를 삭제하거나 전체 리스트를 비우는 "
308+
" :meth:`pop` 메서드와 다릅니다. :keyword:`!del` 문은 리스트에서 슬라이스를 삭제하거나 전체 리스트를 비우는 "
314309
"데도 사용될 수 있습니다 (앞에서 빈 리스트를 슬라이스에 대입해서 했던 일입니다). 예를 들어::"
315310

316311
#: ../Doc/tutorial/datastructures.rst:353

0 commit comments

Comments
 (0)