diff options
| author | Peter Wischer <PeterW-LWL@users.noreply.github.com> | 2018-01-17 08:47:37 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-01-17 08:50:26 +0100 |
| commit | fbe7c8f41342c5ed309e00434019b73cd09e47db (patch) | |
| tree | 79e3148ddb748f7e9971f0dea8154adc0d70e1da | |
| parent | 146317b734275daddcc9b5e240b3c48b508fc6e6 (diff) | |
[2.0.x] Fixed typo in docs/topics/i18n/translation.txt.
Backport of 196c257a230bba8f2f1b2021c383eb2744e8df41 from master
| -rw-r--r-- | docs/topics/i18n/translation.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt index 893944d039..f374c927a9 100644 --- a/docs/topics/i18n/translation.txt +++ b/docs/topics/i18n/translation.txt @@ -1652,13 +1652,13 @@ To workaround this, you can escape percent signs by adding a second percent sign:: from django.utils.translation import gettext as _ - output = _("10%% interest) + output = _("10%% interest") Or you can use ``no-python-format`` so that all percent signs are treated as literals:: # xgettext:no-python-format - output = _("10% interest) + output = _("10% interest") .. _creating-message-files-from-js-code: |
