Skip to content

Commit c9016e3

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 6019787 commit c9016e3

File tree

6 files changed

+27
-8
lines changed

6 files changed

+27
-8
lines changed

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.190%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.194%25-0.svg)
1717
![24 Translators](https://img.shields.io/badge/Translators-24-0.svg)
1818
<!-- [[[end]]] -->
1919

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.190%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.194%25-0.svg)
1717
![24 tłumaczy](https://img.shields.io/badge/tłumaczy-24-0.svg)
1818
<!-- [[[end]]] -->
1919

distributing/index.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-05-23 14:20+0000\n"
15+
"POT-Creation-Date: 2025-06-13 14:21+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1717
"Last-Translator: Stan Ulbrych, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/mro.po

Lines changed: 1 addition & 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-05-23 14:20+0000\n"
14+
"POT-Creation-Date: 2025-06-13 14:21+0000\n"
1515
"PO-Revision-Date: 2024-04-19 14:15+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/concurrent.interpreters.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ msgid "how to update an extension module to support multiple interpreters"
4848
msgstr ""
4949

5050
msgid ":pep:`554`"
51-
msgstr ""
51+
msgstr ":pep:`554`"
5252

5353
msgid ":pep:`734`"
54-
msgstr ""
54+
msgstr ":pep:`734`"
5555

5656
msgid ":pep:`684`"
57-
msgstr ""
57+
msgstr ":pep:`684`"
5858

5959
msgid "Availability"
6060
msgstr "Dostępność"

library/sqlite3.po

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ msgid ":mod:`!sqlite3` --- DB-API 2.0 interface for SQLite databases"
3131
msgstr ""
3232

3333
msgid "**Source code:** :source:`Lib/sqlite3/`"
34-
msgstr ""
34+
msgstr "**Kod źródłowy:**. :source:`Lib/sqlite3/`"
3535

3636
msgid ""
3737
"SQLite is a C library that provides a lightweight disk-based database that "
@@ -107,6 +107,8 @@ msgid ""
107107
"import sqlite3\n"
108108
"con = sqlite3.connect(\"tutorial.db\")"
109109
msgstr ""
110+
"import sqlite3\n"
111+
"con = sqlite3.connect(\"tutorial.db\")"
110112

111113
msgid ""
112114
"The returned :class:`Connection` object ``con`` represents the connection to "
@@ -997,6 +999,23 @@ msgid ""
997999
" print(row)\n"
9981000
"con.close()"
9991001
msgstr ""
1002+
"def collate_reverse(string1, string2):\n"
1003+
" if string1 == string2:\n"
1004+
" return 0\n"
1005+
" elif string1 < string2:\n"
1006+
" return 1\n"
1007+
" else:\n"
1008+
" return -1\n"
1009+
"\n"
1010+
"con = sqlite3.connect(\":memory:\")\n"
1011+
"con.create_collation(\"reverse\", collate_reverse)\n"
1012+
"\n"
1013+
"cur = con.execute(\"CREATE TABLE test(x)\")\n"
1014+
"cur.executemany(\"INSERT INTO test(x) VALUES(?)\", [(\"a\",), (\"b\",)])\n"
1015+
"cur.execute(\"SELECT x FROM test ORDER BY x COLLATE reverse\")\n"
1016+
"for row in cur:\n"
1017+
" print(row)\n"
1018+
"con.close()"
10001019

10011020
msgid "Remove a collation function by setting *callable* to ``None``."
10021021
msgstr ""

0 commit comments

Comments
 (0)