diff options
| author | Umair Jibran <[email protected]> | 2021-10-03 18:04:17 +0500 |
|---|---|---|
| committer | Umair Jibran <[email protected]> | 2021-10-03 18:04:17 +0500 |
| commit | e266eb05ac6ffdb6db2fe72f86e5335564e6f8b7 (patch) | |
| tree | ef0b1cf8f11b6498805dc434ec223e12244a7036 | |
| parent | 1b0fef61e51f1541ce6f74254c2629e969c6ce1d (diff) | |
| download | faker-e266eb05ac6ffdb6db2fe72f86e5335564e6f8b7.tar.xz faker-e266eb05ac6ffdb6db2fe72f86e5335564e6f8b7.zip | |
add app
| -rw-r--r-- | lib/locales/ur/app/author.js | 1 | ||||
| -rw-r--r-- | lib/locales/ur/app/index.js | 5 | ||||
| -rw-r--r-- | lib/locales/ur/app/name.js | 10 | ||||
| -rw-r--r-- | lib/locales/ur/app/version.js | 1 |
4 files changed, 17 insertions, 0 deletions
diff --git a/lib/locales/ur/app/author.js b/lib/locales/ur/app/author.js new file mode 100644 index 00000000..78e1c460 --- /dev/null +++ b/lib/locales/ur/app/author.js @@ -0,0 +1 @@ +module['exports'] = ['#{Name.name}', '#{Company.name}']; diff --git a/lib/locales/ur/app/index.js b/lib/locales/ur/app/index.js new file mode 100644 index 00000000..7a421c94 --- /dev/null +++ b/lib/locales/ur/app/index.js @@ -0,0 +1,5 @@ +var app = {}; +module['exports'] = app; +app.name = require('./name'); +app.version = require('./version'); +app.author = require('./author'); diff --git a/lib/locales/ur/app/name.js b/lib/locales/ur/app/name.js new file mode 100644 index 00000000..b2358a68 --- /dev/null +++ b/lib/locales/ur/app/name.js @@ -0,0 +1,10 @@ +module['exports'] = [ + 'اوقات نماز', + 'قسط حساب', + 'نقشہ نگار', + 'دبیٗ وقت', + 'ڈالر رپیہ', + 'دراز', + 'پاک وھیلز', + 'واٹس ایپ', +]; diff --git a/lib/locales/ur/app/version.js b/lib/locales/ur/app/version.js new file mode 100644 index 00000000..15a81dc7 --- /dev/null +++ b/lib/locales/ur/app/version.js @@ -0,0 +1 @@ +module['exports'] = ['0.#.#', '0.##', '#.##', '#.#', '#.#.#']; |
