Skip to content

Commit 5708cd3

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 014f890 commit 5708cd3

File tree

3 files changed

+24
-14
lines changed

3 files changed

+24
-14
lines changed

library/exceptions.po

Lines changed: 6 additions & 1 deletion
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-08-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-08-31 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:34+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -1113,6 +1113,11 @@ msgstr ""
11131113
msgid "Base class for warnings about dubious syntax."
11141114
msgstr "Базовий клас для попереджень про сумнівний синтаксис."
11151115

1116+
msgid ""
1117+
"This warning is typically emitted when compiling Python source code, and "
1118+
"usually won't be reported when running already compiled code."
1119+
msgstr ""
1120+
11161121
msgid "Base class for warnings about dubious runtime behavior."
11171122
msgstr "Базовий клас для попереджень про сумнівну поведінку під час виконання."
11181123

library/warnings.po

Lines changed: 5 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-08-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-08-31 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -133,7 +133,10 @@ msgstr ""
133133
msgid ":exc:`SyntaxWarning`"
134134
msgstr ":exc:`SyntaxWarning`"
135135

136-
msgid "Base category for warnings about dubious syntactic features."
136+
msgid ""
137+
"Base category for warnings about dubious syntactic features (typically "
138+
"emitted when compiling Python source code, and hence may not be suppressed "
139+
"by runtime filters)"
137140
msgstr ""
138141

139142
msgid ":exc:`RuntimeWarning`"

library/zipimport.po

Lines changed: 13 additions & 11 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-08-27 14:18+0000\n"
14+
"POT-Creation-Date: 2025-08-31 14:14+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/"
@@ -247,18 +247,20 @@ msgstr ""
247247
"`zipimport` не використовується явно."
248248

249249
msgid ""
250-
"$ unzip -l example.zip\n"
251-
"Archive: example.zip\n"
250+
"$ unzip -l example_archive.zip\n"
251+
"Archive: example_archive.zip\n"
252252
" Length Date Time Name\n"
253253
" -------- ---- ---- ----\n"
254-
" 8467 11-26-02 22:30 jwzthreading.py\n"
254+
" 8467 01-01-00 12:30 example.py\n"
255255
" -------- -------\n"
256-
" 8467 1 file\n"
257-
"$ ./python\n"
258-
"Python 2.3 (#1, Aug 1 2003, 19:54:32)\n"
256+
" 8467 1 file"
257+
msgstr ""
258+
259+
msgid ""
259260
">>> import sys\n"
260-
">>> sys.path.insert(0, 'example.zip') # Add .zip file to front of path\n"
261-
">>> import jwzthreading\n"
262-
">>> jwzthreading.__file__\n"
263-
"'example.zip/jwzthreading.py'"
261+
">>> # Add the archive to the front of the module search path\n"
262+
">>> sys.path.insert(0, 'example_archive.zip')\n"
263+
">>> import example\n"
264+
">>> example.__file__\n"
265+
"'example_archive.zip/example.py'"
264266
msgstr ""

0 commit comments

Comments
 (0)