Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
505 B
Text
11 lines
505 B
Text
const formatRelativeLocale = {
|
|
lastWeek: "'ថ្ងៃ'eeee'សប្តាហ៍មុនម៉ោង' p",
|
|
yesterday: "'ម្សិលមិញនៅម៉ោង' p",
|
|
today: "'ថ្ងៃនេះម៉ោង' p",
|
|
tomorrow: "'ថ្ងៃស្អែកម៉ោង' p",
|
|
nextWeek: "'ថ្ងៃ'eeee'សប្តាហ៍ក្រោយម៉ោង' p",
|
|
other: "P",
|
|
};
|
|
|
|
export const formatRelative = (token, _date, _baseDate, _options) =>
|
|
formatRelativeLocale[token];
|