Ticket #25709: patchfile

File patchfile, 417 bytes (added by azurit, 8 years ago)
Line 
1diff -uNr old/i18n.py new/i18n.py
2--- old/i18n.py 2015-11-06 14:16:34.000000000 +0100
3+++ new/i18n.py 2015-11-08 10:49:45.579356819 +0100
4@@ -19,7 +19,7 @@
5 self.variable = variable
6
7 def render(self, context):
8- context[self.variable] = [(k, translation.ugettext(v)) for k, v in settings.LANGUAGES]
9+ context[self.variable] = [(k, v) for k, v in settings.LANGUAGES]
10 return ''
11
12
Back to Top