summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/eo/_lib/formatLong/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/locale/eo/_lib/formatLong/index.js')
-rw-r--r--date-fns/src/locale/eo/_lib/formatLong/index.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/date-fns/src/locale/eo/_lib/formatLong/index.js b/date-fns/src/locale/eo/_lib/formatLong/index.js
new file mode 100644
index 0000000..67e73a7
--- /dev/null
+++ b/date-fns/src/locale/eo/_lib/formatLong/index.js
@@ -0,0 +1,38 @@
+import buildFormatLongFn from '../../../_lib/buildFormatLongFn/index'
+
+var dateFormats = {
+ full: "EEEE, do 'de' MMMM y",
+ long: 'y-MMMM-dd',
+ medium: 'y-MMM-dd',
+ short: 'yyyy-MM-dd'
+}
+
+var timeFormats = {
+ full: "Ho 'horo kaj' m:ss zzzz",
+ long: 'HH:mm:ss z',
+ medium: 'HH:mm:ss',
+ short: 'HH:mm'
+}
+
+var dateTimeFormats = {
+ any: '{{date}} {{time}}'
+}
+
+var formatLong = {
+ date: buildFormatLongFn({
+ formats: dateFormats,
+ defaultWidth: 'full'
+ }),
+
+ time: buildFormatLongFn({
+ formats: timeFormats,
+ defaultWidth: 'full'
+ }),
+
+ dateTime: buildFormatLongFn({
+ formats: dateTimeFormats,
+ defaultWidth: 'any'
+ })
+}
+
+export default formatLong