equal
deleted
inserted
replaced
44 return u'%s (%s)' % (self.name, self._cw._(self.name)) |
44 return u'%s (%s)' % (self.name, self._cw._(self.name)) |
45 |
45 |
46 def dc_long_title(self): |
46 def dc_long_title(self): |
47 stereotypes = [] |
47 stereotypes = [] |
48 _ = self._cw._ |
48 _ = self._cw._ |
49 if self.symetric: |
49 if self.symmetric: |
50 stereotypes.append(_('symetric')) |
50 stereotypes.append(_('symmetric')) |
51 if self.inlined: |
51 if self.inlined: |
52 stereotypes.append(_('inlined')) |
52 stereotypes.append(_('inlined')) |
53 if self.final: |
53 if self.final: |
54 stereotypes.append(_('final')) |
54 stereotypes.append(_('final')) |
55 if stereotypes: |
55 if stereotypes: |