[MERGE] translated messages for share

bzr revid: fp@tinyerp.com-20121112091753-5ux4iq4fmo1qvz13
This commit is contained in:
Fabien Pinckaers 2012-11-12 10:17:53 +01:00
commit 8410845e7f
2 changed files with 3 additions and 3 deletions

View File

@ -35,8 +35,8 @@ class share_wizard_portal(osv.TransientModel):
def _user_type_selection(self, cr, uid, context=None):
selection = super(share_wizard_portal, self)._user_type_selection(cr, uid, context=context)
selection.extend([('existing','Users you already shared with'),
('groups','Existing Groups (e.g Portal Groups)')])
selection.extend([('existing',_('Users you already shared with')),
('groups',_('Existing Groups (e.g Portal Groups)'))])
return selection
_columns = {

View File

@ -74,7 +74,7 @@ class share_wizard(osv.TransientModel):
def _user_type_selection(self, cr, uid, context=None):
"""Selection values may be easily overridden/extended via inheritance"""
return [('embedded', 'Direct link or embed code'), ('emails','Emails'), ]
return [('embedded', _('Direct link or embed code')), ('emails',_('Emails')), ]
"""Override of create() to auto-compute the action name"""
def create(self, cr, uid, values, context=None):