feat(filters): add Tomorrow option to date range dropdown

Closes #2734
This commit is contained in:
Tink bot 2026-05-19 08:47:46 +00:00 committed by kolaente
parent 15badb382a
commit 3c048223c3
2 changed files with 2 additions and 0 deletions

View File

@ -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'],

View File

@ -862,6 +862,7 @@
"date": "Date",
"ranges": {
"today": "Today",
"tomorrow": "Tomorrow",
"thisWeek": "This Week",
"restOfThisWeek": "The Rest of This Week",
"nextWeek": "Next Week",