diff options
Diffstat (limited to 'tools/ipf')
-rwxr-xr-x | tools/ipf/init_potfiles.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/ipf/init_potfiles.sh b/tools/ipf/init_potfiles.sh deleted file mode 100755 index e92c120..0000000 --- a/tools/ipf/init_potfiles.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -function keep_i18n() { - - while read file; - do - - if [ "$file" != "i18n.h" ]; then - - grep -q '_(' $file - - status=$? - - if [ "$status" -eq 0 ]; then - echo $file - fi - - fi - - done - -} - -mkdir -p po - -find . -type f -name '*.[ch]' | keep_i18n | sort > po/POTFILES.in |