From 896e0268d767b3c9326b980c06af52e7d61828aa Mon Sep 17 00:00:00 2001 From: divverent Date: Sun, 14 Mar 2010 18:08:39 +0000 Subject: [PATCH] fix how plural of alias works wrong: sg. aliases, pl. aliasess right: sg. alias, pl. aliases git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10054 d7cf8633-e32d-0410-b094-e92efae38249 --- console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console.c b/console.c index b709f13a..455b6c33 100644 --- a/console.c +++ b/console.c @@ -2751,7 +2751,7 @@ void Con_CompleteCommandLine (void) a = Cmd_CompleteAliasCountPossible(s); if (a) { - Con_Printf("\n%i possible aliases%s\n", a, (a > 1) ? "s: " : ":"); + Con_Printf("\n%i possible alias%s\n", a, (a > 1) ? "es: " : ":"); Cmd_CompleteAliasPrint(s); } n = Nicks_CompleteCountPossible(key_line, key_linepos, s, true); -- 2.39.2