summaryrefslogtreecommitdiff
path: root/docs/_locale/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_locale/Makefile')
-rw-r--r--docs/_locale/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/docs/_locale/Makefile b/docs/_locale/Makefile
deleted file mode 100644
index f0f7e62..0000000
--- a/docs/_locale/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-pull: venv
- echo "Pulling new translations from transiflex..."
- . ../../build/venv/bin/activate; tx pull -af
-
-push: venv
- echo "Pushing new documentation to transiflex..."
- . ../../build/venv/bin/activate; \
- sphinx-build -b gettext -E .. _pot && \
- sphinx-intl update-txconfig-resources -p _pot -d . --transifex-project-name bottle
- # Reset all *.pot files that differ only in one line (the creation date).
- for pot in `find _pot -name '*.pot'`; do\
- git diff --numstat -- $$pot | sed 's/\t/ /g' | grep -q '1 1 docs'\
- && echo "Not changed: $$pot" && git checkout -- $$pot || true;\
- done;
- . ../../build/venv/bin/activate; tx push -s
-
-venv: ../../build/venv/bin/activate
-../../build/venv/bin/activate: requirements.txt
- test -d ../../build/venv || python2 -mvirtualenv ../../build/venv
- ../../build/venv/bin/pip install -Ur requirements.txt
- touch ../../build/venv/bin/activate