mirror of
http://36.133.248.69:3088/admin/RentWeAppFront.git
synced 2026-03-12 11:52:26 +08:00
init
This commit is contained in:
44
node_modules/date-fns/locale/te/_lib/formatLong.mjs
generated
vendored
Normal file
44
node_modules/date-fns/locale/te/_lib/formatLong.mjs
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
|
||||
|
||||
// Source: https://www.unicode.org/cldr/charts/32/summary/te.html
|
||||
|
||||
// CLDR #1807 - #1811
|
||||
const dateFormats = {
|
||||
full: "d, MMMM y, EEEE",
|
||||
long: "d MMMM, y",
|
||||
medium: "d MMM, y",
|
||||
short: "dd-MM-yy",
|
||||
};
|
||||
|
||||
// CLDR #1807 - #1811
|
||||
const timeFormats = {
|
||||
full: "h:mm:ss a zzzz",
|
||||
long: "h:mm:ss a z",
|
||||
medium: "h:mm:ss a",
|
||||
short: "h:mm a",
|
||||
};
|
||||
|
||||
// CLDR #1815 - #1818
|
||||
const dateTimeFormats = {
|
||||
full: "{{date}} {{time}}'కి'",
|
||||
long: "{{date}} {{time}}'కి'",
|
||||
medium: "{{date}} {{time}}",
|
||||
short: "{{date}} {{time}}",
|
||||
};
|
||||
|
||||
export const formatLong = {
|
||||
date: buildFormatLongFn({
|
||||
formats: dateFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
|
||||
time: buildFormatLongFn({
|
||||
formats: timeFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
|
||||
dateTime: buildFormatLongFn({
|
||||
formats: dateTimeFormats,
|
||||
defaultWidth: "full",
|
||||
}),
|
||||
};
|
||||
Reference in New Issue
Block a user