I've got a bunch of strings marked for translation in my python code.
For example:
remarks_sample = forms.CharField(
label = _('Remarks'),
widget = forms.Textarea(attrs = {
'placeholder': _("Remarks"),
})
)
I've successfully ran django-admin.py makemessages and translated the phrases in Rosetta admin. I'm trying to figure out why the translated phrases arn't showing up on my pages.