);
}
export function getMessage(diffSize) {
const message = ngettext(
"There is %(threads)s new or updated thread. Click this message to show it.",
"There are %(threads)s new or updated threads. Click this message to show them.",
diffSize);
return interpolate(message, {
threads: diffSize
}, true);
}