Skip to content

Commit ed0eec4

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 1e86831 commit ed0eec4

File tree

4 files changed

+48
-5
lines changed

4 files changed

+48
-5
lines changed

library/audit_events.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-08-31 10:59+0000\n"
16+
"POT-Creation-Date: 2024-09-20 14:17+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
1818
"Last-Translator: 石井明久, 2024\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

library/xml.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-08-31 10:59+0000\n"
16+
"POT-Creation-Date: 2024-09-20 14:17+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:18+0000\n"
1818
"Last-Translator: Arihiro TAKASE, 2023\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

reference/introduction.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-08-31 10:59+0000\n"
16+
"POT-Creation-Date: 2024-09-20 14:17+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:49+0000\n"
1818
"Last-Translator: Nozomu Kaneko <[email protected]>, 2023\n"
1919
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"

tutorial/controlflow.po

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
# Takanori Suzuki <[email protected]>, 2023
1313
# righteous, 2023
1414
# Arihiro TAKASE, 2024
15+
# TENMYO Masakazu, 2024
1516
#
1617
#, fuzzy
1718
msgid ""
1819
msgstr ""
1920
"Project-Id-Version: Python 3.13\n"
2021
"Report-Msgid-Bugs-To: \n"
21-
"POT-Creation-Date: 2024-09-06 14:16+0000\n"
22+
"POT-Creation-Date: 2024-09-20 14:17+0000\n"
2223
"PO-Revision-Date: 2021-06-28 01:50+0000\n"
23-
"Last-Translator: Arihiro TAKASE, 2024\n"
24+
"Last-Translator: TENMYO Masakazu, 2024\n"
2425
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2526
"ja/)\n"
2627
"MIME-Version: 1.0\n"
@@ -67,6 +68,19 @@ msgid ""
6768
"...\n"
6869
"More"
6970
msgstr ""
71+
">>> x = int(input(\"Please enter an integer: \"))\n"
72+
"Please enter an integer: 42\n"
73+
">>> if x < 0:\n"
74+
"... x = 0\n"
75+
"... print('Negative changed to zero')\n"
76+
"... elif x == 0:\n"
77+
"... print('Zero')\n"
78+
"... elif x == 1:\n"
79+
"... print('Single')\n"
80+
"... else:\n"
81+
"... print('More')\n"
82+
"...\n"
83+
"More"
7084

7185
#: ../../tutorial/controlflow.rst:33
7286
msgid ""
@@ -124,6 +138,14 @@ msgid ""
124138
"window 6\n"
125139
"defenestrate 12"
126140
msgstr ""
141+
">>> # 文字列計測:\n"
142+
">>> words = ['cat', 'window', 'defenestrate']\n"
143+
">>> for w in words:\n"
144+
"... print(w, len(w))\n"
145+
"...\n"
146+
"cat 3\n"
147+
"window 6\n"
148+
"defenestrate 12"
127149

128150
#: ../../tutorial/controlflow.rst:72
129151
msgid ""
@@ -152,6 +174,19 @@ msgid ""
152174
" if status == 'active':\n"
153175
" active_users[user] = status"
154176
msgstr ""
177+
"# コレクション作成\n"
178+
"users = {'Hans': 'active', 'Éléonore': 'inactive', '景太郎': 'active'}\n"
179+
"\n"
180+
"# 方針: コピーを反復\n"
181+
"for user, status in users.copy().items():\n"
182+
" if status == 'inactive':\n"
183+
" del users[user]\n"
184+
"\n"
185+
"# 方針: 新コレクション作成\n"
186+
"active_users = {}\n"
187+
"for user, status in users.items():\n"
188+
" if status == 'active':\n"
189+
" active_users[user] = status"
155190

156191
#: ../../tutorial/controlflow.rst:94
157192
msgid "The :func:`range` Function"
@@ -176,6 +211,14 @@ msgid ""
176211
"3\n"
177212
"4"
178213
msgstr ""
214+
">>> for i in range(5):\n"
215+
"... print(i)\n"
216+
"...\n"
217+
"0\n"
218+
"1\n"
219+
"2\n"
220+
"3\n"
221+
"4"
179222

180223
#: ../../tutorial/controlflow.rst:108
181224
msgid ""

0 commit comments

Comments
 (0)