Sorry, I assumed you knew something that you might not...
For every open brace { you need to have a corresponding closing brace }. Everything in one of the "classes" (everything below the line "class CfgSounds") must be between these braces. Basically the braces work in pairs, just like parenthesis in a math equation. At the end of your file, you have a closing brace }, but you have no opening brace before it. That would be like writing the equation:
7x(4+2)+3)
It just doesn't make sense, because the last parenthesis doesn't have any corresponding opening parenthesis.
So in your file, you need to move the line:
titles[]={"VKIprod"};
Somewhere inside of braces, and get rid of that last closing brace.