|
10 | 10 | # Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2017
|
11 | 11 | # yudetamago <yudetamago.orz@gmail.com>, 2018
|
12 | 12 | # mollinaca, 2020
|
13 |
| -# tomo, 2021 |
14 | 13 | # Tetsuo Koyama <tkoyama010@gmail.com>, 2021
|
| 14 | +# tomo, 2021 |
15 | 15 | #
|
16 | 16 | #, fuzzy
|
17 | 17 | msgid ""
|
18 | 18 | msgstr ""
|
19 | 19 | "Project-Id-Version: Python 3.9\n"
|
20 | 20 | "Report-Msgid-Bugs-To: \n"
|
21 |
| -"POT-Creation-Date: 2021-02-10 05:25+0000\n" |
| 21 | +"POT-Creation-Date: 2021-04-05 05:56+0000\n" |
22 | 22 | "PO-Revision-Date: 2017-02-16 23:32+0000\n"
|
23 |
| -"Last-Translator: Tetsuo Koyama <tkoyama010@gmail.com>, 2021\n" |
| 23 | +"Last-Translator: tomo, 2021\n" |
24 | 24 | "Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
|
25 | 25 | "MIME-Version: 1.0\n"
|
26 | 26 | "Content-Type: text/plain; charset=UTF-8\n"
|
@@ -1842,30 +1842,40 @@ msgstr ""
|
1842 | 1842 | #: ../../library/typing.rst:1712
|
1843 | 1843 | msgid ""
|
1844 | 1844 | "A class used for internal typing representation of string forward "
|
1845 |
| -"references. For example, ``list[\"SomeClass\"]`` is implicitly transformed " |
1846 |
| -"into ``list[ForwardRef(\"SomeClass\")]``. This class should not be " |
| 1845 | +"references. For example, ``List[\"SomeClass\"]`` is implicitly transformed " |
| 1846 | +"into ``List[ForwardRef(\"SomeClass\")]``. This class should not be " |
1847 | 1847 | "instantiated by a user, but may be used by introspection tools."
|
1848 | 1848 | msgstr ""
|
| 1849 | +"文字列による前方参照の内部的な型付け表現に使われるクラスです。\n" |
| 1850 | +"例えば、 ``List[\"SomeClass\"]`` は暗黙的に ``List[ForwardRef(\"SomeClass\")]`` に変換されます。\n" |
| 1851 | +"このクラスはユーザーがインスタンス化するべきではなく、イントロスペクションツールに使われるものです。" |
| 1852 | + |
| 1853 | +#: ../../library/typing.rst:1718 |
| 1854 | +msgid "" |
| 1855 | +":pep:`585` generic types such as ``list[\"SomeClass\"]`` will not be " |
| 1856 | +"implicitly transformed into ``list[ForwardRef(\"SomeClass\")]`` and thus " |
| 1857 | +"will not automatically resolve to ``list[SomeClass]``." |
| 1858 | +msgstr "" |
1849 | 1859 |
|
1850 |
| -#: ../../library/typing.rst:1720 |
| 1860 | +#: ../../library/typing.rst:1725 |
1851 | 1861 | msgid "Constant"
|
1852 | 1862 | msgstr "定数"
|
1853 | 1863 |
|
1854 |
| -#: ../../library/typing.rst:1724 |
| 1864 | +#: ../../library/typing.rst:1729 |
1855 | 1865 | msgid ""
|
1856 | 1866 | "A special constant that is assumed to be ``True`` by 3rd party static type "
|
1857 | 1867 | "checkers. It is ``False`` at runtime. Usage::"
|
1858 | 1868 | msgstr "サードパーティーの静的型検査器が ``True`` と仮定する特別な定数です。 実行時には ``False`` になります。使用例::"
|
1859 | 1869 |
|
1860 |
| -#: ../../library/typing.rst:1733 |
| 1870 | +#: ../../library/typing.rst:1738 |
1861 | 1871 | msgid ""
|
1862 | 1872 | "The first type annotation must be enclosed in quotes, making it a \"forward "
|
1863 | 1873 | "reference\", to hide the ``expensive_mod`` reference from the interpreter "
|
1864 | 1874 | "runtime. Type annotations for local variables are not evaluated, so the "
|
1865 | 1875 | "second annotation does not need to be enclosed in quotes."
|
1866 | 1876 | msgstr ""
|
1867 | 1877 |
|
1868 |
| -#: ../../library/typing.rst:1740 |
| 1878 | +#: ../../library/typing.rst:1745 |
1869 | 1879 | msgid ""
|
1870 | 1880 | "If ``from __future__ import annotations`` is used in Python 3.7 or later, "
|
1871 | 1881 | "annotations are not evaluated at function definition time. Instead, they are"
|
|
0 commit comments