@override String getHours(int hours) { if (hours == 0) { return ''; } else if (hours == 1) { return 'one hour'; } else if (hours == 2) { return 'two hours'; } else { return '$hours hours'; } }