aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmair Jibran <[email protected]>2021-10-03 18:05:11 +0500
committerUmair Jibran <[email protected]>2021-10-03 18:05:11 +0500
commitd4e1ecdc0dcdcf220a769bce0df4a98335ae8657 (patch)
tree58653939ed07ebdfa0e23074ffe3b575ecb610a5
parentf108ab39447aaefd2b82c7adb80745ed28ade52b (diff)
downloadfaker-d4e1ecdc0dcdcf220a769bce0df4a98335ae8657.tar.xz
faker-d4e1ecdc0dcdcf220a769bce0df4a98335ae8657.zip
add date
-rw-r--r--lib/locales/ur/date/index.js4
-rw-r--r--lib/locales/ur/date/month.js30
-rw-r--r--lib/locales/ur/date/weekday.js4
3 files changed, 38 insertions, 0 deletions
diff --git a/lib/locales/ur/date/index.js b/lib/locales/ur/date/index.js
new file mode 100644
index 00000000..8c45d3f6
--- /dev/null
+++ b/lib/locales/ur/date/index.js
@@ -0,0 +1,4 @@
+var date = {};
+module["exports"] = date;
+date.month = require("./month");
+date.weekday = require("./weekday");
diff --git a/lib/locales/ur/date/month.js b/lib/locales/ur/date/month.js
new file mode 100644
index 00000000..2c109110
--- /dev/null
+++ b/lib/locales/ur/date/month.js
@@ -0,0 +1,30 @@
+module['exports'] = {
+ wide: [
+ 'جنوری',
+ 'فروری',
+ 'مارچ',
+ 'اپریل',
+ 'مئ',
+ 'جون',
+ 'جولائ',
+ 'اگست',
+ 'ستمبر',
+ 'اکتوبر',
+ 'نومبر',
+ 'دسمبر',
+ ],
+ wide_context: [
+ 'جنوری',
+ 'فروری',
+ 'مارچ',
+ 'اپریل',
+ 'مئ',
+ 'جون',
+ 'جولائ',
+ 'اگست',
+ 'ستمبر',
+ 'اکتوبر',
+ 'نومبر',
+ 'دسمبر',
+ ],
+};
diff --git a/lib/locales/ur/date/weekday.js b/lib/locales/ur/date/weekday.js
new file mode 100644
index 00000000..750a13e2
--- /dev/null
+++ b/lib/locales/ur/date/weekday.js
@@ -0,0 +1,4 @@
+module['exports'] = {
+ wide: ['اتور', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ'],
+ wide_context: ['اتور', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ'],
+};