We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b30660 commit 2a48749Copy full SHA for 2a48749
Makefile
@@ -93,6 +93,14 @@ endif
93
done
94
95
96
+.PHONY: update_txconfig
97
+update_txconfig:
98
+ curl -L https://rawgit.com/python-doc-ja/cpython-doc-catalog/catalog-$(BRANCH)/Doc/locales/.tx/config |\
99
+ grep --invert-match '^file_filter = *' |\
100
+ sed -e 's/source_file = pot\/\(.*\)\.pot/trans.zh_TW = \1.po/' |\
101
+ sed -n 'w .tx/config'
102
+
103
104
.PHONY: fuzzy
105
fuzzy:
106
for file in *.po */*.po; do echo $$(msgattrib --only-fuzzy --no-obsolete "$$file" | grep -c '#, fuzzy') $$file; done | grep -v ^0 | sort -gr
0 commit comments