diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-20 11:28:36 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-01-20 11:28:36 +0000 |
commit | 0c239a9d2037c2d4bc3883439ec76cd4d30e424b (patch) | |
tree | d7517f6f578ac229d8e6f702990dbcc6642f87a0 | |
parent | c14e063462e668e3e1c4c9d84828c1c3eb57abbb (diff) | |
download | drakwizard-0c239a9d2037c2d4bc3883439ec76cd4d30e424b.tar drakwizard-0c239a9d2037c2d4bc3883439ec76cd4d30e424b.tar.gz drakwizard-0c239a9d2037c2d4bc3883439ec76cd4d30e424b.tar.bz2 drakwizard-0c239a9d2037c2d4bc3883439ec76cd4d30e424b.tar.xz drakwizard-0c239a9d2037c2d4bc3883439ec76cd4d30e424b.zip |
remove useless script
-rwxr-xr-x | po/fake_c.pl | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/po/fake_c.pl b/po/fake_c.pl deleted file mode 100755 index 6eb9bf83..00000000 --- a/po/fake_c.pl +++ /dev/null @@ -1,24 +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,\Qs/#.*//,,; # ugly special case - -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 - -s/\\(\@|\$)/$1/g; # perl needs escaped special caracters but gettext must *not* - -sub simpl { - local $_ = $_[0]; - s,\*/,,g; - $_; -} |