diff --git a/src/lib/strings/time.ts b/src/lib/strings/time.ts index a375a6a5a4..0936797c8c 100644 --- a/src/lib/strings/time.ts +++ b/src/lib/strings/time.ts @@ -55,7 +55,7 @@ export function ago(i18n: I18n, date: number | string | Date): string { return i18n._( defineMessage({ message: `${hours}h`, - comment: `How many minutes has passed, displayed in a narrow form`, + comment: `How many hours has passed, displayed in a narrow form`, }), ) } else if (diffSeconds < MONTH_30) { @@ -64,7 +64,7 @@ export function ago(i18n: I18n, date: number | string | Date): string { return i18n._( defineMessage({ message: `${days}d`, - comment: `How many minutes has passed, displayed in a narrow form`, + comment: `How many days has passed, displayed in a narrow form`, }), ) } else {