Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8e9e8e2

Browse files
committed
Update translation from Transifex
1 parent b92cac2 commit 8e9e8e2

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Polskie tłumaczenie dokumentacji Pythona
22
========================================
33
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-and-build.yml/badge.svg)
4-
![42.95% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-42.95%25-0.svg)
4+
![43.40% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-43.40%25-0.svg)
55
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/dynamic/json.svg?label=całość&query=$.pl&url=http://gce.zhsj.me/python/39)
66
![16 tłumaczy](https://img.shields.io/badge/tłumaczy-16-0.svg)
77

tutorial/modules.po

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,28 +211,37 @@ msgid "Executing modules as scripts"
211211
msgstr "Wykonywanie modułów jako skryptów"
212212

213213
msgid "When you run a Python module with ::"
214-
msgstr ""
214+
msgstr "Kiedy uruchamiasz moduł Pythona::"
215215

216216
msgid ""
217217
"the code in the module will be executed, just as if you imported it, but "
218218
"with the ``__name__`` set to ``\"__main__\"``. That means that by adding "
219219
"this code at the end of your module::"
220220
msgstr ""
221+
"kod w module zostanie wykonany, tak jakbyś go zaimportował, ale z "
222+
"``__name__``ustawionym na``\"__main__\"``. To oznacza, że dodając ten kod na "
223+
"końcu swojego modułu::"
221224

222225
msgid ""
223226
"you can make the file usable as a script as well as an importable module, "
224227
"because the code that parses the command line only runs if the module is "
225228
"executed as the \"main\" file:"
226229
msgstr ""
230+
"możesz uczynić plik używalnym zarówno jako skrypt oraz jako importowalny "
231+
"moduł, ponieważ kod, który parsuje linię komend uruchamia się tylko jeśli "
232+
"moduł jest wykonywany jako plik „główny”:"
227233

228234
msgid "If the module is imported, the code is not run::"
229-
msgstr ""
235+
msgstr "Jeśli moduł jest zaimportowany, kod nie jest uruchamiany::"
230236

231237
msgid ""
232238
"This is often used either to provide a convenient user interface to a "
233239
"module, or for testing purposes (running the module as a script executes a "
234240
"test suite)."
235241
msgstr ""
242+
"Często się z tego korzysta, aby dodać wygodny interfejs użytkownika do "
243+
"modułu lub na potrzeby testów (uruchomienie modułu jako skryptu wykonuje "
244+
"zestaw testów)."
236245

237246
msgid "The Module Search Path"
238247
msgstr ""

0 commit comments

Comments
 (0)