Welcome, Guest! Log In | Create Account

Changeset 45593

Show
Ignore:
Timestamp:
11/01/09 09:53:04 (2 months ago)
Author:
fingolfin
Message:

Sync credits.pl fixes between branch and trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • scummvm/branches/branch-1-0-0/tools/credits.pl

    r45548 r45593  
    7070        # &     -> & 
    7171        # ł    -> l 
     72        # Š  -> S 
    7273        $text =~ s/á/a/g; 
    7374        $text =~ s/é/e/g; 
     
    7576        $text =~ s/ø/o/g; 
    7677        $text =~ s/ł/l/g; 
     78        $text =~ s/Š/S/g; 
    7779 
    7880        $text =~ s/ä/a/g; 
     
    9698        $text =~ s/ø/\\370/g; 
    9799        $text =~ s/ł/l/g; 
     100        $text =~ s/Š/\\352/g; 
    98101 
    99102        $text =~ s/ä/\\344/g; 
     
    115118        $text =~ s/ø/\\'bf/g; 
    116119        $text =~ s/ł/\\uc0\\u322 /g; 
     120        $text =~ s/Š/\\uc0\\u352 /g; 
    117121 
    118122        $text =~ s/ä/\\'8a/g; 
     
    134138        $text =~ s/ø/{\\o}/g; 
    135139        $text =~ s/ł/{\\l}/g; 
     140        $text =~ s/Š/{\\v S}/g; 
    136141 
    137142        $text =~ s/ä/\\"a/g; 
     
    429434                print "\n"; 
    430435        } elsif ($mode eq "TEX") { 
     436                $text = html_entities_to_tex($text); 
    431437                print '\item' . "\n"; 
    432438                print $text; 
    433439                print "\n"; 
    434440        } elsif ($mode eq "RTF") { 
     441                $text = html_entities_to_rtf($text); 
    435442                # Center text 
    436443                print '\pard\qc' . "\n"; 
     
    438445                print $text . "\\\n"; 
    439446        } elsif ($mode eq "CPP") { 
    440                 $test = html_entities_to_ascii($text); 
     447                $text = html_entities_to_ascii($text); 
    441448                my $line_start = '"C0""'; 
    442449                my $line_end = '",';