Converts hardcoded UI copy to i18n keys across the app, adds global translation for non-component modules, and splits the English catalog into feature modules with duplicate-key detection.
7 lines
228 B
TypeScript
7 lines
228 B
TypeScript
export const timeMessages = {
|
|
"time.relative.justNow": "just now",
|
|
"time.relative.daysAgoShort": "{count}d ago",
|
|
"time.relative.hoursAgoShort": "{count}h ago",
|
|
"time.relative.minutesAgoShort": "{count}m ago",
|
|
} as const
|