From c19e3039a252f50b986a2e4b8e66817395f512ee Mon Sep 17 00:00:00 2001 From: Pablo Saratxaga Date: Wed, 5 Mar 2003 20:06:46 +0000 Subject: changed name of _() function to N() use of perl_checker to create pot file --- po/fake_c.pl | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 po/fake_c.pl (limited to 'po/fake_c.pl') diff --git a/po/fake_c.pl b/po/fake_c.pl deleted file mode 100755 index c456c7f1..00000000 --- a/po/fake_c.pl +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/perl -lp - -s|^(__?\()| $1|; # add a blank at the beginning (?!) - -s|_\(\[(.*),\s*(.*),\s*(.*)\]|ngettext($2,$3,$1)|; # special plural form handling - -s,\Ws/#.*//,,; # ugly special case - -s,\$#\w+,,; # $#xxx are removed -s,#([^+].*),"$1/*" . simpl($2) . "*/",e; - # rewrite comments to C format except for: - # - ``#+ xxx'' comments which are kept - # - ``$#xxx'' which are not comments - -s|//|/""/|g; # ensure // or not understood as comments - -s|$|\\n\\|; # multi-line strings not handled in C - -sub simpl { - local $_ = $_[0]; - s,\*/,,g; - $_; -} -- cgit v1.2.1