summaryrefslogtreecommitdiff
path: root/template.sh
diff options
context:
space:
mode:
Diffstat (limited to 'template.sh')
-rwxr-xr-xtemplate.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/template.sh b/template.sh
deleted file mode 100755
index 040f3a00..00000000
--- a/template.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-# This file is in the public domain.
-#
-# Wrapper around 'template.py', running it on all
-# of our jinja2 input files for all languages for which
-# we have translations.
-#
-# Note that the gettext files need to be prepared first. This script
-# is thus to be invoked via the Makefile.
-for f in $(git ls-files *.j2); do
- for ld in locale/*/; do
- l=$(basename $ld)
- mkdir -p $(basename $l)
- echo "$f: $l"
- python template.py $f $l
- done
-done