mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Use ungettext instead of ngettext for unicode support
This commit is contained in:
parent
94e17e2a70
commit
42a23a8f55
1 changed files with 1 additions and 1 deletions
|
@ -1563,7 +1563,7 @@ it to your friends.
|
|||
return self.languageTrans.ugettext(text)
|
||||
|
||||
def getTranslation2(self, text1, text2, n):
|
||||
return self.languageTrans.ngettext(text1, text2, n)
|
||||
return self.languageTrans.ungettext(text1, text2, n)
|
||||
|
||||
def installTranslation(self):
|
||||
import __builtin__
|
||||
|
|
Loading…
Reference in a new issue