From 8a0e095c58907b435574f3cb03331e5100d4a9aa Mon Sep 17 00:00:00 2001 From: jmantysalo <56348731+jmantysalo@users.noreply.github.com> Date: Mon, 21 Sep 2020 10:02:01 +0300 Subject: [PATCH] Fixed issue #16185: Typo "be have" (#1594) * Fix a typo. * Better wording. --- application/models/UserGroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/UserGroup.php b/application/models/UserGroup.php index 8cc5d3afbb9..c2c9ce3a09f 100644 --- a/application/models/UserGroup.php +++ b/application/models/UserGroup.php @@ -67,7 +67,7 @@ public function rules() 'length', 'min' => 1, 'max' => 20, - 'tooShort' => gt("Name should be at least have one sign"), + 'tooShort' => gt("Name can not be empty."), 'tooLong' => gt('Failed to add group! Group name length more than 20 characters.')), ); }