[IMP] Removed space in a note.

bzr revid: tde@openerp.com-20120221153903-px8wbaia3y9h4rvg
This commit is contained in:
Thibault Delavallée 2012-02-21 16:39:03 +01:00
parent 592a41fa3e
commit 413df33104
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ class hr_holidays(osv.osv):
def create_notificate(self, cr, uid, ids, context=None):
obj = self.browse(cr, uid, ids, context=context)[0]
self.message_append_note(cr, uid, ids, _('System notification'),
_("""The %s request '%s' has been created and is in draft mode. In this mode, it can be modified freely.
_("""The %s request '%s' has been created and is in draft mode. In this mode, it can be modified freely. \
Click on Confirm to confirm your request and ask for its validation by the managers.""")
% ('leave' if obj.type == 'remove' else 'allocation', obj.name), type='notification', context=context)
return True