mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-09-12 23:54:45 +08:00
fix(snooze): options text capitalization: title case => sentence case
This commit is contained in:
parent
8e26c8574f
commit
db5c822ccf
1 changed files with 12 additions and 12 deletions
|
@ -9,33 +9,33 @@ import {DATE_FORMAT_LONG} from './snooze-constants'
|
|||
|
||||
const SnoozeOptions = [
|
||||
[
|
||||
'Later Today',
|
||||
'Later today',
|
||||
'Tonight',
|
||||
'Tomorrow',
|
||||
],
|
||||
[
|
||||
'This Weekend',
|
||||
'Next Week',
|
||||
'Next Month',
|
||||
'This weekend',
|
||||
'Next week',
|
||||
'Next month',
|
||||
],
|
||||
]
|
||||
|
||||
const SnoozeDateGenerators = {
|
||||
'Later Today': DateUtils.laterToday,
|
||||
'Later today': DateUtils.laterToday,
|
||||
'Tonight': DateUtils.tonight,
|
||||
'Tomorrow': DateUtils.tomorrow,
|
||||
'This Weekend': DateUtils.thisWeekend,
|
||||
'Next Week': DateUtils.nextWeek,
|
||||
'Next Month': DateUtils.nextMonth,
|
||||
'This weekend': DateUtils.thisWeekend,
|
||||
'Next week': DateUtils.nextWeek,
|
||||
'Next month': DateUtils.nextMonth,
|
||||
}
|
||||
|
||||
const SnoozeIconNames = {
|
||||
'Later Today': 'later',
|
||||
'Later today': 'later',
|
||||
'Tonight': 'tonight',
|
||||
'Tomorrow': 'tomorrow',
|
||||
'This Weekend': 'weekend',
|
||||
'Next Week': 'week',
|
||||
'Next Month': 'month',
|
||||
'This weekend': 'weekend',
|
||||
'Next week': 'week',
|
||||
'Next month': 'month',
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue