| 123456789101112131415161718192021222324252627282930313233343536373839 |
- import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.mjs";
- const dateFormats = {
- full: "EEEE, do MMMM, y",
- long: "do, MMMM, y",
- medium: "d, MMM, y",
- short: "dd/MM/yyyy",
- };
- const timeFormats = {
- full: "h:mm:ss a zzzz",
- long: "h:mm:ss a z",
- medium: "h:mm:ss a",
- short: "h:mm a",
- };
- 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",
- }),
- };
|