From f268ea2b3c1ec5e3718dddea2aeaed0329eeaa24 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Thu, 7 Jul 2005 22:32:20 +0000 Subject: make CLI output use singular/plural when appropriate (bug #4654) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6047 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- cli.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cli.c') diff --git a/cli.c b/cli.c index a5a970dc2..f027dd6db 100755 --- a/cli.c +++ b/cli.c @@ -430,11 +430,11 @@ static int handle_chanlist(int fd, int argc, char *argv[]) ast_mutex_unlock(&c->lock); } if(!concise) { - ast_cli(fd, "%d active channel(s)\n", numchans); + ast_cli(fd, "%d active channel%s\n", numchans, (numchans!=1) ? "s" : ""); if (option_maxcalls) - ast_cli(fd, "%d of %d max active call(s) (%5.2f%% of capacity)\n", ast_active_calls(), option_maxcalls, ((float)ast_active_calls() / (float)option_maxcalls) * 100.0); + ast_cli(fd, "%d of %d max active call%s (%5.2f%% of capacity)\n", ast_active_calls(), option_maxcalls, (ast_active_calls()!=1) ? "s" : "", ((float)ast_active_calls() / (float)option_maxcalls) * 100.0); else - ast_cli(fd, "%d active call(s)\n", ast_active_calls()); + ast_cli(fd, "%d active call%s\n", ast_active_calls(), (ast_active_calls()!=1) ? "s" : ""); } return RESULT_SUCCESS; } -- cgit v1.2.3