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/fa | |
| 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/fa')
| -rw-r--r-- | src/locales/fa/location/direction.ts | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/src/locales/fa/location/direction.ts b/src/locales/fa/location/direction.ts index 2fe64b35..c8c29ce8 100644 --- a/src/locales/fa/location/direction.ts +++ b/src/locales/fa/location/direction.ts @@ -1,10 +1,6 @@ -export default [ - 'شمال', - 'شرق', - 'جنوب', - 'غرب', - 'شمال شرق', - 'شمال غرب', - 'جنوب شرق', - 'جنوب غرب', -]; +export default { + cardinal: ['شمال', 'شرق', 'جنوب', 'غرب'], + cardinal_abbr: ['شمالی', 'شرقی', 'جنوبی', 'غربی'], + ordinal: ['شمال شرق', 'شمال غرب', 'جنوب شرق', 'جنوب غرب'], + ordinal_abbr: ['شمال شرق', 'شمال غرب', 'جنوب شرق', 'جنوب غرب'], +}; |
