(self)
| 635 | |
| 636 | @property |
| 637 | def namespace_dict(self): |
| 638 | language_code = get_language() |
| 639 | if language_code not in self._namespace_dict: |
| 640 | self._populate() |
| 641 | return self._namespace_dict[language_code] |
| 642 | |
| 643 | @property |
| 644 | def app_dict(self): |
nothing calls this directly
no test coverage detected