47
51
trans = ZzzTranslations()
49
53
t = trans.zzz('msg')
50
self._check_exact(u'zz{{msg}}', t)
54
self._check_exact(u'zz\xe5{{msg}}', t)
52
56
t = trans.ugettext('msg')
53
self._check_exact(u'zz{{msg}}', t)
57
self._check_exact(u'zz\xe5{{msg}}', t)
55
59
t = trans.ungettext('msg1', 'msg2', 0)
56
self._check_exact(u'zz{{msg2}}', t)
60
self._check_exact(u'zz\xe5{{msg2}}', t)
57
61
t = trans.ungettext('msg1', 'msg2', 2)
58
self._check_exact(u'zz{{msg2}}', t)
62
self._check_exact(u'zz\xe5{{msg2}}', t)
60
64
t = trans.ungettext('msg1', 'msg2', 1)
61
self._check_exact(u'zz{{msg1}}', t)
65
self._check_exact(u'zz\xe5{{msg1}}', t)
64
68
class TestGetText(tests.TestCase):
68
72
self.overrideAttr(i18n, '_translations', ZzzTranslations())
70
74
def test_oneline(self):
71
self.assertEqual(u"zz{{spam ham eggs}}",
75
self.assertEqual(u"zz\xe5{{spam ham eggs}}",
72
76
i18n.gettext("spam ham eggs"))
74
78
def test_multiline(self):
75
self.assertEqual(u"zz{{spam\nham\n\neggs\n}}",
79
self.assertEqual(u"zz\xe5{{spam\nham\n\neggs\n}}",
76
80
i18n.gettext("spam\nham\n\neggs\n"))
83
87
self.overrideAttr(i18n, '_translations', ZzzTranslations())
85
89
def test_oneline(self):
86
self.assertEqual(u"zz{{spam ham eggs}}",
90
self.assertEqual(u"zz\xe5{{spam ham eggs}}",
87
91
i18n.gettext_per_paragraph("spam ham eggs"))
89
93
def test_multiline(self):
90
self.assertEqual(u"zz{{spam\nham}}\n\nzz{{eggs\n}}",
94
self.assertEqual(u"zz\xe5{{spam\nham}}\n\nzz\xe5{{eggs\n}}",
91
95
i18n.gettext_per_paragraph("spam\nham\n\neggs\n"))
94
98
class TestInstall(tests.TestCase):
101
super(TestInstall, self).setUp()
102
# Restore a proper env to test translation installation
103
self.overrideAttr(i18n, '_translations', None)
96
105
def test_custom_languages(self):
97
self.addCleanup(i18n.install)
98
106
i18n.install('nl:fy')
107
# Whether we found a valid tranlsation or not doesn't matter, we got
108
# one and _translations is not None anymore.
109
self.assertIsInstance(i18n._translations,
110
i18n._gettext.NullTranslations)
100
112
def test_no_env_variables(self):
101
self.addCleanup(i18n.install)
102
113
self.overrideEnv('LANGUAGE', None)
103
114
self.overrideEnv('LC_ALL', None)
104
115
self.overrideEnv('LC_MESSAGES', None)
105
116
self.overrideEnv('LANG', None)
118
# Whether we found a valid tranlsation or not doesn't matter, we got
119
# one and _translations is not None anymore.
120
self.assertIsInstance(i18n._translations,
121
i18n._gettext.NullTranslations)
123
def test_disable_i18n(self):
126
# It's disabled, you can't install anything and we fallback to null
127
self.assertIsInstance(i18n._translations,
128
i18n._gettext.NullTranslations)
131
class TestTranslate(tests.TestCaseWithTransport):
134
super(TestTranslate, self).setUp()
135
self.overrideAttr(i18n, '_translations', ZzzTranslations())
137
def test_error_message_translation(self):
138
"""do errors get translated?"""
140
tree = self.make_branch_and_tree('.')
142
workingtree.WorkingTree.open('./foo')
143
except errors.NotBranchError,e:
145
self.assertContainsRe(err,
146
u"zz\xe5{{Not a branch: .*}}".encode("utf-8"))
148
def test_topic_help_translation(self):
149
"""does topic help get translated?"""
150
from bzrlib import help
151
from StringIO import StringIO
153
help.help("authentication", out)
154
self.assertContainsRe(out.getvalue(), "zz\xe5{{Authentication Settings")