claude-code - 💡(How to fix) Fix UX: Usage reset time varies monthly + feedback accessibility for non-English users [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#49602Fetched 2026-04-17 08:36:32
View on GitHub
Comments
0
Participants
1
Timeline
3
Reactions
0
Author
Participants
Timeline (top)
labeled ×3

Two related UX issues affecting non-English users (reporting on behalf of a Japanese user):


Root Cause

Two related UX issues affecting non-English users (reporting on behalf of a Japanese user):


RAW_BUFFERClick to expand / collapse

Summary

Two related UX issues affecting non-English users (reporting on behalf of a Japanese user):


1. Usage reset time varies each month

The reset cycle is based on UTC (30 days × 24 hours from subscription start), which means the reset time in local time zones (e.g. JST = UTC+9) shifts by hours every month.

Example:

  • Month 1 reset: 14:00 JST
  • Month 2 reset: 08:00 JST

This makes it hard to track and plan usage. A fixed local-time reset (e.g. midnight in the user's timezone) or at minimum displaying the next reset time prominently in /usage output would help.


2. No way to submit feedback from within the session

The only feedback channel is the GitHub Issues page (English only). For non-English users, this creates a significant barrier.

Requests:

  • Add a /feedback command (or similar) that lets users submit feedback directly from the Claude Code session, in their language
  • Or add a localized feedback page / in-app submission flow

This would also help Anthropic collect more representative feedback from global users.


Reported by a Japanese power user via Claude Code session.

extent analysis

TL;DR

To improve the user experience for non-English users, consider implementing a fixed local-time reset for usage cycles and adding an in-session feedback submission feature.

Guidance

  • To address the varying reset time issue, calculate the reset time based on the user's local timezone instead of UTC, ensuring a consistent reset time each month.
  • Display the next reset time prominently in the /usage output to help users plan and track their usage.
  • Introduce a /feedback command or a localized feedback page to allow users to submit feedback directly from the session in their native language.
  • Consider integrating a translation service to handle feedback submissions in multiple languages.

Example

// Pseudocode example of calculating reset time based on user's local timezone
resetTime = subscriptionStart + (30 days × 24 hours)
resetTimeInLocalTimezone = resetTime.convertToUserTimezone()

Notes

The solution may require significant changes to the existing system, including timezone handling and feedback submission infrastructure. Additionally, ensuring proper translation and localization of the feedback submission feature will be crucial for non-English users.

Recommendation

Apply a workaround by displaying the next reset time prominently in the /usage output and introducing a /feedback command or localized feedback page to improve the user experience for non-English users. This approach addresses the immediate concerns and provides a foundation for further improvements.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

claude-code - 💡(How to fix) Fix UX: Usage reset time varies monthly + feedback accessibility for non-English users [1 participants]