"Cant" -> "Can't"

This commit is contained in:
Robert Speicher 2012-08-10 19:47:54 -04:00
parent 6ebd360cf2
commit 6af38f5145
7 changed files with 8 additions and 8 deletions

View file

@ -66,7 +66,7 @@ class Project < ActiveRecord::Base
project
rescue => ex
project.error_code = :db
project.errors.add(:base, "Cant save project. Please try again later")
project.errors.add(:base, "Can't save project. Please try again later")
project
end
@ -112,7 +112,7 @@ class Project < ActiveRecord::Base
errors[:base] << ("Your own projects limit is #{owner.projects_limit}! Please contact administrator to increase it")
end
rescue
errors[:base] << ("Cant check your ability to create project")
errors[:base] << ("Can't check your ability to create project")
end
def repo_name