updates to Setup Wizard, set language as first input
diff --git a/erpnext/config/setup.py b/erpnext/config/setup.py
index 5be7e8c..6689dd7 100644
--- a/erpnext/config/setup.py
+++ b/erpnext/config/setup.py
@@ -3,14 +3,14 @@
 
 data = [
 	{
-		"label": _("Tools"),
+		"label": _("Settings"),
 		"icon": "icon-wrench",
 		"items": [
 			{
 				"type": "doctype",
 				"name": "Global Defaults",
 				"label": _("Global Settings"),
-				"description": _("Set the Date & Number Formats, Default Currency, Current Fiscal Year, etc."),
+				"description": _("Set Default Values like Company, Currency, Current Fiscal Year, etc."),
 				"hide_count": True
 			}
 		]
@@ -124,7 +124,7 @@
 
 def get_data():
 	out = list(data)
-	
+
 	for module, label, icon in (
 		("accounts", _("Accounts"), "icon-money"),
 		("stock", _("Stock"), "icon-truck"),
@@ -132,7 +132,7 @@
 		("buying", _("Buying"), "icon-shopping-cart"),
 		("hr", _("Human Resources"), "icon-group"),
 		("support", _("Support"), "icon-phone")):
-		
+
 		add_setup_section(out, "erpnext", module, label, icon)
 
-	return out
\ No newline at end of file
+	return out