diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/passwordsettings.php | 2 | ||||
-rw-r--r-- | actions/pathsadminpanel.php | 2 | ||||
-rw-r--r-- | actions/remotesubscribe.php | 2 | ||||
-rw-r--r-- | actions/siteadminpanel.php | 10 |
4 files changed, 8 insertions, 8 deletions
diff --git a/actions/passwordsettings.php b/actions/passwordsettings.php index 11d7bf785..4395f772b 100644 --- a/actions/passwordsettings.php +++ b/actions/passwordsettings.php @@ -110,7 +110,7 @@ class PasswordsettingsAction extends AccountSettingsAction $this->elementEnd('li'); $this->elementStart('li'); $this->password('confirm', _('Confirm'), - _('same as password above')); + _('Same as password above')); $this->elementEnd('li'); $this->elementEnd('ul'); diff --git a/actions/pathsadminpanel.php b/actions/pathsadminpanel.php index c4ab18c00..f1a2b1b8a 100644 --- a/actions/pathsadminpanel.php +++ b/actions/pathsadminpanel.php @@ -293,7 +293,7 @@ class PathsAdminPanelForm extends AdminForm function formActions() { - $this->out->submit('save', _('Save'), 'submit form_action-secondary', + $this->out->submit('save', _('Save'), 'submit', 'save', _('Save paths')); } diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 74025cf80..c723d53a1 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -166,7 +166,7 @@ class RemotesubscribeAction extends Action omb_oauth_datastore()); } catch (OMB_InvalidYadisException $e) { $this->showForm(_('Not a valid profile URL (no YADIS document or ' . - 'no or invalid XRDS defined).')); + 'invalid XRDS defined).')); return; } 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(); |