mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-20 22:23:53 +08:00
fix(send-later): options text capitalization: title case => sentence case
This commit is contained in:
parent
9fa64c38e2
commit
d58f8567b5
1 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue