File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -403,6 +403,9 @@ msgid ""
403
403
"filesystem encoding with ``'surrogateescape'`` error handler, or "
404
404
"``'strict'`` on Windows; return :class:`str` unchanged."
405
405
msgstr ""
406
+ "ファイルシステムのエンコーディングから :term:`path-like` な *filename* にデコードします。エラーハンドラーに "
407
+ "``'surrogateescape'`` (Windows の場合は ``'strict'``) が指定されます; 未変更の "
408
+ ":class:`bytes` オブジェクトを返します。"
406
409
407
410
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/os.rst:184
408
411
msgid ":func:`fsencode` is the reverse function."
Original file line number Diff line number Diff line change 5
5
#
6
6
# Translators:
7
7
# tomo, 2019
8
+ # Naoki Nakamura <agent@sohzoh.com>, 2020
8
9
#
9
10
#, fuzzy
10
11
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
13
14
"Report-Msgid-Bugs-To : \n "
14
15
"POT-Creation-Date : 2020-01-24 04:38+0000\n "
15
16
"PO-Revision-Date : 2019-09-01 02:42+0000\n "
16
- "Last-Translator : tomo, 2019 \n "
17
+ "Last-Translator : Naoki Nakamura <agent@sohzoh.com>, 2020 \n "
17
18
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
18
19
"MIME-Version : 1.0\n "
19
20
"Content-Type : text/plain; charset=UTF-8\n "
@@ -306,6 +307,9 @@ msgid ""
306
307
"scope: in particular, :keyword:`import` statements and function definitions "
307
308
"bind the module or function name in the local scope."
308
309
msgstr ""
310
+ "Python の特徴として、:keyword:`global` や :keyword:`nonlocal` 文が有効でない場合は、名前に対する参照は常に最も内側のスコープに対して有効になります。\n"
311
+ "代入はデータをコピーしません。オブジェクトを名前に束縛するだけです。削除も同様で、``del x`` は、ローカルスコープの名前空間から ``x`` に対する拘束を取り除きます。\n"
312
+ "つまるところ、新しい名前を与えるようなすべての操作は、ローカルスコープを使って行われます。 :keyword:`import` 文、関数の定義は、モジュールや関数名をローカルスコープの名前に拘束します。"
309
313
310
314
#: /home/travis/build/python/cpython-doc-catalog/Doc/tutorial/classes.rst:154
311
315
msgid ""
You can’t perform that action at this time.
0 commit comments