diff --git a/django/templatetags/i18n.py b/django/templatetags/i18n.py
index 190cb70..fa61850 100644
a
|
b
|
class BlockTranslateNode(Node):
|
76 | 76 | if self.plural and self.countervar and self.counter: |
77 | 77 | count = self.counter.resolve(context) |
78 | 78 | context[self.countervar] = count |
79 | | plural, vars = self.render_token_list(self.plural) |
| 79 | plural, plural_vars = self.render_token_list(self.plural) |
| 80 | vars += plural_vars |
80 | 81 | result = translation.ungettext(singular, plural, count) |
81 | 82 | else: |
82 | 83 | result = translation.ugettext(singular) |