Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / scripts / templ2t8.pl
diff --git a/scripts/templ2t8.pl b/scripts/templ2t8.pl
deleted file mode 100755 (executable)
index f1e5bf6..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/perl -pli.orig
-
-#
-# template converter -> T8 converter
-#
-# wanna get rid of those <translate> tags?
-# no problem. use this script to fix most it.
-#
-# use: perl tmpl2t8.pl <file>
-#
-# will save the original file as file.orig
-#
-s/$/[% USE T8 %]/ if $. == 1;
-s/<translate>([^<]+)<\/translate>/[%- '$1' | \$T8 %]/xg;