diff options
author | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-11-20 16:03:27 +0100 |
---|---|---|
committer | Siebrand Mazeland <s.mazeland@xs4all.nl> | 2009-11-20 16:03:27 +0100 |
commit | ac67847f9d08c110f78a372c47b63312de79527b (patch) | |
tree | 01bf9362051b6f0247ddd5656704596a025f4e67 | |
parent | a9f87de3146522544636427148dbdec7a2a05209 (diff) |
UI text fixes and tweaks.
-rw-r--r-- | actions/siteadminpanel.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index 40197d6e2..b963336e6 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -196,18 +196,18 @@ class SiteadminpanelAction extends AdminPanelAction if (in_array($values['site']['ssl'], array('sometimes', 'always'))) { if (empty($values['site']['sslserver'])) { - $this->clientError(_("You must set an SSL sever when enabling SSL.")); + $this->clientError(_("You must set an SSL server when enabling SSL.")); } } if (mb_strlen($values['site']['sslserver']) > 255) { - $this->clientError(_("Invalid SSL server. Max length is 255 characters.")); + $this->clientError(_("Invalid SSL server. The maximum length is 255 characters.")); } // Validate text limit if (!Validate::number($values['site']['textlimit'], array('min' => 140))) { - $this->clientError(_("Minimum text limit is 140c.")); + $this->clientError(_("Minimum text limit is 140 characters.")); } // Validate dupe limit @@ -281,7 +281,7 @@ class SiteAdminPanelForm extends AdminForm $this->unli(); $this->li(); $this->input('email', _('Email'), - _('contact email address for your site')); + _('Contact email address for your site')); $this->unli(); $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); @@ -364,7 +364,7 @@ class SiteAdminPanelForm extends AdminForm $this->li(); $this->input('frequency', _('Frequency'), - _('Snapshots will be sent once every N Web hits'), + _('Snapshots will be sent once every N web hits'), 'snapshot'); $this->unli(); |