diff options
Diffstat (limited to 'django')
| -rw-r--r-- | django/utils/translation/trans_real.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/utils/translation/trans_real.py b/django/utils/translation/trans_real.py index 7d6ef125b5..af11c2ac35 100644 --- a/django/utils/translation/trans_real.py +++ b/django/utils/translation/trans_real.py @@ -202,6 +202,8 @@ class DjangoTranslation(gettext_module.GNUTranslations): self._catalog = other._catalog.copy() else: self._catalog.update(other._catalog) + if other._fallback: + self.add_fallback(other._fallback) def language(self): """Return the translation language.""" |
