diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt
index 090e7cc414..7d9577f073 100644
a
|
b
|
instead of positional interpolation (e.g., ``%s`` or ``%d``) whenever you
|
138 | 138 | have more than a single parameter. If you used positional interpolation, |
139 | 139 | translations wouldn't be able to reorder placeholder text. |
140 | 140 | |
| 141 | As string extraction is done through the `xgettext` command, only syntaxes |
| 142 | supported by ``gettext`` are supported by Django. This means that as of version |
| 143 | 0.19.8 of ``gettext``, Python f-strings_ and JavaScript template strings are not |
| 144 | yet supported. |
| 145 | |
| 146 | .. _f-strings: https://docs.python.org/3/reference/lexical_analysis.html#f-strings |
| 147 | |
141 | 148 | .. _translator-comments: |
142 | 149 | |
143 | 150 | Comments for translators |