This commit is contained in:
mdipierro
2018-05-01 14:33:56 -05:00
parent 891348986c
commit d052d1e06c

View File

@@ -973,7 +973,8 @@ class translator(object):
else:
word = w[1:]
fun = cap_fun
return fun(self.plural(word, n))
s = fun(self.plural(word, n))
return to_unicode(s)
s = m.group(1)
part = regex_plural_tuple.sub(sub_tuple, s)