Beispiel #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)
Beispiel #2
0
 def __unicode__(self):
     return '%s' % to_unicode(self.msg)
Beispiel #3
0
 def __unicode__(self):
     return '%s' % to_unicode(self.value)
Beispiel #4
0
 def __unicode__(self):
     return to_unicode(self.text())
Beispiel #5
0
 def __unicode__(self):
     return to_unicode(self.__str__())
Beispiel #6
0
 def __unicode__(self):
     return '%s' % to_unicode(self.msg)
Beispiel #7
0
 def __unicode__(self):
     return '%s' % to_unicode(self.value)
Beispiel #8
0
 def __unicode__(self):
     return to_unicode(self.text())
Beispiel #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)
Beispiel #10
0
 def __unicode__(self):
     return to_unicode(self.__str__())