Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-08 10:30:49 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-04-08 10:30:49 +0400
commit7f148385d45ca99cd7cda9ca8c27f4bfde363543 (patch)
treeac48c5bcfa75c5a48dbd9a8cbffa1f9a4c26ba3e
parentc4ef7f06a1db5f613fa9c98d114fe428767a0b50 (diff)
parente36108f75ba1c7f00886092197500ffc2fa618cc (diff)
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
-rw-r--r--app/models/project.rb2
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")