diff --git a/django/utils/translation/trans_real.py b/django/utils/translation/trans_real.py
index 9fd33a7..6911c2c 100644
|
a
|
b
|
def blankout(src, char):
|
| 437 | 437 | return dot_re.sub(char, src) |
| 438 | 438 | |
| 439 | 439 | context_re = re.compile(r"""^\s+.*context\s+((?:"[^"]*?")|(?:'[^']*?'))\s*""") |
| 440 | | inline_re = re.compile(r"""^\s*trans\s+((?:"[^"]*?")|(?:'[^']*?'))(\s+.*context\s+(?:"[^"]*?")|(?:'[^']*?'))?\s*""") |
| 441 | | block_re = re.compile(r"""^\s*blocktrans(\s+.*context\s+(?:"[^"]*?")|(?:'[^']*?'))?(?:\s+|$)""") |
| | 440 | inline_re = re.compile(r"""^\s*trans\s+((?:"[^"]*?")|(?:'[^']*?'))(\s+.*context\s+((?:"[^"]*?")|(?:'[^']*?')))?\s*""") |
| | 441 | block_re = re.compile(r"""^\s*blocktrans(\s+.*context\s+((?:"[^"]*?")|(?:'[^']*?')))?(?:\s+|$)""") |
| 442 | 442 | endblock_re = re.compile(r"""^\s*endblocktrans$""") |
| 443 | 443 | plural_re = re.compile(r"""^\s*plural$""") |
| 444 | 444 | constant_re = re.compile(r"""_\(((?:".*?")|(?:'.*?'))\)""") |