We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb541c8 commit 518690eCopy full SHA for 518690e
.github/workflows/ci.yml
@@ -192,11 +192,14 @@ jobs:
192
env:
193
TX_TOKEN: ${{ secrets.TX_TOKEN }}
194
195
+ # Remove PO files to pull and store exactly what is in Transifex, without leftovers
196
- name: Pull translations for all languages
197
if: ${{ github.event_name == 'schedule' ||
198
(github.event_name == 'workflow_dispatch' && github.event.inputs.pull == 'true') }}
199
working-directory: cpython/Doc/locales
200
run: |
201
+ find ./* -type f -name '*.po' -delete
202
+ find ./* -type d -empty -print -delete
203
tx pull --all --translations --force
204
205
0 commit comments