From: Brion Vibber Date: Thu, 7 Oct 2010 20:17:20 +0000 (-0700) Subject: Tweak bit.ly admin panel messages to distinguish the admin settings from config.php... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bd5925a6dbe53d08cde01618c73a7be034401455;p=quix0rs-gnu-social.git Tweak bit.ly admin panel messages to distinguish the admin settings from config.php globals --- 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.'));