mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-08 09:52:26 +08:00
12 lines
505 B
JavaScript
12 lines
505 B
JavaScript
|
|
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];
|