git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12584
7612ce4b-ef26-0410-bec9-
ea0150e637f0
echo $IND . "Plugin versions...<br />\n";
foreach ($plugins as $name) {
$plugin_version = get_plugin_version($name);
- echo $IND . $IND . $name . ' ' . (empty($plugin_version) ? '??' : $plugin_version) . "<br />\n";
+ $english_name = get_plugin_requirement($name, 'english_name');
+ echo $IND . $IND . (empty($english_name) ? $name . ' ' : $english_name . ' (' . $name . ') ') . (empty($plugin_version) ? '??' : $plugin_version) . "<br />\n";
// check if this plugin has any other plugin
// dependencies and if they are satisfied