Changeset 45593
- Timestamp:
- 11/01/09 09:53:04 (2 months ago)
- Files:
-
- 1 modified
-
scummvm/branches/branch-1-0-0/tools/credits.pl (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
scummvm/branches/branch-1-0-0/tools/credits.pl
r45548 r45593 70 70 # & -> & 71 71 # ł -> l 72 # Š -> S 72 73 $text =~ s/á/a/g; 73 74 $text =~ s/é/e/g; … … 75 76 $text =~ s/ø/o/g; 76 77 $text =~ s/ł/l/g; 78 $text =~ s/Š/S/g; 77 79 78 80 $text =~ s/ä/a/g; … … 96 98 $text =~ s/ø/\\370/g; 97 99 $text =~ s/ł/l/g; 100 $text =~ s/Š/\\352/g; 98 101 99 102 $text =~ s/ä/\\344/g; … … 115 118 $text =~ s/ø/\\'bf/g; 116 119 $text =~ s/ł/\\uc0\\u322 /g; 120 $text =~ s/Š/\\uc0\\u352 /g; 117 121 118 122 $text =~ s/ä/\\'8a/g; … … 134 138 $text =~ s/ø/{\\o}/g; 135 139 $text =~ s/ł/{\\l}/g; 140 $text =~ s/Š/{\\v S}/g; 136 141 137 142 $text =~ s/ä/\\"a/g; … … 429 434 print "\n"; 430 435 } elsif ($mode eq "TEX") { 436 $text = html_entities_to_tex($text); 431 437 print '\item' . "\n"; 432 438 print $text; 433 439 print "\n"; 434 440 } elsif ($mode eq "RTF") { 441 $text = html_entities_to_rtf($text); 435 442 # Center text 436 443 print '\pard\qc' . "\n"; … … 438 445 print $text . "\\\n"; 439 446 } elsif ($mode eq "CPP") { 440 $te st = html_entities_to_ascii($text);447 $text = html_entities_to_ascii($text); 441 448 my $line_start = '"C0""'; 442 449 my $line_end = '",';
