Skip to content

Commit

Permalink
[fix] Copy paste error in ar local #505
Browse files Browse the repository at this point in the history
  • Loading branch information
Marak committed Sep 24, 2018
1 parent 98a47b9 commit afb8a7f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/locales/ar/index.js
Original file line number Diff line number Diff line change
@@ -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");
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");

0 comments on commit afb8a7f

Please sign in to comment.