Merge lp:~openerp-dev/openobject-addons/6.1-opw-578450-msh into lp:openobject-addons/6.1

Proposed by Mohammed Shekha(Open ERP)
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 6961
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-578450-msh
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
hr_timesheet/wizard/hr_timesheet_sign_in_out.py (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-578450-msh
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+121753@code.launchpad.net

Description of the change

Hello,

Fixed the issue of translation, added missing underscore for action string.

Thanks.

To post a comment you must log in.
Revision history for this message
Naresh(OpenERP) (nch-openerp) wrote :

Hello,

This bug was qualified as Confirmed on Trunk (means still existing and reproducible). A Merge Proposal for trunk was created to fix it. Here is the link to follow the MP on Launchpad https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-opw-578450-port-mma/+merge/135056 and be informed once it's been merged in trunk: ... If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh Soni

Unmerged revisions

6961. By Mohammed Shekha(Open ERP)

[FIX]Fixed the issue of translation for the action string for wizard.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'hr_timesheet/wizard/hr_timesheet_sign_in_out.py'
--- hr_timesheet/wizard/hr_timesheet_sign_in_out.py 2011-12-21 10:52:14 +0000
+++ hr_timesheet/wizard/hr_timesheet_sign_in_out.py 2012-08-29 05:40:38 +0000
@@ -143,7 +143,7 @@
143 model_data_ids = obj_model.search(cr,uid,[('model','=','ir.ui.view'),('name','=','view_hr_timesheet_sign_%s' % in_out)], context=context)143 model_data_ids = obj_model.search(cr,uid,[('model','=','ir.ui.view'),('name','=','view_hr_timesheet_sign_%s' % in_out)], context=context)
144 resource_id = obj_model.read(cr, uid, model_data_ids, fields=['res_id'], context=context)[0]['res_id']144 resource_id = obj_model.read(cr, uid, model_data_ids, fields=['res_id'], context=context)[0]['res_id']
145 return {145 return {
146 'name': 'Sign in / Sign out',146 'name': _('Sign in / Sign out'),
147 'view_type': 'form',147 'view_type': 'form',
148 'view_mode': 'tree,form',148 'view_mode': 'tree,form',
149 'res_model': 'hr.sign.%s.project' % in_out,149 'res_model': 'hr.sign.%s.project' % in_out,