|
| 1 | +# SOME DESCRIPTIVE TITLE. |
| 2 | +# Copyright (C) 2001 Python Software Foundation |
| 3 | +# This file is distributed under the same license as the Python package. |
| 4 | +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
| 5 | +# |
| 6 | +# Translators: |
| 7 | +# Rafael Fontenelle <rffontenelle@gmail.com>, 2026 |
| 8 | +# |
| 9 | +#, fuzzy |
| 10 | +msgid "" |
| 11 | +msgstr "" |
| 12 | +"Project-Id-Version: Python 3.15\n" |
| 13 | +"Report-Msgid-Bugs-To: \n" |
| 14 | +"POT-Creation-Date: 2026-09-13 17:08+0000\n" |
| 15 | +"PO-Revision-Date: 2026-09-13 17:09+0000\n" |
| 16 | +"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n" |
| 17 | +"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/ja/)\n" |
| 18 | +"MIME-Version: 1.0\n" |
| 19 | +"Content-Type: text/plain; charset=UTF-8\n" |
| 20 | +"Content-Transfer-Encoding: 8bit\n" |
| 21 | +"Language: ja\n" |
| 22 | +"Plural-Forms: nplurals=1; plural=0;\n" |
| 23 | + |
| 24 | +#: ../../builtins/constants.rst:4 |
| 25 | +msgid "Built-in Constants" |
| 26 | +msgstr "組み込み定数" |
| 27 | + |
| 28 | +#: ../../builtins/constants.rst:6 |
| 29 | +msgid "A small number of constants live in the built-in namespace. They are:" |
| 30 | +msgstr "組み込み名前空間にはいくつかの定数があります。定数の一覧:" |
| 31 | + |
| 32 | +#: ../../builtins/constants.rst:10 |
| 33 | +msgid "" |
| 34 | +"The false value of the :class:`bool` type. Assignments to ``False`` are " |
| 35 | +"illegal and raise a :exc:`SyntaxError`." |
| 36 | +msgstr ":class:`bool` 型の偽値です。``False`` への代入は不正で、:exc:`SyntaxError` を送出します。" |
| 37 | + |
| 38 | +#: ../../builtins/constants.rst:16 |
| 39 | +msgid "" |
| 40 | +"The true value of the :class:`bool` type. Assignments to ``True`` are " |
| 41 | +"illegal and raise a :exc:`SyntaxError`." |
| 42 | +msgstr ":class:`bool` 型の真値です。``True`` への代入は不正で、:exc:`SyntaxError` を送出します。" |
| 43 | + |
| 44 | +#: ../../builtins/constants.rst:22 |
| 45 | +msgid "" |
| 46 | +"An object frequently used to represent the absence of a value, as when " |
| 47 | +"default arguments are not passed to a function. Assignments to ``None`` are " |
| 48 | +"illegal and raise a :exc:`SyntaxError`. ``None`` is the sole instance of the" |
| 49 | +" :class:`~types.NoneType` type." |
| 50 | +msgstr "" |
| 51 | + |
| 52 | +#: ../../builtins/constants.rst:30 |
| 53 | +msgid "" |
| 54 | +"A special value which should be returned by the binary special methods (e.g." |
| 55 | +" :meth:`~object.__eq__`, :meth:`~object.__lt__`, :meth:`~object.__add__`, " |
| 56 | +":meth:`~object.__rsub__`, etc.) to indicate that the operation is not " |
| 57 | +"implemented with respect to the other type; may be returned by the in-place " |
| 58 | +"binary special methods (e.g. :meth:`~object.__imul__`, " |
| 59 | +":meth:`~object.__iand__`, etc.) for the same purpose. It should not be " |
| 60 | +"evaluated in a boolean context. :data:`!NotImplemented` is the sole instance" |
| 61 | +" of the :class:`types.NotImplementedType` type." |
| 62 | +msgstr "" |
| 63 | + |
| 64 | +#: ../../builtins/constants.rst:40 |
| 65 | +msgid "" |
| 66 | +"When a binary (or in-place) method returns :data:`!NotImplemented` the " |
| 67 | +"interpreter will try the reflected operation on the other type (or some " |
| 68 | +"other fallback, depending on the operator). If all attempts return " |
| 69 | +":data:`!NotImplemented`, the interpreter will raise an appropriate " |
| 70 | +"exception. Incorrectly returning :data:`!NotImplemented` will result in a " |
| 71 | +"misleading error message or the :data:`!NotImplemented` value being returned" |
| 72 | +" to Python code." |
| 73 | +msgstr "" |
| 74 | +"二項演算の (あるいはインプレースの) メソッドが :data:`!NotImplemented` " |
| 75 | +"を返した場合、インタープリタはもう一方の型で定義された対の演算で代用を試みます (あるいは演算によっては他の代替手段も試みます)。試行された演算全てが " |
| 76 | +":data:`!NotImplemented` を返した場合、インタープリタは適切な例外を送出します。 :data:`!NotImplemented` " |
| 77 | +"を正しく返さないと、誤解を招きかねないエラーメッセージになったり、 :data:`!NotImplemented` が Python " |
| 78 | +"コードに返されるようなことになります。" |
| 79 | + |
| 80 | +#: ../../builtins/constants.rst:47 |
| 81 | +msgid "See :ref:`implementing-the-arithmetic-operations` for examples." |
| 82 | +msgstr "例として :ref:`implementing-the-arithmetic-operations` を参照してください。" |
| 83 | + |
| 84 | +#: ../../builtins/constants.rst:51 |
| 85 | +msgid "" |
| 86 | +":data:`!NotImplemented` and :exc:`!NotImplementedError` are not " |
| 87 | +"interchangeable. This constant should only be used as described above; see " |
| 88 | +":exc:`NotImplementedError` for details on correct usage of the exception." |
| 89 | +msgstr "" |
| 90 | + |
| 91 | +#: ../../builtins/constants.rst:56 |
| 92 | +msgid "" |
| 93 | +"Evaluating :data:`!NotImplemented` in a boolean context was deprecated." |
| 94 | +msgstr "" |
| 95 | + |
| 96 | +#: ../../builtins/constants.rst:59 |
| 97 | +msgid "" |
| 98 | +"Evaluating :data:`!NotImplemented` in a boolean context now raises a " |
| 99 | +":exc:`TypeError`. It previously evaluated to :const:`True` and emitted a " |
| 100 | +":exc:`DeprecationWarning` since Python 3.9." |
| 101 | +msgstr "" |
| 102 | + |
| 103 | +#: ../../builtins/constants.rst:68 |
| 104 | +msgid "" |
| 105 | +"The same as the ellipsis literal \"``...``\", an object frequently used to " |
| 106 | +"indicate that something is omitted. Assignment to ``Ellipsis`` is possible, " |
| 107 | +"but assignment to ``...`` raises a :exc:`SyntaxError`. ``Ellipsis`` is the " |
| 108 | +"sole instance of the :class:`types.EllipsisType` type." |
| 109 | +msgstr "" |
| 110 | + |
| 111 | +#: ../../builtins/constants.rst:76 |
| 112 | +msgid "" |
| 113 | +"This constant is true if Python was not started with an :option:`-O` option." |
| 114 | +" See also the :keyword:`assert` statement." |
| 115 | +msgstr "" |
| 116 | +"この定数は、Python が :option:`-O` オプションを有効にして開始されたのでなければ真です。 :keyword:`assert` " |
| 117 | +"文も参照して下さい。" |
| 118 | + |
| 119 | +#: ../../builtins/constants.rst:82 |
| 120 | +msgid "" |
| 121 | +"The names :data:`None`, :data:`False`, :data:`True` and :data:`__debug__` " |
| 122 | +"cannot be reassigned (assignments to them, even as an attribute name, raise " |
| 123 | +":exc:`SyntaxError`), so they can be considered \"true\" constants." |
| 124 | +msgstr "" |
| 125 | +"名前 :data:`None` 、 :data:`False` 、 :data:`True` 、 :data:`__debug__` は再代入できない " |
| 126 | +"(これらに対する代入は、たとえ属性名としてであっても :exc:`SyntaxError` が送出されます) " |
| 127 | +"ので、これらは「真の」定数であると考えられます。" |
| 128 | + |
| 129 | +#: ../../builtins/constants.rst:90 |
| 130 | +msgid "Constants added by the :mod:`site` module" |
| 131 | +msgstr ":mod:`site` モジュールで追加される定数" |
| 132 | + |
| 133 | +#: ../../builtins/constants.rst:92 |
| 134 | +msgid "" |
| 135 | +"The :mod:`site` module (which is imported automatically during startup, " |
| 136 | +"except if the :option:`-S` command-line option is given) adds several " |
| 137 | +"constants to the built-in namespace. They are useful for the interactive " |
| 138 | +"interpreter shell and should not be used in programs." |
| 139 | +msgstr "" |
| 140 | +":mod:`site` モジュール (:option:`-S` " |
| 141 | +"コマンドラインオプションが指定されない限り、スタートアップ時に自動的にインポートされます) " |
| 142 | +"は組み込み名前空間にいくつかの定数を追加します。それらは対話的インタープリタシェルで有用ですが、プログラム中では使うべきではありません。" |
| 143 | + |
| 144 | +#: ../../builtins/constants.rst:100 |
| 145 | +msgid "" |
| 146 | +"Objects that when printed, print a message like \"Use quit() or Ctrl-D (i.e." |
| 147 | +" EOF) to exit\", and when accessed directly in the interactive interpreter " |
| 148 | +"or called as functions, raise :exc:`SystemExit` with the specified exit " |
| 149 | +"code." |
| 150 | +msgstr "" |
| 151 | + |
| 152 | +#: ../../builtins/constants.rst:108 |
| 153 | +msgid "" |
| 154 | +"Object that when printed, prints the message \"Type help() for interactive " |
| 155 | +"help, or help(object) for help about object.\", and when accessed directly " |
| 156 | +"in the interactive interpreter, invokes the built-in help system (see " |
| 157 | +":func:`help`)." |
| 158 | +msgstr "" |
| 159 | + |
| 160 | +#: ../../builtins/constants.rst:116 |
| 161 | +msgid "" |
| 162 | +"Objects that when printed or called, print the text of copyright or credits," |
| 163 | +" respectively." |
| 164 | +msgstr "表示あるいは呼び出されたときに、それぞれ著作権あるいはクレジットのテキストが表示されるオブジェクトです。" |
| 165 | + |
| 166 | +#: ../../builtins/constants.rst:121 |
| 167 | +msgid "" |
| 168 | +"Object that when printed, prints the message \"Type license() to see the " |
| 169 | +"full license text\", and when called, displays the full license text in a " |
| 170 | +"pager-like fashion (one screen at a time)." |
| 171 | +msgstr "" |
| 172 | +"表示されたときに \"Type license() to see the full license text\" " |
| 173 | +"というメッセージを表示し、呼び出されたときには完全なライセンスのテキストをページャのような形式で (1画面分づつ) 表示するオブジェクトです。" |
| 174 | + |
| 175 | +#: ../../builtins/constants.rst:65 |
| 176 | +msgid "..." |
| 177 | +msgstr "..." |
| 178 | + |
| 179 | +#: ../../builtins/constants.rst:65 |
| 180 | +msgid "ellipsis literal" |
| 181 | +msgstr "ellipsisリテラル" |
0 commit comments