Make translatable table columns titles in media processing panel
This commit is contained in:
parent
a463fe06ed
commit
e228876efa
@ -35,11 +35,11 @@
|
|||||||
{% if processing_entries.count() %}
|
{% if processing_entries.count() %}
|
||||||
<table class="media_panel processing">
|
<table class="media_panel processing">
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>{% trans %}ID{% endtrans %}</th>
|
||||||
<th>User</th>
|
<th>{% trans %}User{% endtrans %}</th>
|
||||||
<th>Title</th>
|
<th>{% trans %}Title{% endtrans %}</th>
|
||||||
<th>When submitted</th>
|
<th>{% trans %}When submitted{% endtrans %}</th>
|
||||||
<th>Transcoding progress</th>
|
<th>{% trans %}Transcoding progress{% endtrans %}</th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for media_entry in processing_entries %}
|
{% for media_entry in processing_entries %}
|
||||||
<tr>
|
<tr>
|
||||||
@ -50,7 +50,7 @@
|
|||||||
{% if media_entry.transcoding_progress %}
|
{% if media_entry.transcoding_progress %}
|
||||||
<td>{{ media_entry.transcoding_progress }}%</td>
|
<td>{{ media_entry.transcoding_progress }}%</td>
|
||||||
{% else %}
|
{% else %}
|
||||||
<td>Unknown</td>
|
<td>{% trans %}Unknown{% endtrans %}</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
@ -64,12 +64,12 @@
|
|||||||
|
|
||||||
<table class="media_panel failed">
|
<table class="media_panel failed">
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>{% trans %}ID{% endtrans %}</th>
|
||||||
<th>User</th>
|
<th>{% trans %}User{% endtrans %}</th>
|
||||||
<th>Title</th>
|
<th>{% trans %}Title{% endtrans %}</th>
|
||||||
<th>When submitted</th>
|
<th>{% trans %}When submitted{% endtrans %}</th>
|
||||||
<th>Reason for failure</th>
|
<th>{% trans %}Reason for failure{% endtrans %}</th>
|
||||||
<th>Failure metadata</th>
|
<th>{% trans %}Failure metadata{% endtrans %}</th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for media_entry in failed_entries %}
|
{% for media_entry in failed_entries %}
|
||||||
<tr>
|
<tr>
|
||||||
@ -95,10 +95,10 @@
|
|||||||
|
|
||||||
<table class="media_panel processed">
|
<table class="media_panel processed">
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>{% trans %}ID{% endtrans %}</th>
|
||||||
<th>User</th>
|
<th>{% trans %}User{% endtrans %}</th>
|
||||||
<th>Title</th>
|
<th>{% trans %}Title{% endtrans %}</th>
|
||||||
<th>Submitted</th>
|
<th>{% trans %}Submitted{% endtrans %}</th>
|
||||||
</tr>
|
</tr>
|
||||||
{% for media_entry in processed_entries %}
|
{% for media_entry in processed_entries %}
|
||||||
<tr>
|
<tr>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user