Page 1 of 1

Culturalia+IMDB script Bug

Posted: 2004-05-19 07:24:33
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

Posted: 2004-05-19 08:05:36
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"

Thanks!

Posted: 2004-05-19 09:08:12
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: