Skip to content

Commit 3105abe

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 8b4d7ac commit 3105abe

File tree

3 files changed

+13655
-13606
lines changed

3 files changed

+13655
-13606
lines changed

faq/general.po

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# Rafael Fontenelle <[email protected]>, 2025
8+
# TENMYO Masakazu, 2025
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.14\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-09 14:19+0000\n"
15+
"POT-Creation-Date: 2025-08-05 14:23+0000\n"
1516
"PO-Revision-Date: 2025-07-18 18:48+0000\n"
16-
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
17+
"Last-Translator: TENMYO Masakazu, 2025\n"
1718
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1819
"ja/)\n"
1920
"MIME-Version: 1.0\n"
@@ -661,6 +662,10 @@ msgid ""
661662
"and supported by most widely used libraries. Python 2.x :pep:`is not "
662663
"maintained anymore <373>`."
663664
msgstr ""
665+
"最新の安定版は `Python ダウンロードページ<https://www.python.org/downloads/"
666+
">`_ で見つけられます。 Python 3.x が推奨されるバージョンで、最も広く利用され"
667+
"ているライブラリでサポートされています。 Python 2.x :pep:`は もはや保守されて"
668+
"いません<373>` 。"
664669

665670
#: ../../faq/general.rst:317
666671
msgid "How many people are using Python?"
@@ -886,6 +891,30 @@ msgid ""
886891
">>> L\n"
887892
"[1]"
888893
msgstr ""
894+
">>> L = []\n"
895+
">>> dir(L)\n"
896+
"['__add__', '__class__', '__contains__', '__delattr__', '__delitem__',\n"
897+
"'__dir__', '__doc__', '__eq__', '__format__', '__ge__',\n"
898+
"'__getattribute__', '__getitem__', '__gt__', '__hash__', '__iadd__',\n"
899+
"'__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__',\n"
900+
"'__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__',\n"
901+
"'__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__',\n"
902+
"'__sizeof__', '__str__', '__subclasshook__', 'append', 'clear',\n"
903+
"'copy', 'count', 'extend', 'index', 'insert', 'pop', 'remove',\n"
904+
"'reverse', 'sort']\n"
905+
">>> [d for d in dir(L) if '__' not in d]\n"
906+
"['append', 'clear', 'copy', 'count', 'extend', 'index', 'insert', 'pop', "
907+
"'remove', 'reverse', 'sort']\n"
908+
"\n"
909+
">>> help(L.append)\n"
910+
"Help on built-in function append:\n"
911+
"\n"
912+
"append(...)\n"
913+
" L.append(object) -> None -- append object to end\n"
914+
"\n"
915+
">>> L.append(1)\n"
916+
">>> L\n"
917+
"[1]"
889918

890919
#: ../../faq/general.rst:435
891920
msgid ""

library/urllib.request.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-07-25 14:21+0000\n"
14+
"POT-Creation-Date: 2025-08-05 14:23+0000\n"
1515
"PO-Revision-Date: 2025-07-18 18:49+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2025\n"
1717
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -1291,7 +1291,7 @@ msgid "the three-digit code of the error, as a string,"
12911291
msgstr ""
12921292

12931293
#: ../../library/urllib.request.rst:840
1294-
msgid "the user-visible explanation of the code, as as string, and"
1294+
msgid "the user-visible explanation of the code, as a string, and"
12951295
msgstr ""
12961296

12971297
#: ../../library/urllib.request.rst:841

0 commit comments

Comments
 (0)