Commit 4ca7e14d797cca3fe6ca21ecd7601641d0644023
1 parent
68f21ee3
Exists in
master
and in
2 other branches
translation problems solved
Showing
2 changed files
with
2 additions
and
4 deletions
Show diff stats
reports/locale/pt_BR/LC_MESSAGES/django.po
reports/views.py
... | ... | @@ -206,7 +206,7 @@ class ViewReportView(LoginRequiredMixin, generic.TemplateView): |
206 | 206 | topics = subject.topic_subject.all() |
207 | 207 | else: |
208 | 208 | topics = Topic.objects.get(id=topics_query) |
209 | - header = ['User'] | |
209 | + header = [str(_('User'))] | |
210 | 210 | |
211 | 211 | #I use this so the system can gather data up to end_date 11h59 p.m. |
212 | 212 | end_date = end_date + timedelta(days=1) | ... | ... |