summaryrefslogtreecommitdiff
path: root/actions/newgroup.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/newgroup.php
parent500157998a0d48ead7ea71f1cb77fc77c0ee7238 (diff)
i18n/L10n consistency updates.
Diffstat (limited to 'actions/newgroup.php')
-rw-r--r--actions/newgroup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/newgroup.php b/actions/newgroup.php
index 75bc293ec..ebfe9b599 100644
--- a/actions/newgroup.php
+++ b/actions/newgroup.php
@@ -139,13 +139,13 @@ class NewgroupAction extends Action
$this->showForm(_('Homepage is not a valid URL.'));
return;
} else if (!is_null($fullname) && mb_strlen($fullname) > 255) {
- $this->showForm(_('Full name is too long (max 255 chars).'));
+ $this->showForm(_('Full name is too long (maximum 255 characters).'));
return;
} else if (User_group::descriptionTooLong($description)) {
$this->showForm(sprintf(_('description is too long (max %d chars).'), User_group::maxDescription()));
return;
} else if (!is_null($location) && mb_strlen($location) > 255) {
- $this->showForm(_('Location is too long (max 255 chars).'));
+ $this->showForm(_('Location is too long (maximum 255 characters).'));
return;
}