* [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

@@ -85,7 +85,7 @@ function newSub($i)
$from = User::staticGet('nickname', $fromnick);
if (empty($from)) {
throw new Exception("Can't find user '$fromnick'.");
throw new Exception("Cannot find user '$fromnick'.");
}
$t = rand(0, $i - 1);
@@ -102,7 +102,7 @@ function newSub($i)
$to = User::staticGet('nickname', $tunic);
if (empty($to)) {
throw new Exception("Can't find user '$tunic'.");
throw new Exception("Cannot find user '$tunic'.");
}
subs_subscribe_to($from, $to);