diff options
| author | Umair Jibran <[email protected]> | 2021-10-03 18:05:11 +0500 |
|---|---|---|
| committer | Umair Jibran <[email protected]> | 2021-10-03 18:05:11 +0500 |
| commit | d4e1ecdc0dcdcf220a769bce0df4a98335ae8657 (patch) | |
| tree | 58653939ed07ebdfa0e23074ffe3b575ecb610a5 | |
| parent | f108ab39447aaefd2b82c7adb80745ed28ade52b (diff) | |
| download | faker-d4e1ecdc0dcdcf220a769bce0df4a98335ae8657.tar.xz faker-d4e1ecdc0dcdcf220a769bce0df4a98335ae8657.zip | |
add date
| -rw-r--r-- | lib/locales/ur/date/index.js | 4 | ||||
| -rw-r--r-- | lib/locales/ur/date/month.js | 30 | ||||
| -rw-r--r-- | lib/locales/ur/date/weekday.js | 4 |
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: ['اتور', 'پیر', 'منگل', 'بدھ', 'جمعرات', 'جمعہ', 'ہفتہ'], +}; |
