Culturalia+IMDB script Bug

You found an error in the program ? Report it here
Post Reply
Ant Movie Lover

Culturalia+IMDB script Bug

Post by Ant Movie Lover »

Please note this bug in script Culturalia+IMDB :/

Sample 1:

Original Title:
Culturalia: Finding Nemo
Script: Finding nemo

Translated Title:
Culturalia: Buscando a Nemo
Script: Buscando a nemo


Sample 2:
Original Title:
Culturalia: Monsters, Inc.
Script: Inc. monsters

Translated Title:
Culturalia: Monstruos, SA
Script: Sa monstruos
antp
Site Admin
Posts: 9673
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

It's not a bug, it's a feature :D

check the value of TitleMixedCase in the beginning of the script

Or simply delete this block if you want to keep the title as returned by the server :

Code: Select all

  If TitleMixedCase then
     Result := AnsiMixedCase(Result, ' ')
  else
    begin
     Result := AnsiLowerCase(Result);
     Result := AnsiUpFirstLetter(Result);
    end;
(maybe I should make that by default it keeps the title as returned by the server)

About the position of the "Inc" and "Sa", it's the other parts of code located in the function "TransformTitle".

If you want to disable all these changes, simply remplace the two occurences of "TransformTitle(tmp)" by "tmp"
Ant Movie Lover

Thanks!

Post by Ant Movie Lover »

antp wrote:If you want to disable all these changes, simply remplace the two occurences of "TransformTitle(tmp)" by "tmp"
Thanks!
:grinking: :grinking: :grinking: :grinking:
Post Reply