Frontmatter
| id | 8533 |
| title | Portal Ticket Timeline: Localized & Smart Timestamp Formatting |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Jan 11, 2026, 1:48 AM |
| updatedAt | Jan 11, 2026, 1:55 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8533 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | 8398 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 11, 2026, 1:55 AM |
Portal Ticket Timeline: Localized & Smart Timestamp Formatting
tobiu assigned to @tobiu on Jan 11, 2026, 1:54 AM

tobiu
Jan 11, 2026, 1:55 AM
Input from Gemini 3 Pro:
✦ I have implemented the smart localized timestamp formatting.
- Added
regexTimelineEventsupport for ISO 8601 strings.- Implemented
formatTimestampusingIntl.DateTimeFormatwith optimization (reusing formatters).- Updated
renderTimelineandfrontMatterToHtmlto use the new formatting logic.- Timestamps now show "Today HH:MM" or "MMM DD, YYYY HH:MM" based on the date.
tobiu closed this issue on Jan 11, 2026, 1:55 AM
tobiu added parent issue #8398 on Jan 11, 2026, 1:55 AM
Update
Portal.view.news.tickets.Componentto consume the new raw ISO timestamps from the re-synced markdown files.Tasks:
regexTimelineEventand the comment header parsing to match ISO 8601 strings (e.g.,2026-01-11T14:30:00Z) instead of the legacy formatted strings.formatTimestamp(isoString)method:Intl.DateTimeFormatto respect the user's locale.