Tweak bit.ly admin panel messages to distinguish the admin settings from config.php globals

This commit is contained in:
Brion Vibber 2010-10-07 13:17:20 -07:00
parent fbfd96dfb9
commit bd5925a6db
1 changed files with 2 additions and 2 deletions

View File

@ -188,7 +188,7 @@ class BitlyAdminPanelForm extends AdminForm
'fieldset',
array('id' => 'settings_bitly')
);
$this->out->element('legend', null, _m('Default credentials'));
$this->out->element('legend', null, _m('Credentials'));
// Do we have global defaults to fall back on?
$login = $apiKey = false;
@ -196,7 +196,7 @@ class BitlyAdminPanelForm extends AdminForm
$haveGlobalDefaults = ($login && $apiKey);
if ($login && $apiKey) {
$this->out->element('p', 'form_guide',
_m('Leave these empty to use the default credentials.'));
_m('Leave these empty to use global default credentials.'));
} else {
$this->out->element('p', 'form_guide',
_m('If you leave these empty, bit.ly will be unavailable to users.'));