mirror of
https://github.com/thelounge/thelounge
synced 2024-12-20 17:33:15 +00:00
5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
Handlebars.registerHelper(
|
|
"users", function(count) {
|
|
return count + " " + (count == 1 ? "user" : "users");
|
|
}
|
|
);
|