String countHours(int difference) { int count = (difference / 3600000).truncate(); return count.toString() + (count > 1 ? ' hours' : ' hour'); }