Troubleshooting

Natural Language Date in Reminders Doesn't Disappear: Fix

· Updated May 11, 2026 · 7 min read

Reminder natural language bug is the parser failure where Apple Reminders detects a date inside a task title but leaves the parsed text untouched, breaking on German, French, and complex English. The most common quick fix is to strip the date text manually after creation, or use Ultra Reminders' parser which removes parsed entities.

I first hit this on a Tuesday morning at the airport when I tried to dictate "21 Januar Brot kaufen" (German for "21 January buy bread") into Reminders. It correctly set the date to January 21st. It also left the title as "21 Januar Brot kaufen" with the date still embedded. I had a reminder titled with a date that was also set as the date. Looked stupid. Worked, technically. Looked stupid.

This is the natural language bug. It's been there for years. It's not getting fixed. Here's how to live with it, and here's the workaround that actually feels human.

What's happening

Apple Reminders detects date and time entities inside reminder titles and sets them as the due date, but does not strip them from the title text. This is a partial natural language implementation: parse without clean-up. Compare to Things 3 or Todoist, both of which strip parsed entities, leaving "Buy bread" as the title with the date set separately.

Apple's parser handles English well enough but breaks frequently on German, French, Hindi, and any complex date expression in English (think: "the third Tuesday of next month"). On German, the parser sometimes catches the date and sometimes doesn't, depending on word order. On French, similar. The behavior is inconsistent enough that you can't trust it.

The deeper reason is that Apple's implementation prioritizes "don't lose user data" over "do clean parsing." If they stripped wrong, your reminder title would lose meaning. So they don't strip. The cost is messy titles. The benefit is no data loss. Different design choice than Todoist made.

For the broader explainer on how natural language parsing works in modern to-do apps, see Natural Language Tasks: How Modern To-Do Apps Parse Your Words.

"I have like 200 reminders titled 'tomorrow at 3pm Buy milk' and 'next Friday Email Sundeep'. The dates parsed but the words are still there. Why."
paraphrased from r/macapps, January 2026

"Tried this in German. Half the time it parses, half the time the title is just gibberish."
paraphrased from r/applehelp, February 2026

Quick fixes

Fix 1: Strip the date manually after Siri creation

After Siri creates the reminder, open it and edit the title to remove the parsed date text. Tap the title, delete "tomorrow at 3pm" or whatever Siri left, save. The date sticks because it's stored separately. Adds 5 seconds per reminder. Annoying but reliable.

Fix 2: Capture title and date in two steps

Instead of saying "Remind me to buy bread tomorrow at 3pm," say "Remind me to buy bread." Siri creates the reminder with no date. Open the reminder, set the date manually using the date picker. Title stays clean. Date is correct. Two steps but no leftover text in the title.

Fix 3: Use the date picker in Reminders directly

Skip Siri entirely for date-bound tasks. Open Reminders, tap +, type the title, tap the calendar icon, pick the date. Clean title, clean date. Slower than Siri but produces the result you want.

Fix 4: Switch device language to English (US) if you're on a non-English locale

The parser is most reliable in English (US). If you're on English (UK), German, French, or any other locale, the parser quality drops. For people fluent in English, switching device language to English (US) gives the cleanest parse, even if it leaves the date text in the title.

Fix 5: Use the Shortcuts add-reminder action with explicit date input

In Shortcuts, the "Add New Reminder" action takes title and date as separate inputs. Build a Shortcut that prompts for both, runs the action, and saves a reminder with a clean title and a correctly set date. Slower than Siri but bypasses the parser entirely.

Fix 6: Switch to Ultra Reminders for true natural language

Ultra Reminders runs an on-device Qwen 3 model that strips parsed entities from the title. "Pay rent every last business day at 9am" becomes a reminder titled "Pay rent" with a recurring date set to "last business day of the month at 9am." The parsed date text is removed. The title stays human. Free 14-day trial.

Deep fixes

Deep fix 1: Build a "reminder cleanup" Shortcut that runs daily

Build a Shortcut that opens every reminder created today, looks at the title, and offers to strip recognizable date patterns. Runs at 11pm each night. Cleans up the day's accumulated mess. Useful if you're locked into Siri capture but care about title cleanliness.

Deep fix 2: Use a third-party app with clean parsing as a frontend

