diff options
| author | DivisionByZero <[email protected]> | 2024-04-15 00:27:11 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-15 00:27:11 +0200 |
| commit | 453ea970a4c7ed19e9d41fd026923f42dbd4e768 (patch) | |
| tree | da1e48fa8fc1186b8b185a1f9e24c7d6e921c7cb /src/locales/ur | |
| parent | 734a7f3d55d1233d8182585bb79d2013f0ce289e (diff) | |
| download | faker-453ea970a4c7ed19e9d41fd026923f42dbd4e768.tar.xz faker-453ea970a4c7ed19e9d41fd026923f42dbd4e768.zip | |
refactor(locale)!: remove location data index-value-binding (#2476)
Diffstat (limited to 'src/locales/ur')
| -rw-r--r-- | src/locales/ur/location/direction.ts | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/locales/ur/location/direction.ts b/src/locales/ur/location/direction.ts index 83df0c85..a17ba90d 100644 --- a/src/locales/ur/location/direction.ts +++ b/src/locales/ur/location/direction.ts @@ -1,10 +1,6 @@ -export default [ - 'شمال', - 'مشرق', - 'جنوب', - 'مغرب', - 'شمال مشرق', - 'سمال مغرب', - 'جنوب مشرق', - 'جنوب مغرب', -]; +export default { + cardinal: ['شمال', 'مشرق', 'جنوب', 'مغرب'], + cardinal_abbr: ['شمال', 'مشرق', 'جنوب', 'مغرب'], + ordinal: ['شمال مشرق', 'سمال مغرب', 'جنوب مشرق', 'جنوب مغرب'], + ordinal_abbr: ['شمال مشرق', 'سمال مغرب', 'جنوب مشرق', 'جنوب مغرب'], +}; |
