diff options
| author | Marak <[email protected]> | 2018-09-24 10:52:01 -0400 |
|---|---|---|
| committer | Marak <[email protected]> | 2018-09-24 10:55:08 -0400 |
| commit | afb8a7f2ac662ce742e18668d6537f0d42cba6e2 (patch) | |
| tree | 6ccc26c671d0faba793735b303ace1690cc7b790 | |
| parent | 98a47b9aa5d7e749dabb6c5afa0907d574904871 (diff) | |
| download | faker-afb8a7f2ac662ce742e18668d6537f0d42cba6e2.tar.xz faker-afb8a7f2ac662ce742e18668d6537f0d42cba6e2.zip | |
[fix] Copy paste error in `ar` local #505
| -rw-r--r-- | lib/locales/ar/index.js | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/locales/ar/index.js b/lib/locales/ar/index.js index 13c9242c..20a3ba96 100644 --- a/lib/locales/ar/index.js +++ b/lib/locales/ar/index.js @@ -1,8 +1,8 @@ -var en = {}; -module['exports'] = en; -en.title = "English"; -en.separator = " & "; -en.address = require("./address"); -en.phone_number = require("./phone_number"); -en.cell_phone = require("./cell_phone"); -en.commerce = require("./commerce");
\ No newline at end of file +var ar = {}; +module['exports'] = ar; +ar.title = "Arabic"; +ar.separator = " & "; +ar.address = require("./address"); +ar.phone_number = require("./phone_number"); +ar.cell_phone = require("./cell_phone"); +ar.commerce = require("./commerce");
\ No newline at end of file |
