diff --git a/admin/include/add_core_tabs.inc.php b/admin/include/add_core_tabs.inc.php index d66403817..7e8e020a4 100644 --- a/admin/include/add_core_tabs.inc.php +++ b/admin/include/add_core_tabs.inc.php @@ -38,7 +38,7 @@ function add_core_tabs($sheets, $tab_id) case 'users': global $my_base_url; - $sheets['user_list'] = array('caption' => ''.l10n('User list'), 'url' => $my_base_url.'user_list'); + $sheets['user_list'] = array('caption' => ''.l10n('List'), 'url' => $my_base_url.'user_list'); $sheets['user_activity'] = array('caption' => ''.l10n('Activity'), 'url' => $my_base_url.'user_activity'); break; @@ -70,7 +70,7 @@ function add_core_tabs($sheets, $tab_id) case 'groups': global $my_base_url; - $sheets[''] = array('caption' => ' '.l10n('Groups'), 'url' => $my_base_url.'group_list'); + $sheets[''] = array('caption' => ' '.l10n('List'), 'url' => $my_base_url.'group_list'); break; case 'configuration': @@ -100,14 +100,14 @@ function add_core_tabs($sheets, $tab_id) case 'languages': global $my_base_url; - $sheets['installed'] = array('caption' => ''.l10n('Installed Languages'), 'url' => $my_base_url.'&tab=installed'); + $sheets['installed'] = array('caption' => ''.l10n('List'), 'url' => $my_base_url.'&tab=installed'); $sheets['update'] = array('caption' => ''.l10n('Check for updates'), 'url' => $my_base_url.'&tab=update'); $sheets['new'] = array('caption' => ''.l10n('Add New Language'), 'url' => $my_base_url.'&tab=new'); break; case 'menus': global $my_base_url; - $sheets[''] = array('caption' => ''.l10n('Menu Management'), 'url' => $my_base_url.'menubar'); + $sheets[''] = array('caption' => ''.l10n('List'), 'url' => $my_base_url.'menubar'); break; case 'nbm': @@ -133,7 +133,7 @@ function add_core_tabs($sheets, $tab_id) case 'plugins': global $my_base_url; - $sheets['installed'] = array('caption' => ''.l10n('Plugin list'), 'url' => $my_base_url.'&tab=installed'); + $sheets['installed'] = array('caption' => ''.l10n('List'), 'url' => $my_base_url.'&tab=installed'); $sheets['update'] = array('caption' => ''.l10n('Check for updates'), 'url' => $my_base_url.'&tab=update'); $sheets['new'] = array('caption' => ''.l10n('Other plugins'), 'url' => $my_base_url.'&tab=new'); break; @@ -145,7 +145,7 @@ function add_core_tabs($sheets, $tab_id) case 'themes': global $my_base_url; - $sheets['installed'] = array('caption' => ''.l10n('Installed Themes'), 'url' => $my_base_url.'&tab=installed'); + $sheets['installed'] = array('caption' => ''.l10n('List'), 'url' => $my_base_url.'&tab=installed'); $sheets['update'] = array('caption' => ''.l10n('Check for updates'), 'url' => $my_base_url.'&tab=update'); $sheets['new'] = array('caption' => ''.l10n('Add New Theme'), 'url' => $my_base_url.'&tab=new'); break;