summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-10-07 13:17:20 -0700
committerBrion Vibber <brion@pobox.com>2010-10-07 13:17:20 -0700
commitbd5925a6dbe53d08cde01618c73a7be034401455 (patch)
tree94cb91a088124ea6e2746402b675975403d7fe4c
parentfbfd96dfb945712b60f5b9f34aaaec5118e7c641 (diff)
Tweak bit.ly admin panel messages to distinguish the admin settings from config.php globals
-rw-r--r--plugins/BitlyUrl/bitlyadminpanelaction.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/BitlyUrl/bitlyadminpanelaction.php b/plugins/BitlyUrl/bitlyadminpanelaction.php
index 046ae52c2..05b8e8326 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.'));