String countDays(int difference) { int count = (difference / 86400000).truncate(); return count.toString() + (count > 1 ? ' days' : ' day'); }