Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
1 Svar
6098 Visninger

I have an Error message that needs to be displayed in Spanish using internationalization but the internalization does not seem to work for osv.except_osv

raise osv.except_osv(('Warning'), (' First name is Mandatory ') )

How do I solve this issue ?

Avatar
Kassér
Bedste svar

It is easy like that...

Import the method: from openerp.tools.translate import _

And use the method to make your python text translateable...

raise osv.except_osv(_('Warning'), _(' First name is Mandatory ') )

That's it!

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
0
jun. 16
5328
3
dec. 15
1367
0
mar. 15
3712
0
feb. 19
5535
0
aug. 15
3764