Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(analytics): shift numbers to digits instead of words #1846

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions packages/analytics/analytics-chart/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,15 +201,15 @@
"llm_latency_average": "LLM Latency (avg)"
},
"granularityAxisTitles": {
"tenSecondly": "@timestamp per ten seconds",
"thirtySecondly": "@timestamp per thirty seconds",
"tenSecondly": "@timestamp per 10 seconds",
"thirtySecondly": "@timestamp per 30 seconds",
"minutely": "@timestamp per minute",
"fiveMinutely": "@timestamp per five minutes",
"tenMinutely": "@timestamp per ten minutes",
"thirtyMinutely": "@timestamp per thirty minutes",
"fiveMinutely": "@timestamp per 5 minutes",
"tenMinutely": "@timestamp per 10 minutes",
"thirtyMinutely": "@timestamp per 30 minutes",
"hourly": "@timestamp per hour",
"twoHourly": "@timestamp per two hours",
"twelveHourly": "@timestamp per twelve hours",
"twoHourly": "@timestamp per 2 hours",
"twelveHourly": "@timestamp per 12 hours",
"daily": "@timestamp per day",
"weekly": "@timestamp per week"
},
Expand Down
Loading