From bd5925a6dbe53d08cde01618c73a7be034401455 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 7 Oct 2010 13:17:20 -0700 Subject: [PATCH] Tweak bit.ly admin panel messages to distinguish the admin settings from config.php globals --- plugins/BitlyUrl/bitlyadminpanelaction.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/BitlyUrl/bitlyadminpanelaction.php b/plugins/BitlyUrl/bitlyadminpanelaction.php index 046ae52c2a..05b8e83267 100644 --- a/plugins/BitlyUrl/bitlyadminpanelaction.php +++ b/plugins/BitlyUrl/bitlyadminpanelaction.php @@ -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.'));