Subversion Repositories LCARS

Compare Revisions

Last modification

Ignore whitespace Rev 149 → Rev 150

/trunk/index.phtml
494,12 → 494,15
else
{
features.push('<span class="unavailable"'
+' title="Cookies supported, but no data for this site">' + cookiesText + '<\/span>');
+ ' title="<?php echo _('Cookies supported, but no data for this site'); ?>"'
+ '>' + cookiesText + '<\/span>');
}
}
else
{
features.push('<span class="offline" title="Cookies supported, but disabled">' + cookiesText + '<\/span>');
features.push('<span class="offline"'
+ ' title="<?php echo _('Cookies supported, but disabled'); ?>"'
+ '>' + cookiesText + '<\/span>');
}
}
 
532,11 → 535,13
{
features.push('<span title="'
+ navigator.plugins.length
+ ' plugins installed">Plugins<\/span>');
+ ' <?php echo _('plugins installed'); ?>">Plugins<\/span>');
}
else
{
features.push('<span class="unavailable" title="Plugins supported, but none detected">Plugins<\/span>');
features.push('<span class="unavailable"'
+ ' title="<?php echo _('Plugins supported, but none detected'); ?>"'
+ '>Plugins<\/span>');
}
}
 
555,7 → 560,9
}
var sFeatures = getFeatures();
document.write('<span id="features" title="' + stripTags(sFeatures) + '">' + sFeatures + '<\/span>');
document.write('<span id="features" title="'
+ stripTags(sFeatures) + '">' + sFeatures
+ '<\/span>');
 
var oFeatures;
var oFeaturesHtml;