Skip to content

Commit

Permalink
Merge pull request #817 from kajala/bugfix/i18n-templates-2020-04-21
Browse files Browse the repository at this point in the history
"Overview" not translated in templates
  • Loading branch information
gwasser committed Apr 22, 2020
2 parents 8a521d5 + 96f631f commit ccee1bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<li class="breadcrumb-item">
<a href="#">Dashboard</a>
</li>
<li class="breadcrumb-item active">Overview</li>
<li class="breadcrumb-item active">{% trans "Overview" %}</li>
{% endblock %}

{% block helpdesk_body %}
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/kb_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<li class="breadcrumb-item">
<a href="{% url 'helpdesk:kb_index' %}">{% trans "Knowledgebase" %}</a>
</li>
<li class="breadcrumb-item active">Overview</li>
<li class="breadcrumb-item active">{% trans "Overview" %}</li>
{% endblock %}

{% block helpdesk_body %}
Expand Down
2 changes: 1 addition & 1 deletion helpdesk/templates/helpdesk/ticket_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<li class="breadcrumb-item">{% trans "Saved Query" %}</li>
<li class="breadcrumb-item active">{{ saved_query.title }}</li>
{% else %}
<li class="breadcrumb-item active">Overview</li>
<li class="breadcrumb-item active">{% trans "Overview" %}</li>
{% endif %}
{% endblock %}

Expand Down

0 comments on commit ccee1bc

Please sign in to comment.