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

@@ -39,14 +39,14 @@ if (have_option('i', 'id')) {
$id = get_option_value('i', 'id');
$user = User::staticGet('id', $id);
if (empty($user)) {
print "Can't find user with ID $id\n";
print "Cannot find user with ID $id\n";
exit(1);
}
} else if (have_option('n', 'nickname')) {
$nickname = get_option_value('n', 'nickname');
$user = User::staticGet('nickname', $nickname);
if (empty($user)) {
print "Can't find user with nickname '$nickname'\n";
print "Cannot find user with nickname '$nickname'\n";
exit(1);
}
} else {