From 2aa7c4a68a70f190a99972bb853480181c9024da Mon Sep 17 00:00:00 2001 From: Hiroshi Fukada Date: Tue, 10 Dec 2024 15:12:41 -0500 Subject: [PATCH] fix(analytics): shift numbers to digits instead of words (#1846) --- .../analytics/analytics-chart/src/locales/en.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/analytics/analytics-chart/src/locales/en.json b/packages/analytics/analytics-chart/src/locales/en.json index 3d7ec204f8..9efce7cb51 100644 --- a/packages/analytics/analytics-chart/src/locales/en.json +++ b/packages/analytics/analytics-chart/src/locales/en.json @@ -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" },