7 if ($ident =~ /(XX.*XX)/)
10 for ($i = 0; $i < length($text); $i += 2)
11 { $token = substr($text,$i,2);
12 next if ($token eq "XX");
13 if ($token =~ /^_(.)/) { $string = "$string$1"; }
15 { $token =~ /^(.)(.)/;
16 $c = chr(hex($1) * 16 + hex($2));
17 $string = "$string$c";
26 { s/_(XX.*)__FP\d+(.*)/\1(\2 *)/go;
27 s/a_($id) \*/translate($1)/goe;
28 s/a_($id<[^\>]+>) \*/translate($1)/goe;
29 s/(XX.*XX)/translate($1)/goe;