fix(modules): shorten descriptions
diff --git a/erpnext/config/desktop.py b/erpnext/config/desktop.py
index cb88cf3..5d4dfa1 100644
--- a/erpnext/config/desktop.py
+++ b/erpnext/config/desktop.py
@@ -24,7 +24,7 @@
 			"icon": "octicon octicon-repo",
 			"type": "module",
 			"hidden": 1,
-			"description": "Accounts, billing, finances and payments; with cost center, taxes and budgeting."
+			"description": "Accounts, billing, payments, cost center and budgeting."
 		},
 		{
 			"module_name": "Selling",
@@ -34,7 +34,7 @@
 			"icon": "octicon octicon-tag",
 			"type": "module",
 			"hidden": 1,
-			"description": "All things Sales, Customer and Products."
+			"description": "Sales orders, quotations, customers and items."
 		},
 		{
 			"module_name": "Buying",
@@ -44,7 +44,7 @@
 			"icon": "octicon octicon-briefcase",
 			"type": "module",
 			"hidden": 1,
-			"description": "Purchasing, Suppliers and Products."
+			"description": "Purchasing, suppliers, material requests, and items."
 		},
 		{
 			"module_name": "Stock",
@@ -54,7 +54,7 @@
 			"icon": "octicon octicon-package",
 			"type": "module",
 			"hidden": 1,
-			"description": "Track Stock Transactions, Reports, and Serialized Items and Batches."
+			"description": "Stock transactions, reports, serial numbers and batches."
 		},
 		{
 			"module_name": "Assets",
@@ -64,7 +64,7 @@
 			"icon": "octicon octicon-database",
 			"hidden": 1,
 			"type": "module",
-			"description": "Asset Maintainance and Tools."
+			"description": "Asset movement, maintainance and tools."
 		},
 		{
 			"module_name": "Projects",
@@ -84,7 +84,7 @@
 			"icon": "octicon octicon-broadcast",
 			"type": "module",
 			"hidden": 1,
-			"description": "Everything in your sales pipeline, from Leads and Opportunities to Customers."
+			"description": "Sales pipeline, leads, opportunities and customers."
 		},
 		{
 			"module_name": "Help Desk",
@@ -104,7 +104,7 @@
 			"icon": "octicon octicon-organization",
 			"type": "module",
 			"hidden": 1,
-			"description": "Employee Lifecycle, Payroll, Shifts and Leaves."
+			"description": "Employees, attendance, payroll, leaves and shifts."
 		},
 		{
 			"module_name": "Quality Management",
@@ -127,7 +127,7 @@
 			"icon": "octicon octicon-tools",
 			"type": "module",
 			"hidden": 1,
-			"description": "Streamline your production with BOMS, Work Orders and Timesheets."
+			"description": "BOMS, work orders, operations, and timesheets."
 		},
 		{
 			"module_name": "Retail",
@@ -137,7 +137,7 @@
 			"icon": "octicon octicon-credit-card",
 			"type": "module",
 			"hidden": 1,
-			"description": "Point of Sale, Cashier Closing and Loyalty Programs."
+			"description": "Point of Sale and cashier closing."
 		},
 		{
 			"module_name": "Education",
@@ -147,7 +147,7 @@
 			"icon": "octicon octicon-mortar-board",
 			"type": "module",
 			"hidden": 1,
-			"description": "Manage Student Admissions, Fees, Subjects and Score Reports."
+			"description": "Student admissions, fees, courses and scores."
 		},
 
 		{
@@ -158,7 +158,7 @@
 			"icon": "fa fa-heartbeat",
 			"type": "module",
 			"hidden": 1,
-			"description": "Patients appointments, procedures and tests, with diagnosis reports and drug prescriptions."
+			"description": "Patient appointments, procedures and tests."
 		},
 		{
 			"module_name": "Agriculture",
@@ -168,7 +168,7 @@
 			"icon": "octicon octicon-globe",
 			"type": "module",
 			"hidden": 1,
-			"description": "Crop Cycles, Land Areas and Soil and Plant Analysis."
+			"description": "Crop cycles, land areas, soil and plant analysis."
 		},
 		{
 			"module_name": "Hotels",
@@ -178,7 +178,7 @@
 			"icon": "fa fa-bed",
 			"type": "module",
 			"hidden": 1,
-			"description": "Manage Hotel Rooms, Pricing, Reservation and Amenities."
+			"description": "Hotel rooms, pricing, reservation and amenities."
 		},
 
 		{
@@ -189,7 +189,7 @@
 			"icon": "octicon octicon-heart",
 			"type": "module",
 			"hidden": 1,
-			"description": "Make benefiting others easier with Volunteers, Memberships, Grants and Chapters."
+			"description": "Volunteers, memberships, grants and chapters."
 		},
 		{
 			"module_name": "Restaurant",
@@ -223,6 +223,6 @@
 			"link": '#marketplace/home',
 			"color": '#FF4136',
 			'standard': 1,
-			"description": "Publish items to other ERPNext users and start a conversation."
+			"description": "Publish items to other ERPNext users."
 		},
 	]
diff --git a/erpnext/setup/setup_wizard/operations/install_fixtures.py b/erpnext/setup/setup_wizard/operations/install_fixtures.py
index 6009bcc..d21de0e 100644
--- a/erpnext/setup/setup_wizard/operations/install_fixtures.py
+++ b/erpnext/setup/setup_wizard/operations/install_fixtures.py
@@ -252,7 +252,7 @@
 	from erpnext.buying.doctype.supplier_scorecard.supplier_scorecard import make_default_records
 	make_default_records()
 
-	make_records(records, True)
+	make_records(records)
 
 	set_more_defaults()
 
@@ -366,7 +366,7 @@
 		}
 	]
 
-	make_records(records, True)
+	make_records(records)
 
 
 def install_post_company_fixtures(args=None):
@@ -474,7 +474,7 @@
 		},
 	]
 
-	make_records(records, True)
+	make_records(records)
 
 
 def get_fy_details(fy_start_date, fy_end_date):