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