16
16
# Tetsuo Koyama <tkoyama010@gmail.com>, 2020
17
17
# tomo, 2020
18
18
# mollinaca, 2020
19
- # Mikami Akiko, 2021
20
19
# Osamu NAKAMURA, 2021
20
+ # Mikami Akiko, 2021
21
21
#
22
22
#, fuzzy
23
23
msgid ""
@@ -26,7 +26,7 @@ msgstr ""
26
26
"Report-Msgid-Bugs-To : \n "
27
27
"POT-Creation-Date : 2021-05-23 06:25+0000\n "
28
28
"PO-Revision-Date : 2017-02-16 17:43+0000\n "
29
- "Last-Translator : Osamu NAKAMURA , 2021\n "
29
+ "Last-Translator : Mikami Akiko , 2021\n "
30
30
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
31
31
"MIME-Version : 1.0\n "
32
32
"Content-Type : text/plain; charset=UTF-8\n "
@@ -124,15 +124,15 @@ msgstr "商業のグラフィカルデバッガ付き Python IDE もあります
124
124
125
125
#: ../../faq/programming.rst:49
126
126
msgid "`Wing IDE <https://wingware.com/>`_"
127
- msgstr ""
127
+ msgstr "`Wing IDE <https://wingware.com/>`_ "
128
128
129
129
#: ../../faq/programming.rst:50
130
130
msgid "`Komodo IDE <https://www.activestate.com/products/komodo-ide/>`_"
131
- msgstr ""
131
+ msgstr "`Komodo IDE <https://www.activestate.com/products/komodo-ide/>`_ "
132
132
133
133
#: ../../faq/programming.rst:51
134
134
msgid "`PyCharm <https://www.jetbrains.com/pycharm/>`_"
135
- msgstr ""
135
+ msgstr "`PyCharm <https://www.jetbrains.com/pycharm/>`_ "
136
136
137
137
#: ../../faq/programming.rst:55
138
138
msgid "Are there tools to help find bugs or perform static analysis?"
@@ -204,7 +204,7 @@ msgstr ""
204
204
msgid ""
205
205
"The following packages can help with the creation of console and GUI "
206
206
"executables:"
207
- msgstr ""
207
+ msgstr "以下のパッケージはコンソールやGUIの実行ファイル作成に役立ちます。 "
208
208
209
209
#: ../../faq/programming.rst:97
210
210
msgid "`Nuitka <https://nuitka.net/>`_ (Cross-platform)"
@@ -1111,6 +1111,10 @@ msgid ""
1111
1111
"the number is interpreted using Python's rules: a leading '0o' indicates "
1112
1112
"octal, and '0x' indicates a hex number."
1113
1113
msgstr ""
1114
+ "デフォルトでは、これらは数を十進数として解釈するので、 ``int('0144') == 144`` は成立しますが ``int('0x144')`` "
1115
+ "は :exc:`ValueError` を送出します。 ``int(string, base)`` "
1116
+ "はオプションの第二引数をとって変換元の基数にします。つまり ``int( '0x144', 16) == 324`` です。基数が 0 "
1117
+ "と指定された場合、その数は Python の基準によって解釈されます。先頭が '0o' なら八進数で、'0x' なら十六進数を表します。"
1114
1118
1115
1119
#: ../../faq/programming.rst:853
1116
1120
msgid ""
@@ -1203,7 +1207,7 @@ msgstr "これは標準ライブラリでも何箇所か使われています。
1203
1207
1204
1208
#: ../../faq/programming.rst:949
1205
1209
msgid "Use :func:`locals` to resolve the function name::"
1206
- msgstr ""
1210
+ msgstr ":func:`locals` を使って関数名を決める方法:: "
1207
1211
1208
1212
#: ../../faq/programming.rst:961
1209
1213
msgid ""
@@ -1487,7 +1491,7 @@ msgstr "シーケンスを逆順にイテレートするにはどうしたらい
1487
1491
1488
1492
#: ../../faq/programming.rst:1123
1489
1493
msgid "Use the :func:`reversed` built-in function::"
1490
- msgstr ""
1494
+ msgstr "組み込み関数 :func:`reversed` を使ってください。 "
1491
1495
1492
1496
#: ../../faq/programming.rst:1128
1493
1497
msgid ""
@@ -1528,7 +1532,7 @@ msgstr "リストを集合に変換するときに重複は取り除かれるの
1528
1532
1529
1533
#: ../../faq/programming.rst:1161
1530
1534
msgid "How do you remove multiple items from a list"
1531
- msgstr ""
1535
+ msgstr "リストから複数のアイテムを取り除く方法 "
1532
1536
1533
1537
#: ../../faq/programming.rst:1163
1534
1538
msgid ""
0 commit comments