diff options
Diffstat (limited to 'perl-install/share/po/fake_c.pl')
-rwxr-xr-x | perl-install/share/po/fake_c.pl | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/perl-install/share/po/fake_c.pl b/perl-install/share/po/fake_c.pl deleted file mode 100755 index 64f20ca9c..000000000 --- a/perl-install/share/po/fake_c.pl +++ /dev/null @@ -1,15 +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|//|/""/|g; # ensure // or not understood as comments - -s,(^|[^\$])#([^+].*),\1/*\2*/,; # rewrite comments to C format except for: - # - ``#+ xxx'' comments which are kept - # - ``$#xxx'' which are not comments - -s|$|\\n\\|; # multi-line strings not handled in C - |