Home | Trees | Indices | Help |
|
---|
|
object --+ | Message
Instance Methods | |||
|
|||
|
|||
Inherited from |
Instance Variables | |
id The message ID |
|
string The message translation |
Properties | |
bool
|
fuzzy Whether the translation is fuzzy. |
bool
|
pluralizable Whether the message is plurizable. |
bool
|
python_format Whether the message contains Python-style parameters. |
Inherited from |
Method Details |
|
|
Property Details |
fuzzyWhether the translation is fuzzy. >>> Message('foo').fuzzy False >>> Message('foo', 'foo', flags=['fuzzy']).fuzzy True
|
pluralizableWhether the message is plurizable. >>> Message('foo').pluralizable False >>> Message(('foo', 'bar')).pluralizable True
|
python_formatWhether the message contains Python-style parameters. >>> Message('foo %(name)s bar').python_format True >>> Message(('foo %(name)s', 'foo %(name)s')).python_format True
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0beta1 on Mon Jul 2 11:34:41 2007 | http://epydoc.sourceforge.net |