Start moving gencat back to the install step
diff --git a/locale_install.sh b/locale_install.sh
index 302cf24..b4134a0 100755
--- a/locale_install.sh
+++ b/locale_install.sh
@@ -34,9 +34,9 @@
 main_exec="$1"
 shift
 
-catalog_dir="$scriptdir/locales/catalogs"
+locales_dir="$scriptdir/locales"
 
-for file in $catalog_dir/*.cat; do
+for file in $locales_dir/*.msg; do
 
 	base=$(basename "$file")
 	name=$(removeext "$base")
@@ -50,7 +50,7 @@
 		linkname=$(removeext "$link")
 		"$INSTALL" -Dlm 755 "../../$linkname/LC_MESSAGES/$main_exec.cat" "$loc"
 	else
-		"$INSTALL" -Dm 755 "$file" "$loc"
+		gencat "$loc" "$file"
 	fi
 
 done