diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-04-08 09:30:49 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2014-04-08 09:30:49 +0300 |
commit | 7f148385d45ca99cd7cda9ca8c27f4bfde363543 (patch) | |
tree | ac48c5bcfa75c5a48dbd9a8cbffa1f9a4c26ba3e | |
parent | c4ef7f06a1db5f613fa9c98d114fe428767a0b50 (diff) | |
parent | e36108f75ba1c7f00886092197500ffc2fa618cc (diff) | |
download | gitlab-ce-7f148385d45ca99cd7cda9ca8c27f4bfde363543.tar.gz |
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
-rw-r--r-- | app/models/project.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index 79066e1c54a..386ab542a68 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -240,7 +240,7 @@ class Project < ActiveRecord::Base def check_limit unless creator.can_create_project? - errors[:limit_reached] << ("Your own projects limit is #{creator.projects_limit}! Please contact administrator to increase it") + errors[:limit_reached] << ("Your project limit is #{creator.projects_limit} projects! Please contact your administrator to increase it") end rescue errors[:base] << ("Can't check your ability to create project") |