aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorfariborzemami <[email protected]>2020-01-31 23:18:35 +0330
committerfariborzemami <[email protected]>2020-01-31 23:18:35 +0330
commite7c724c5966b66ec6397cdf13dc7b4d7a3a5c6da (patch)
tree49fa76b98bfbae68104328cb836074da829e9774 /lib
parent8f282d717271a2443ce293917732ead151c0f68d (diff)
downloadfaker-e7c724c5966b66ec6397cdf13dc7b4d7a3a5c6da.tar.xz
faker-e7c724c5966b66ec6397cdf13dc7b4d7a3a5c6da.zip
feat: add vehicle to "fa" library
Diffstat (limited to 'lib')
-rw-r--r--lib/locales/fa/index.js1
-rw-r--r--lib/locales/fa/vehicle/fuel.js6
-rw-r--r--lib/locales/fa/vehicle/index.js6
-rw-r--r--lib/locales/fa/vehicle/manufacturer.js30
-rw-r--r--lib/locales/fa/vehicle/model.js37
-rw-r--r--lib/locales/fa/vehicle/vehicle_type.js10
6 files changed, 90 insertions, 0 deletions
diff --git a/lib/locales/fa/index.js b/lib/locales/fa/index.js
index e763ff6c..41901b45 100644
--- a/lib/locales/fa/index.js
+++ b/lib/locales/fa/index.js
@@ -7,3 +7,4 @@ fa.phone_number = require("./phone_number");
fa.lorem = require("./lorem");
fa.cell_phone = require("./cell_phone");
fa.date = require("./date");
+fa.vehicle = require("./vehicle");
diff --git a/lib/locales/fa/vehicle/fuel.js b/lib/locales/fa/vehicle/fuel.js
new file mode 100644
index 00000000..45846888
--- /dev/null
+++ b/lib/locales/fa/vehicle/fuel.js
@@ -0,0 +1,6 @@
+module["exports"] = [
+ "دیزل",
+ "الکتریکی",
+ "بنزین",
+ "هیبرید"
+];
diff --git a/lib/locales/fa/vehicle/index.js b/lib/locales/fa/vehicle/index.js
new file mode 100644
index 00000000..73407875
--- /dev/null
+++ b/lib/locales/fa/vehicle/index.js
@@ -0,0 +1,6 @@
+var vehicle = {};
+module["exports"] = vehicle;
+vehicle.manufacturer = require("./manufacturer");
+vehicle.model = require("./model");
+vehicle.type = require("./vehicle_type");
+vehicle.fuel = require("./fuel");
diff --git a/lib/locales/fa/vehicle/manufacturer.js b/lib/locales/fa/vehicle/manufacturer.js
new file mode 100644
index 00000000..53cfc7de
--- /dev/null
+++ b/lib/locales/fa/vehicle/manufacturer.js
@@ -0,0 +1,30 @@
+module["exports"] = [
+ "شورولت",
+ "کادیلاک",
+ "فورد",
+ "کرایسلر",
+ "دوج",
+ "جیپ",
+ "تسلا",
+ "تویوتا",
+ "هوندا",
+ "نیسان",
+ "آٔ‌ئودی",
+ "مرسدس بنز",
+ "بی ام و",
+ "ولکس واگن",
+ "پورشه",
+ "جگوار",
+ "استون مارتین",
+ "لندرور",
+ "بنتلی",
+ "مینی",
+ "رولز رویس",
+ "فیات",
+ "لامبورگینی",
+ "مازراتی",
+ "فراری",
+ "بوگاتی",
+ "کیا",
+ "هیوندای"
+];
diff --git a/lib/locales/fa/vehicle/model.js b/lib/locales/fa/vehicle/model.js
new file mode 100644
index 00000000..b465f194
--- /dev/null
+++ b/lib/locales/fa/vehicle/model.js
@@ -0,0 +1,37 @@
+module["exports"] = [
+ "فیستا",
+ "فوکوس",
+ "تاروس",
+ "موستانگ",
+ "اکسپلورر",
+ "کروز",
+ "مالیبو",
+ "ایمپالا",
+ "کامارو",
+ "کروت",
+ "کولورادو",
+ "سیلورادو",
+ "اسکالید",
+ "آلپاین",
+ "چارجر",
+ "چلنجر",
+ "رانگلر",
+ "گرند چروکی",
+ "رودستر",
+ "کمری",
+ "پریوس",
+ "لندکروزر",
+ "آکورد",
+ "سیویک",
+ "المنت",
+ "سنترا",
+ "آلتیما",
+ "یبتل",
+ "جتا",
+ "گلف",
+ "911",
+ "اسپایدر",
+ "کونتاچ",
+ "مورسیه لاگو",
+ "اونتادور",
+];
diff --git a/lib/locales/fa/vehicle/vehicle_type.js b/lib/locales/fa/vehicle/vehicle_type.js
new file mode 100644
index 00000000..9a1505fb
--- /dev/null
+++ b/lib/locales/fa/vehicle/vehicle_type.js
@@ -0,0 +1,10 @@
+module["exports"] = [
+ "ون",
+ "کوپه",
+ "پیکاپ",
+ "مینی ون",
+ "ون مسافرتی",
+ "شاسی بلند",
+ "سدان",
+ "استیشن"
+];