Skip to content

Commit d54269e

Browse files
committed
revert temporary changes on the branch
1 parent daabd8c commit d54269e

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed

.github/workflows/update-and-build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
version: ['3.10']
13+
version: [3.8, 3.9, '3.10']
1414
steps:
1515
- uses: styfle/cancel-workflow-action@main
1616
with:
@@ -22,7 +22,7 @@ jobs:
2222
- run: pip install requests
2323
- uses: actions/checkout@master
2424
with:
25-
ref: ${{ matrix.version }}-tx-go-cli
25+
ref: ${{ matrix.version }}
2626
- run: ./manage_translation.py recreate_tx_config
2727
env:
2828
TX_TOKEN: ${{ secrets.TX_TOKEN }}
@@ -41,7 +41,7 @@ jobs:
4141
- run: git commit -m 'Update translation from Transifex' || true
4242
- uses: ad-m/github-push-action@master
4343
with:
44-
branch: ${{ matrix.version }}-tx-go-cli
44+
branch: ${{ matrix.version }}
4545
github_token: ${{ secrets.GITHUB_TOKEN }}
4646
- uses: peter-evans/repository-dispatch@main
4747
with:
@@ -51,7 +51,7 @@ jobs:
5151
runs-on: ubuntu-latest
5252
strategy:
5353
matrix:
54-
version: ['3.10']
54+
version: [3.8, 3.9, '3.10']
5555
format: [html, latex]
5656
needs: ['update-translation']
5757
steps:
@@ -66,7 +66,7 @@ jobs:
6666
working-directory: ./Doc
6767
- uses: actions/checkout@master
6868
with:
69-
ref: ${{ matrix.version }}-tx-go-cli
69+
ref: ${{ matrix.version }}
7070
path: Doc/locales/pl/LC_MESSAGES
7171
- run: git pull
7272
working-directory: ./Doc/locales/pl/LC_MESSAGES
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: ubuntu-latest
8181
strategy:
8282
matrix:
83-
version: ['3.10']
83+
version: [3.8, 3.9, '3.10']
8484
needs: ['build-translation']
8585
steps:
8686
- uses: actions/download-artifact@master

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-
![46.01% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-46.01%25-0.svg)
4+
![45.83% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-46.01%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/newest)
66
![18 tłumaczy](https://img.shields.io/badge/tłumaczy-18-0.svg)
77

tutorial/modules.po

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -366,22 +366,12 @@ msgid ""
366366
"have an ``opt-`` tag and are usually smaller. Future releases may change "
367367
"the effects of optimization."
368368
msgstr ""
369-
"Możesz użyć przełączników :option:`-O` lub :option:`-OO` na komendzie "
370-
"``python``, aby zmniejszyć rozmiar skompilowanego modułu. Przełącznik ``-O`` "
371-
"usuwa instrukcje assert. Przełącznik ``-OO`` usuwa zarówno instrukcje assert "
372-
"jak i docstringi. Jako że niektóre programy mogą polegać na dostępności "
373-
"powyższych, powinieneś(-nnaś) używać tylko jeśli wiesz, co robisz. "
374-
"„Zoptymalizowane” moduły mają tag ``opt-`` i zazwyczaj są mniejsze. Przyszłe "
375-
"wydania mogą zmienić efekty optymalizacji."
376369

377370
msgid ""
378371
"A program doesn't run any faster when it is read from a ``.pyc`` file than "
379372
"when it is read from a ``.py`` file; the only thing that's faster about ``."
380373
"pyc`` files is the speed with which they are loaded."
381374
msgstr ""
382-
"Program nie wykonuje się ani chwili szybciej, gdy jest czytany z pliku ``."
383-
"pyc`` niż gdy jest czytany z pliku ``.py``. Jedyna rzecz, która jest szybsza "
384-
"w plikach ``.pyc`` to szybkość, w jakiej są one ładowane."
385375

386376
msgid ""
387377
"The module :mod:`compileall` can create .pyc files for all modules in a "

0 commit comments

Comments
 (0)