fix(send-later): options text capitalization: title case => sentence case

This commit is contained in:
Drew Regitsky 2016-02-24 17:44:53 -08:00
parent 9fa64c38e2
commit d58f8567b5

View file

@ -11,11 +11,11 @@ import {DATE_FORMAT_SHORT, DATE_FORMAT_LONG} from './send-later-constants'
const SendLaterOptions = {
'In 1 hour': DateUtils.in1Hour,
'In 2 hours': DateUtils.in2Hours,
'Later Today': DateUtils.laterToday,
'Tomorrow Morning': DateUtils.tomorrow,
'Tomorrow Evening': DateUtils.tomorrowEvening,
'This Weekend': DateUtils.thisWeekend,
'Next Week': DateUtils.nextWeek,
'Later today': DateUtils.laterToday,
'Tomorrow morning': DateUtils.tomorrow,
'Tomorrow evening': DateUtils.tomorrowEvening,
'This weekend': DateUtils.thisWeekend,
'Next week': DateUtils.nextWeek,
}
class SendLaterPopover extends Component {