~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/i18n.py

Add tests for bzrlib.i18n

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
class _ZzzTranslations(object):
102
102
 
103
103
    def zzz(self, s):
104
 
        return 'zz{{%s}}' % s
 
104
        return u'zz{{%s}}' % s
105
105
 
106
106
    def ugettext(self, s):
107
107
        return self.zzz(_null_translation.ugettext(s))