* [Cc]an't -> [Cc]annot

* [Cc]ould't -> [Cc]ould not
This commit is contained in:
Siebrand Mazeland
2009-11-08 23:22:38 +01:00
parent 221b779e88
commit 0ab17f382b
59 changed files with 4873 additions and 7741 deletions

View File

@@ -60,7 +60,7 @@ try {
'fullname' => $fullname));
if (empty($user)) {
throw new Exception("Can't register user '$nickname' with password '$password' and fullname '$fullname'.");
throw new Exception("Cannot register user '$nickname' with password '$password' and fullname '$fullname'.");
}
if (!empty($email)) {
@@ -71,7 +71,7 @@ try {
if (!$user->updateKeys($orig)) {
print "Failed!\n";
throw new Exception("Can't update email address.");
throw new Exception("Cannot update email address.");
}
}