Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit148486a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent77a22c3 commit148486a

File tree

3 files changed

+37
-16
lines changed

3 files changed

+37
-16
lines changed

‎library/ssl.po‎

Lines changed: 13 additions & 7 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-09-11 14:18+0000\n"
14+
"POT-Creation-Date:2025-09-27 14:12+0000\n"
1515
"PO-Revision-Date:2025-09-16 00:01+0000\n"
1616
"Last-Translator:python-doc bot, 2025\n"
1717
"Language-Team:Hungarian (https://app.transifex.com/python-doc/teams/5390/"
@@ -1076,8 +1076,8 @@ msgid "Use :meth:`~SSLSocket.recv` instead of :meth:`~SSLSocket.read`."
10761076
msgstr""
10771077

10781078
msgid""
1079-
"Write *buf* to the SSL socket and return the number of bytes written. The "
1080-
"*buf* argument must be an object supporting the buffer interface."
1079+
"Write *data* to the SSL socket and return the number of bytes written. The "
1080+
"*data* argument must be an object supporting the buffer interface."
10811081
msgstr""
10821082

10831083
msgid""
@@ -1092,7 +1092,7 @@ msgstr ""
10921092

10931093
msgid""
10941094
"The socket timeout is no longer reset each time bytes are received or sent. "
1095-
"The socket timeout is now the maximum total duration to write *buf*."
1095+
"The socket timeout is now the maximum total duration to write *data*."
10961096
msgstr""
10971097

10981098
msgid"Use :meth:`~SSLSocket.send` instead of :meth:`~SSLSocket.write`."
@@ -1115,7 +1115,13 @@ msgid "Perform the SSL setup handshake."
11151115
msgstr""
11161116

11171117
msgid""
1118-
"The handshake method also performs :func:`match_hostname` when the :attr:"
1118+
"If *block* is true and the timeout obtained by :meth:`~socket.socket."
1119+
"gettimeout` is zero, the socket is set in blocking mode until the handshake "
1120+
"is performed."
1121+
msgstr""
1122+
1123+
msgid""
1124+
"The handshake method also performs :func:`!match_hostname` when the :attr:"
11191125
"`~SSLContext.check_hostname` attribute of the socket's :attr:`~SSLSocket."
11201126
"context` is true."
11211127
msgstr""
@@ -1127,7 +1133,7 @@ msgstr ""
11271133

11281134
msgid""
11291135
"Hostname or IP address is matched by OpenSSL during handshake. The function :"
1130-
"func:`match_hostname` is no longer used. In case OpenSSL refuses a hostname "
1136+
"func:`!match_hostname` is no longer used. In case OpenSSL refuses a hostname "
11311137
"or IP address, the handshake is aborted early and a TLS alert message is "
11321138
"sent to the peer."
11331139
msgstr""
@@ -2878,7 +2884,7 @@ msgstr ""
28782884

28792885
msgid""
28802886
"Hostname matchings is now performed by OpenSSL. Python no longer uses :func:"
2881-
"`match_hostname`."
2887+
"`!match_hostname`."
28822888
msgstr""
28832889

28842890
msgid""

‎library/xml.po‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version:Python 3.14\n"
1010
"Report-Msgid-Bugs-To:\n"
11-
"POT-Creation-Date:2025-07-11 14:21+0000\n"
11+
"POT-Creation-Date:2025-09-27 14:12+0000\n"
1212
"PO-Revision-Date:2025-09-16 00:02+0000\n"
1313
"Language-Team:Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"
@@ -78,7 +78,7 @@ msgid ""
7878
msgstr""
7979

8080
msgid""
81-
"Expat versions lowerthat 2.6.0 may be vulnerable to\"billion laughs\", "
81+
"Expat versions lowerthan 2.6.0 may be vulnerable to\"billion laughs\", "
8282
"\"quadratic blowup\" and\"large tokens\". Python may be vulnerable if it "
8383
"uses such older versions of Expat as a system-provided library. Check :const:"
8484
"`!pyexpat.EXPAT_VERSION`."

‎whatsnew/changelog.po‎

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-09-19 14:16+0000\n"
11+
"POT-Creation-Date: 2025-09-27 14:12+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1313
"Language-Team: Hungarian (https://app.transifex.com/python-doc/teams/5390/"
1414
"hu/)\n"
@@ -21,6 +21,27 @@ msgstr ""
2121
msgid "Changelog"
2222
msgstr ""
2323

24+
msgid "Python next"
25+
msgstr ""
26+
27+
msgid "*Release date: XXXX-XX-XX*"
28+
msgstr ""
29+
30+
msgid "Tools/Demos"
31+
msgstr ""
32+
33+
msgid ""
34+
":gh:`139330`: SBOM generation tool didn't cross-check the version and "
35+
"checksum values against the ``Modules/expat/refresh.sh`` script, leading to "
36+
"the values becoming out-of-date during routine updates."
37+
msgstr ""
38+
39+
msgid "Library"
40+
msgstr ""
41+
42+
msgid ":gh:`139312`: Upgrade bundled libexpat to 2.7.3"
43+
msgstr ""
44+
2445
msgid "Python 3.14.0 release candidate 3"
2546
msgstr ""
2647

@@ -34,9 +55,6 @@ msgid ""
3455
":gh:`138896`: Fix error installing C runtime on non-updated Windows machines"
3556
msgstr ""
3657

37-
msgid "Tools/Demos"
38-
msgstr ""
39-
4058
msgid ""
4159
":gh:`137873`: The iOS test runner has been simplified, resolving some issues "
4260
"that have been observed using the runner in GitHub Actions and Azure "
@@ -54,9 +72,6 @@ msgid ""
5472
"content (SVG or MathML) or as a bogus comment in the HTML namespace."
5573
msgstr ""
5674

57-
msgid "Library"
58-
msgstr ""
59-
6075
msgid ":gh:`138998`: Update bundled libexpat to 2.7.2"
6176
msgstr ""
6277

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp