[IMP] account: rename Analytic entries to Analytic items ,[project_long_term: Improve tooltips

bzr revid: sbh@tinyerp.com-20110104104412-b72ptzxzr3py1k9x
This commit is contained in:
Sbh (OpenERP) 2011-01-04 16:14:12 +05:30
parent 35422f7b7a
commit 643b28b9e5
3 changed files with 3 additions and 3 deletions

View File

@ -243,7 +243,7 @@
<!-- Entries by Line -->
<record id="action_account_tree1" model="ir.actions.act_window">
<field name="name">Analytic Entries</field>
<field name="name">Analytic Items</field>
<field name="res_model">account.analytic.line</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>

View File

@ -369,7 +369,7 @@ msgstr ""
#. module: project_long_term
#: help:project.phase,date_start:0
msgid "It's computed according to the phases order : the start date of the 1st phase is set by you while the other start dates depend on the end date of their previous phases"
msgid "It's computed by the scheduler according the project date or the end date of the previous phase."
msgstr ""
#. module: project_long_term

View File

@ -105,7 +105,7 @@ class project_phase(osv.osv):
_columns = {
'name': fields.char("Name", size=64, required=True),
'date_start': fields.date('Start Date', help="It's computed according to the phases order : the start date of the 1st phase is set by you while the other start dates depend on the end date of their previous phases", states={'done':[('readonly',True)], 'cancelled':[('readonly',True)]}),
'date_start': fields.date('Start Date', help="It's computed by the scheduler according the project date or the end date of the previous phase.", states={'done':[('readonly',True)], 'cancelled':[('readonly',True)]}),
'date_end': fields.date('End Date', help=" It's computed by the scheduler according to the start date and the duration.", states={'done':[('readonly',True)], 'cancelled':[('readonly',True)]}),
'constraint_date_start': fields.date('Minimum Start Date', help='force the phase to start after this date', states={'done':[('readonly',True)], 'cancelled':[('readonly',True)]}),
'constraint_date_end': fields.date('Deadline', help='force the phase to finish before this date', states={'done':[('readonly',True)], 'cancelled':[('readonly',True)]}),