diff --git a/frontend/src/components/date/dateRanges.ts b/frontend/src/components/date/dateRanges.ts index 91260424a..f20defb89 100644 --- a/frontend/src/components/date/dateRanges.ts +++ b/frontend/src/components/date/dateRanges.ts @@ -3,6 +3,7 @@ export const DATE_RANGES = { // Key is the title, as a translation string, the first entry of the value array // is the "from" date, the second one is the "to" date. 'today': ['now/d', 'now/d+1d'], + 'tomorrow': ['now/d+1d', 'now/d+2d'], 'lastWeek': ['now/w-1w', 'now/w'], 'thisWeek': ['now/w', 'now/w+1w'], diff --git a/frontend/src/i18n/lang/en.json b/frontend/src/i18n/lang/en.json index b1cd29e88..334e780a5 100644 --- a/frontend/src/i18n/lang/en.json +++ b/frontend/src/i18n/lang/en.json @@ -862,6 +862,7 @@ "date": "Date", "ranges": { "today": "Today", + "tomorrow": "Tomorrow", "thisWeek": "This Week", "restOfThisWeek": "The Rest of This Week", "nextWeek": "Next Week",