File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ jobs:
1515 - run : pip install transifex-client requests numpy
1616 - uses : actions/checkout@master
1717 - run : cp .github/workflows/.transifexrc $HOME
18- - run : ./manage_translations .py fetch
18+ - run : ./manage_translation .py fetch
1919 env :
2020 TX_TOKEN : ${{ secrets.TX_TOKEN }}
21- - run : ./manage_translations .py recreate_readme
21+ - run : ./manage_translation .py recreate_readme
2222 env :
2323 TX_TOKEN : ${{ secrets.TX_TOKEN }}
2424 - run : git config --local user.email 'maciej.olko@gmail.com'
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
22#
3- # This python file contains utility scripts to manage Python docs Polish translations .
3+ # This python file contains utility scripts to manage Python docs Polish translation .
44# It has to be run inside the python-docs-pl git root directory.
55#
66# Inspired by django-docs-translations script by claudep.
77#
8- # The following command is available:
8+ # The following commands are available:
99#
1010# * fetch: fetch translations from transifex.com and strip source lines from the
1111# files.
@@ -37,7 +37,6 @@ def fetch():
3737 if not po_file .endswith (".po" ):
3838 continue
3939 po_path = os .path .join (root , po_file )
40- print (po_path )
4140 call (f'msgcat --no-location -o { po_path } { po_path } ' , shell = True )
4241
4342
You can’t perform that action at this time.
0 commit comments