diff options
Diffstat (limited to 'module/web/templates/default/home.html')
-rw-r--r-- | module/web/templates/default/home.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/module/web/templates/default/home.html b/module/web/templates/default/home.html index 97d245a38..b2cef2cb7 100644 --- a/module/web/templates/default/home.html +++ b/module/web/templates/default/home.html @@ -1,6 +1,4 @@ {% extends 'default/base.html' %}
-{% load i18n %}
-
{% block head %}
<script type="text/javascript">
@@ -204,18 +202,18 @@ var LinkEntry = new Class({ {% endblock %}
{% block subtitle %}
-{% trans "Active Downloads" %}
+{{_("Active Downloads")}}
{% endblock %}
{% block content %}
<table width="100%" class="queue">
<thead>
<tr class="header">
- <th>{% trans "Name" %}</th>
- <th>{% trans "Status" %}</th>
- <th>{% trans "Information" %}</th>
- <th>{% trans "Size" %}</th>
- <th>{% trans "Progress" %}</th>
+ <th>{{_("Name")}}</th>
+ <th>{{_("Status")}}</th>
+ <th>{{_("Information")}}</th>
+ <th>{{_("Size")}}</th>
+ <th>{{_("Progress")}}</th>
</tr>
</thead>
<tbody id="LinksAktiv">
|