10
10
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
11
11
# Arihiro TAKASE, 2017
12
12
# Osamu NAKAMURA, 2017
13
- # tomo, 2018
13
+ # tomo, 2019
14
14
#
15
15
#, fuzzy
16
16
msgid ""
17
17
msgstr ""
18
18
"Project-Id-Version : Python 3.7\n "
19
19
"Report-Msgid-Bugs-To : \n "
20
- "POT-Creation-Date : 2019-01-01 10:14 +0900\n "
20
+ "POT-Creation-Date : 2019-07-04 11:50 +0900\n "
21
21
"PO-Revision-Date : 2017-02-16 23:15+0000\n "
22
- "Last-Translator : tomo, 2018 \n "
22
+ "Last-Translator : tomo, 2019 \n "
23
23
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
24
24
"MIME-Version : 1.0\n "
25
25
"Content-Type : text/plain; charset=UTF-8\n "
@@ -29,7 +29,7 @@ msgstr ""
29
29
30
30
#: ../../library/importlib.rst:2
31
31
msgid ":mod:`!importlib` --- The implementation of :keyword:`!import`"
32
- msgstr ""
32
+ msgstr ":mod:`!importlib` --- :keyword:`!import` の実装 "
33
33
34
34
#: ../../library/importlib.rst:12
35
35
msgid "**Source code:** :source:`Lib/importlib/__init__.py`"
@@ -48,6 +48,10 @@ msgid ""
48
48
"Python interpreter. This also provides an implementation which is easier to "
49
49
"comprehend than one implemented in a programming language other than Python."
50
50
msgstr ""
51
+ ":mod:`importlib` パッケージの目的は2つあります。1つ目は Python ソースコード中にある :keyword:`import` "
52
+ "文の(そして、拡張として、 :func:`__import__` 関数の)実装を提供することです。このパッケージは :keyword:`!import`"
53
+ " 文の、どの Python インタープリターでも動作する実装を提供します。また、 Python "
54
+ "以外の言語で実装されたどの実装よりも把握しやすい実装を提供します。"
51
55
52
56
#: ../../library/importlib.rst:26
53
57
msgid ""
@@ -164,11 +168,11 @@ msgstr "複数フェーズでの拡張モジュールの初期化"
164
168
165
169
#: ../../library/importlib.rst:71
166
170
msgid ":pep:`552`"
167
- msgstr ""
171
+ msgstr ":pep:`552` "
168
172
169
173
#: ../../library/importlib.rst:71
170
174
msgid "Deterministic pycs"
171
- msgstr ""
175
+ msgstr "決定論的 pyc "
172
176
173
177
#: ../../library/importlib.rst:74
174
178
msgid ":pep:`3120`"
@@ -379,6 +383,11 @@ msgid ""
379
383
"execute the :keyword:`!from` statement, another is to use :keyword:`!import`"
380
384
" and qualified names (*module.name*) instead."
381
385
msgstr ""
386
+ "一方のモジュールが :keyword:`from` ... :keyword:`import` ... "
387
+ "を使って、オブジェクトを他方のモジュールからインポートしているなら、他方のモジュールを :func:`reload` "
388
+ "で呼び出しても、そのモジュールからインポートされたオブジェクトを再定義することはできません --- この問題を回避する一つの方法は、 "
389
+ ":keyword:`from` 文を再度実行することで、もう一つの方法は :keyword:`!from` 文の代わりに "
390
+ ":keyword:`!import` と限定的な名前 (*module.name*) を使うことです。"
382
391
383
392
#: ../../library/importlib.rst:203
384
393
msgid ""
@@ -431,6 +440,9 @@ msgid ""
431
440
"Originally specified in :pep:`302`, this method was meant for use in "
432
441
":data:`sys.meta_path` and in the path-based import subsystem."
433
442
msgstr ""
443
+ "指定されたモジュールの :term:`ローダー <loader>` を検索するための抽象メソッドです。もとは :pep:`302` "
444
+ "で仕様が定められ、このメソッドは :data:`sys.meta_path` "
445
+ "の中およびパスに基づくインポートサブシステムの中で使用することを意図されています。"
434
446
435
447
#: ../../library/importlib.rst:256
436
448
msgid ""
@@ -792,7 +804,7 @@ msgstr ""
792
804
#: ../../library/importlib.rst:502
793
805
msgid ""
794
806
"Loaders that wish to support resource reading are expected to provide a "
795
- "method called ``get_resource_loader (fullname)`` which returns an object "
807
+ "method called ``get_resource_reader (fullname)`` which returns an object "
796
808
"implementing this ABC's interface. If the module specified by fullname is "
797
809
"not a package, this method should return :const:`None`. An object compatible"
798
810
" with this ABC should only be returned when the specified module is a "
@@ -807,23 +819,25 @@ msgstr ""
807
819
808
820
#: ../../library/importlib.rst:516
809
821
msgid "If the resource cannot be found, :exc:`FileNotFoundError` is raised."
810
- msgstr ""
822
+ msgstr "リソースが見付からない場合は、 :exc:`FileNotFoundError` が送出されます。 "
811
823
812
824
#: ../../library/importlib.rst:521
813
825
msgid "Returns the file system path to the *resource*."
814
- msgstr ""
826
+ msgstr "*resource* へのファイルシステムパスを返します。 "
815
827
816
828
#: ../../library/importlib.rst:523
817
829
msgid ""
818
830
"If the resource does not concretely exist on the file system, raise "
819
831
":exc:`FileNotFoundError`."
820
- msgstr ""
832
+ msgstr "リソースの実体がファイルシステムに存在しない場合、 :exc:`FileNotFoundError` が送出されます。 "
821
833
822
834
#: ../../library/importlib.rst:528
823
835
msgid ""
824
836
"Returns ``True`` if the named *name* is considered a resource. "
825
837
":exc:`FileNotFoundError` is raised if *name* does not exist."
826
838
msgstr ""
839
+ "*name* という名前がリソースだと見なせるなら ``True`` を返します。\n"
840
+ "*name* が存在しない場合は :exc:`FileNotFoundError` が送出されます。"
827
841
828
842
#: ../../library/importlib.rst:533
829
843
msgid ""
@@ -1216,7 +1230,7 @@ msgstr ""
1216
1230
1217
1231
#: ../../library/importlib.rst:836
1218
1232
msgid "The following types are defined."
1219
- msgstr ""
1233
+ msgstr "次の型が定義されています。 "
1220
1234
1221
1235
#: ../../library/importlib.rst:840
1222
1236
msgid ""
@@ -1234,7 +1248,7 @@ msgstr ""
1234
1248
1235
1249
#: ../../library/importlib.rst:851
1236
1250
msgid "The following functions are available."
1237
- msgstr ""
1251
+ msgstr "次の関数が利用可能です。 "
1238
1252
1239
1253
#: ../../library/importlib.rst:855
1240
1254
msgid "Open for binary reading the *resource* within *package*."
0 commit comments