I found a bug in the case checker script. I don't want any single letter words to be lower case. All words are to start with an upper case and his includes single letter words.
I made the following change to dlgCaseChecker.js which did not solve the problem:
// var littleWordString = "a|an|and|at|de|del|di|du|e|el|en|et|for|from|la|le|in|n|'n|n'|'n'|o'|'o'|of|or|por|the|to|un|une|und|with|vs|ft|feat|aka|vol|w/|y";
var littleWordString = "";
var forceCapString = "A|AC|EBN|...
As you can see in the screenshot, the "a" in U.S.A is lowercase, so is the a in the album title.

How is this resolved?