]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/data/locale-src/install
move wxPython to new trunk
[wxWidgets.git] / wxPython / demo / data / locale-src / install
diff --git a/wxPython/demo/data/locale-src/install b/wxPython/demo/data/locale-src/install
deleted file mode 100755 (executable)
index ee95d10..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-#----------------------------------------------------------------------
-# Run msgfmt on all the .po files, and install them to ../locale
-#----------------------------------------------------------------------
-
-DEST=../locale
-NAME=wxpydemo
-
-for po in ??.po ??_??.po; do
-    echo compiling message catalog for $po
-    BASE=`basename $po .po`
-    mkdir -p $DEST/$BASE/LC_MESSAGES
-    msgfmt -o $DEST/$BASE/LC_MESSAGES/$NAME.mo $po
-done
-