Apps like GoodTask layer on top of Apple Reminders' database and provide cleaner parsing. Capture in GoodTask, sync back to Reminders. Same approach Ultra Reminders takes, but GoodTask has been in the market longer and has different feature trade-offs. See Siri Misunderstanding Reminders: Why and How to Fix for the wider Siri parser issues.

Deep fix 3: File a Feedback Assistant report

This bug has been reported countless times. Apple has not addressed it. File a Feedback Assistant report anyway. The more reports, the higher the priority. If enough people file, Apple may eventually ship a "strip parsed text" toggle.

Walk: Settings then Privacy & Security then Analytics & Improvements then Feedback Assistant. Or use the standalone Feedback Assistant app on Mac. Be specific about the parsing failure and include screenshots.

Deep fix 4: Adopt a "verb first, no date" capture rule

Discipline yourself to never include dates in titles when speaking to Siri. Always capture as verb-first ("Remind me to buy bread") then set the date in the date picker. Removes the source of the bug entirely. The cost is two steps per capture instead of one.

Deep fix 5: Switch to Apple Intelligence devices for better parsing

On Apple Intelligence devices (iPhone 15 Pro and up, M-series Mac), the parser is somewhat better. Apple Intelligence handles complex dates more gracefully. Still leaves text in the title most of the time but the parsing accuracy is higher. See How Does Apple Intelligence Work in Reminders? for the broader Apple Intelligence story. On older devices, you're stuck with the legacy parser.

For more on how Apple Reminders works in general, see What Is Apple Reminders?. For the AI-native alternative architecture, see What Is an AI-Native To-Do App?.

When nothing works

If none of the above gets you a clean title with a correctly parsed date, the honest answer is that Apple Reminders is not the right tool for natural language input. The parser is half-built and Apple has not signaled a fix. You have three options.

First, accept the messy titles. They work. They look weird. The reminders fire on time. Move on. Most people do this.

Second, switch capture surface. Use the Reminders app's date picker directly. Skip Siri. Slower per task. Cleaner output. Trade off the speed for the appearance.

Third, layer a tool with real parsing on top. Ultra Reminders, GoodTask, or Things 3 (if you're willing to migrate fully). Each offers true natural language input that strips parsed entities. Ultra Reminders is the lightest-touch because it reads from and writes to Apple Reminders, so your iPhone, Watch, and shared lists keep working unchanged.

File a Feedback Assistant report. The bug has been there for years. The only thing that changes Apple's priorities is volume of reports.

FAQ

Q: Why doesn't Apple Reminders strip the parsed date from the title?

A: Apple's design choice prioritizes data preservation over clean parsing. If the parser stripped wrong (interpreted "Friday's deadline" as the day Friday rather than as part of the title), the user would lose meaning. So Apple parses without stripping. The cost is messy titles. The benefit is no data loss. Different from Things 3 or Todoist, which strip aggressively and accept occasional misparses.

Q: Does this happen on iPhone too, or just Mac?

A: Both. The parser is the same across Apple Reminders on iPhone, iPad, Mac, and via Siri on Watch and HomePod. The behavior is identical. The bug is in the shared Reminders codebase.

Q: Will Apple fix this?

A: Probably not soon. The bug has been documented in Feedback Assistant reports going back to iOS 13. Apple has shipped Apple Intelligence improvements that help parse complex dates but has not changed the core decision to leave parsed text in the title. Last we checked, no public roadmap mentions it. As of May 2026, no signal of a fix.

Q: Does Ultra Reminders strip parsed dates?

A: Yes. Ultra Reminders' on-device Qwen 3 parser strips recognized date and time entities from the title and stores them in the date field. "Pay rent every last business day at 9am" becomes a reminder titled "Pay rent" with the recurring rule set correctly. The parsed text is removed. Trial is 14 days free, then $35 one-time.

Q: Is the bug worse in non-English languages?

A: Yes. The parser is most reliable in English (US). German, French, Hindi, Spanish, and other locales experience inconsistent parsing where dates sometimes parse and sometimes don't. The title is left unchanged regardless. If you write in a non-English locale, the bug is more frequent and more visible. Switching to English (US) for parsing-heavy capture is a workaround but not a fix.

Ultra Reminders solves natural language input that strips parsed dates from the title. Free 14-day trial at ultrareminders.com.