From de1520ec2003b32e1cc93a11fbef1e711f4c8518 Mon Sep 17 00:00:00 2001 From: Peter Wischer Date: Wed, 17 Jan 2018 08:47:37 +0100 Subject: [PATCH] [1.11.x] Fixed typo in docs/topics/i18n/translation.txt. Backport of 196c257a230bba8f2f1b2021c383eb2744e8df41 from master --- docs/topics/i18n/translation.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/topics/i18n/translation.txt b/docs/topics/i18n/translation.txt index e1dc6deb2b..158bc6fb58 100644 --- a/docs/topics/i18n/translation.txt +++ b/docs/topics/i18n/translation.txt @@ -1822,13 +1822,13 @@ To workaround this, you can escape percent signs by adding a second percent sign:: from django.utils.translation import ugettext 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: