aboutsummaryrefslogtreecommitdiff
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 @@
1#!/bin/sh
2# This file is in the public domain.
3#
4# Wrapper around 'template.py', running it on all
5# of our jinja2 input files for all languages for which
6# we have translations.
7#
8# Note that the gettext files need to be prepared first. This script
9# is thus to be invoked via the Makefile.
10for f in $(git ls-files *.j2); do
11 for ld in locale/*/; do
12 l=$(basename $ld)
13 mkdir -p $(basename $l)
14 echo "$f: $l"
15 python template.py $f $l
16 done
17done