From 810ecd429a725087b9e3b4c12ada9ea3e25d4857 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 24 Apr 2018 13:01:20 +0300 Subject: [PATCH] Make condensed joins and parts shorter --- client/js/condensed.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/js/condensed.js b/client/js/condensed.js index 7f716c52..39e61640 100644 --- a/client/js/condensed.js +++ b/client/js/condensed.js @@ -40,10 +40,10 @@ function updateText(condensed, addedTypes) { strings.push(obj[type] + (obj[type] > 1 ? " users have changed hostname" : " user has changed hostname")); break; case "join": - strings.push(obj[type] + (obj[type] > 1 ? " users have joined the channel" : " user has joined the channel")); + strings.push(obj[type] + (obj[type] > 1 ? " users have joined" : " user has joined")); break; case "part": - strings.push(obj[type] + (obj[type] > 1 ? " users have left the channel" : " user has left the channel")); + strings.push(obj[type] + (obj[type] > 1 ? " users have left" : " user has left")); break; case "quit": strings.push(obj[type] + (obj[type] > 1 ? " users have quit" : " user has quit"));