This feature use this function:
time_nanosleep() but I checked it and this is supported on PHP 5 version.
This is unavailable only for Windows versions below 5.3.
You have a good version of PHP but probably you have an issue in your version of PHP.
Here you have a full list of functions on your version:PHP Extensions List :: List all loaded extensions
You can find there a time_nanosleep().
We can make a test with this feature.
1. edit your php file:
Code:
forum root/includes/vbenterprisetranslator_functions.php
2. find and comment:
PHP Code:
if ($subTranslated && $vbulletin->options['vbenterprisetranslator_google_delay']) {
3.paste after this line (after comment)
PHP Code:
if ($subTranslated && $vbulletin->options['vbenterprisetranslator_google_delay'] && function_exists('time_nanosleep')) {
4. go to your admincp and enable this option.
If it will be work - you have a problem with your PHP version (some issues - because function time_nanosleep doesnt exist).