Skip to content

Commit

Permalink
add vehicle
Browse files Browse the repository at this point in the history
  • Loading branch information
UmairJibran committed Oct 3, 2021
1 parent df6e6ac commit 2a42243
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/locales/ur/vehicle/bicycle.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module["exports"] = ["سہراب سائکل", "چائنہ سائکل"];
1 change: 1 addition & 0 deletions lib/locales/ur/vehicle/fuel.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module["exports"] = ["ڈیزل", "بجلی", "پیٹرول", "شمسی"];
7 changes: 7 additions & 0 deletions lib/locales/ur/vehicle/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
var vehicle = {};
module["exports"] = vehicle;
vehicle.manufacturer = require("./manufacturer");
vehicle.model = require("./model");
vehicle.type = require("./vehicle_type");
vehicle.fuel = require("./fuel");
vehicle.bicycle = require("./bicycle");
10 changes: 10 additions & 0 deletions lib/locales/ur/vehicle/manufacturer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module['exports'] = [
'آستن مارٹن',
'بینٹلے',
'بی ایم ڈبلیو',
'فراری',
'ہنڈا',
'جیپ',
'مزدا',
'مرسیڈیز',
];
1 change: 1 addition & 0 deletions lib/locales/ur/vehicle/model.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module["exports"] = ["کرولا", "اکورڈ", "سوک"];
1 change: 1 addition & 0 deletions lib/locales/ur/vehicle/vehicle_type.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module['exports'] = ['ہیچ بیک', 'سواری'];

0 comments on commit 2a42243

Please sign in to comment.