Kaydet (Commit) 196c257a authored tarafından Peter Wischer's avatar Peter Wischer Kaydeden (comit) Mariusz Felisiak

Fixed typo in docs/topics/i18n/translation.txt.

üst 999fc068
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment