Example #1
0
    def nameByLang(self, lang):

        for langcode in self._expand_languages(lang):
            if langcode in self.translated_name:
                return to_unicode(self.translated_name[langcode])

        return to_unicode(self.name)
Example #2
0
 def __unicode__(self):
     return '%s' % to_unicode(self.msg)
Example #3
0
 def __unicode__(self):
     return '%s' % to_unicode(self.value)
Example #4
0
 def __unicode__(self):
     return to_unicode(self.text())
Example #5
0
 def __unicode__(self):
     return to_unicode(self.__str__())
Example #6
0
 def __unicode__(self):
     return '%s' % to_unicode(self.msg)
Example #7
0
 def __unicode__(self):
     return '%s' % to_unicode(self.value)
Example #8
0
 def __unicode__(self):
     return to_unicode(self.text())
Example #9
0
 def descriptionByLang(self, lang):
     for langcode in self._expand_languages(lang):
         if langcode in self.translated_description:
             return to_unicode(self.translated_description[langcode])
     return to_unicode(self.description)
Example #10
0
 def __unicode__(self):
     return to_unicode(self.__str__())