From cb74822e7ad0d03fa0b4dbc3b9c4c14778ba3841 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 21 Oct 2010 13:20:21 +0200 Subject: i18n/L10n consistency updates. --- actions/profilesettings.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'actions/profilesettings.php') diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 0c1efa907..e1a0f8b6d 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -253,20 +253,20 @@ class ProfilesettingsAction extends AccountSettingsAction return; } else if (!is_null($fullname) && mb_strlen($fullname) > 255) { // TRANS: Validation error in form for profile settings. - $this->showForm(_('Full name is too long (max 255 characters).')); + $this->showForm(_('Full name is too long (maximum 255 characters).')); return; } else if (Profile::bioTooLong($bio)) { // TRANS: Validation error in form for profile settings. // TRANS: Plural form is used based on the maximum number of allowed // TRANS: characters for the biography (%d). - $this->showForm(sprintf(_m('Bio is too long (max %d character).', - 'Bio is too long (max %d characters).', + $this->showForm(sprintf(_m('Bio is too long (maximum %d character).', + 'Bio is too long (maximum %d characters).', Profile::maxBio()), Profile::maxBio())); return; } else if (!is_null($location) && mb_strlen($location) > 255) { // TRANS: Validation error in form for profile settings. - $this->showForm(_('Location is too long (max 255 characters).')); + $this->showForm(_('Location is too long (maximum 255 characters).')); return; } else if (is_null($timezone) || !in_array($timezone, DateTimeZone::listIdentifiers())) { // TRANS: Validation error in form for profile settings. @@ -278,7 +278,7 @@ class ProfilesettingsAction extends AccountSettingsAction return; } else if (!is_null($language) && strlen($language) > 50) { // TRANS: Validation error in form for profile settings. - $this->showForm(_('Language is too long (max 50 characters).')); + $this->showForm(_('Language is too long (maximum 50 characters).')); return; } -- cgit v1.2.3-54-g00ecf