This is very minor, but does generate an unnecessary PHP notice.
The first line in vbenterprisetranslator_functions_vbseo.php currently reads
it should bePHP Code:
if (!defined(DIR)) {
since defined() takes a string argument.PHP Code:
if (!defined('DIR')) {