Does the new and recommended way to format strings available in Python 2.7 using format result in a non translated string in Django?
format
The strings are in the
i had the same problem so i translated the text first and then added the dynamic content like
title = _(u"is a good website") title = " ".join([website_name, title])
There must be a better way to do this