mirror of
https://github.com/thelounge/thelounge
synced 2025-01-02 07:38:44 +00:00
5 lines
118 B
JavaScript
5 lines
118 B
JavaScript
Handlebars.registerHelper(
|
|
"users", function(count) {
|
|
return count + " " + (count === 1 ? "user" : "users");
|
|
}
|
|
);
|