This is very minor, but does generate an unnecessary PHP notice.

The first line in vbenterprisetranslator_functions_vbseo.php currently reads

PHP Code:
if (!defined(DIR)) { 
it should be

PHP Code:
if (!defined('DIR')) { 
since defined() takes a string argument.