[IMP]: Minor improvements in configuration wizard tooltip
authorrpa (Open ERP) <rpa@tinyerp.com>
Tue, 21 Sep 2010 06:59:49 +0000 (12:29 +0530)
committerrpa (Open ERP) <rpa@tinyerp.com>
Tue, 21 Sep 2010 06:59:49 +0000 (12:29 +0530)
bzr revid: rpa@tinyerp.com-20100921065949-pwngcf1catotm57i

addons/base_setup/installer.py
addons/crm/crm_installer.py
addons/hr/installer.py
addons/mrp/installer.py
addons/profile_tools/installer.py

index 7730333..76d07bf 100644 (file)
@@ -59,7 +59,7 @@ class base_setup_installer(osv.osv_memory):
             help="Helps you manage your purchase-related processes such as "
                  "requests for quotations, supplier invoices, etc..."),
         'hr':fields.boolean('Human Resources',
-            help="Helps you manage your human resources by encoding your employees structure, generating work sheets, tracking attendance and more"),
+            help="Helps you manage your human resources by encoding your employees structure, generating work sheets, tracking attendance and more."),
         'point_of_sale':fields.boolean('Point of Sales',
             help="Helps you get the most out of your points of sales with "
                  "fast sale encoding, simplified payment mode encoding, "
@@ -75,7 +75,7 @@ class base_setup_installer(osv.osv_memory):
         # Vertical modules
         'product_expiry':fields.boolean('Food Industry',
             help="Installs a preselected set of OpenERP applications "
-                "which will help you manage your industry"),
+                "which will help you manage your industry."),
         'association':fields.boolean('Associations',
             help="Installs a preselected set of OpenERP "
                  "applications which will help you manage your association "
index 3b1aae0..3860a69 100644 (file)
@@ -38,10 +38,10 @@ class crm_installer(osv.osv_memory):
         'crm_claim': fields.boolean('Claims', help="Manages the suppliers and customers claims, including your corrective or preventive actions."),
         'crm_caldav': fields.boolean('Calendar Synchronizing', help="Helps you to synchronize the meetings with other calendar clients and mobiles."),
         'sale_crm': fields.boolean('Opportunity to Quotation', help="This module relates sale from opportunity cases in the CRM."),
-        'fetchmail': fields.boolean('Fetch Emails', help="Allows you to receive E-Mails from POP / IMAP server"),
-        'thunderbird': fields.boolean('Thunderbird', help="Allows you to link your e-mail to OpenERP's documents. You can attach it to any existing one in OpenERP or create a new one"),
-        'outlook': fields.boolean('MS-Outlook', help="Allows you to link your e-mail to OpenERP's documents. You can attach it to any existing one in OpenERP or create a new one"),
-        'wiki_sale_faq': fields.boolean('Sale FAQ', help="Helps you manage wiki pages for Frequently Asked Questions on Sales Application"),
+        'fetchmail': fields.boolean('Fetch Emails', help="Allows you to receive E-Mails from POP/IMAP server."),
+        'thunderbird': fields.boolean('Thunderbird', help="Allows you to link your e-mail to OpenERP's documents. You can attach it to any existing one in OpenERP or create a new one."),
+        'outlook': fields.boolean('MS-Outlook', help="Allows you to link your e-mail to OpenERP's documents. You can attach it to any existing one in OpenERP or create a new one."),
+        'wiki_sale_faq': fields.boolean('Sale FAQ', help="Helps you manage wiki pages for Frequently Asked Questions on Sales Application."),
     }
 
     def fields_view_get(self, cr, uid, view_id=None, view_type='form', context=None, toolbar=False, submenu=False):
index 8a4a6ae..1d650d8 100644 (file)
@@ -44,7 +44,7 @@ class hr_installer(osv.osv_memory):
         'hr_attendance': fields.boolean('Attendances',
             help="Simplifies the management of employee's attendances."),
         'hr_payroll': fields.boolean('Payroll',
-            help="Generic Payroll system"),
+            help="Generic Payroll system."),
         'hr_payroll_account': fields.boolean('Payroll Accounting',
             help="Generic Payroll system Integrated with Accountings."),
         }
index b39ddb6..407d401 100644 (file)
@@ -28,7 +28,7 @@ class mrp_installer(osv.osv_memory):
         # Manufacturing Resource Planning
         'stock_location': fields.boolean('Advanced Routes',
             help="Manages product routes and paths within and between "
-                 "locations (e.g. warehouses)"),
+                 "locations (e.g. warehouses)."),
         'mrp_jit': fields.boolean('Just In Time Scheduling',
             help="Enables Just In Time computation of procurement orders."
                  "\n\nWhile it's more resource intensive than the default "
index 1e2ff65..06be50a 100644 (file)
@@ -25,9 +25,9 @@ class misc_tools_installer(osv.osv_memory):
     _inherit = 'res.config.installer'
 
     _columns = {
-        'lunch':fields.boolean('Lunch',help='Helps to manage Lunch Orders'),
-        'subscription':fields.boolean('Recurring Documents',help='Helps to add subscription on documents'),
-        'survey':fields.boolean('Survey',help='Manages Custom Surveys'),
+        'lunch':fields.boolean('Lunch',help='Helps to manage Lunch Orders.'),
+        'subscription':fields.boolean('Recurring Documents',help='Helps to add subscription on documents.'),
+        'survey':fields.boolean('Survey',help='Manages Custom Surveys.'),
         'idea':fields.boolean('Idea',help='Manages ideas and votes'),
         'audittrail':fields.boolean('Audit Trail',help="Lets you to track user's operations on specific Objects."),
     }