summaryrefslogtreecommitdiff
path: root/actions/profilesettings.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-21 13:20:21 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-21 13:20:21 +0200
commitcb74822e7ad0d03fa0b4dbc3b9c4c14778ba3841 (patch)
tree86311962b61e35aaa7ae8627e76efafbc5ed887b /actions/profilesettings.php
parent500157998a0d48ead7ea71f1cb77fc77c0ee7238 (diff)
i18n/L10n consistency updates.
Diffstat (limited to 'actions/profilesettings.php')
-rw-r--r--actions/profilesettings.php10
1 files changed, 5 insertions, 5 deletions
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;
}