summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/ro/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/locale/ro/index.js')
-rw-r--r--date-fns/src/locale/ro/index.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/date-fns/src/locale/ro/index.js b/date-fns/src/locale/ro/index.js
new file mode 100644
index 0000000..f22968c
--- /dev/null
+++ b/date-fns/src/locale/ro/index.js
@@ -0,0 +1,30 @@
+import formatDistance from './_lib/formatDistance/index'
+import formatLong from './_lib/formatLong/index'
+import formatRelative from './_lib/formatRelative/index'
+import localize from './_lib/localize/index'
+import match from './_lib/match/index'
+
+/**
+ * @type {Locale}
+ * @category Locales
+ * @summary Romanian locale.
+ * @language Romanian
+ * @iso-639-2 ron
+ * @author Sergiu Munteanu [@jsergiu]{@link https://github.com/jsergiu}
+ * @author Adrian Ocneanu [@aocneanu]{@link https://github.com/aocneanu}
+ * @author Mihai Ocneanu [@gandesc]{@link https://github.com/gandesc}
+ */
+var locale = {
+ code: 'ro',
+ formatDistance: formatDistance,
+ formatLong: formatLong,
+ formatRelative: formatRelative,
+ localize: localize,
+ match: match,
+ options: {
+ weekStartsOn: 1 /* Monday */,
+ firstWeekContainsDate: 1
+ }
+}
+
+export default locale