# HG changeset patch # User Dan # Date 1208008295 14400 # Node ID 510160f15a693acf1b5aa6d5a68564b6ee0cc554 # Parent 8d3c49b8dc791fe63cc97799992fde454397ed24 [HIG] Added a little heading and intro message to the top of the plugin manager diff -r 8d3c49b8dc79 -r 510160f15a69 language/english/admin.json --- a/language/english/admin.json Sat Apr 12 09:50:49 2008 -0400 +++ b/language/english/admin.json Sat Apr 12 09:51:35 2008 -0400 @@ -382,6 +382,9 @@ msg_demo_mode: 'Hmm, enabling executables, are we? Tsk tsk. I\'d love to know what\'s in that EXE file you want to upload. OK, maybe you didn\'t enable EXEs. But nevertheless, changing allowed filetypes is disabled in the demo.', }, acppl: { + heading_main: 'Plugin management', + intro: 'This interface allows you to control what plugins are in use on this site. Everything you do on this page will be shown in the security logs. Some plugins don\'t fully support the newer features like installation, upgrading and uninstalls. Installing these plugins will still work, but sometimes authors include setup instructions in the plugin file. You should check the file for further setup instructions once the plugin is installed.', + lbl_plugin_name: '%plugin% by %author%', lbl_status_installed: 'Installed', lbl_status_uninstalled: 'Not installed', diff -r 8d3c49b8dc79 -r 510160f15a69 plugins/admin/PluginManager.php --- a/plugins/admin/PluginManager.php Sat Apr 12 09:50:49 2008 -0400 +++ b/plugins/admin/PluginManager.php Sat Apr 12 09:51:35 2008 -0400 @@ -313,6 +313,8 @@ // // start printing things out + echo '

' . $lang->get('acppl_heading_main') . '

'; + echo '

' . $lang->get('acppl_intro') . '

'; ?>