Skip to content

Commit 14226b2

Browse files
author
Alexander Smishlajev
committed
translate column names in "sort by" and "group by" option lists
1 parent 3dc9e2e commit 14226b2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

templates/classic/html/issue.index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@
102102
<option tal:repeat="col context/properties"
103103
tal:attributes="value col/_name;
104104
selected python:col._name == request.sort[1]"
105-
tal:content="col/_name">column</option>
105+
tal:content="col/_name"
106+
i18n:translate="">column</option>
106107
</select>
107108
</td>
108109
<th i18n:translate="">Descending:</th>
@@ -118,7 +119,8 @@
118119
<option tal:repeat="col context/properties"
119120
tal:attributes="value col/_name;
120121
selected python:col._name == request.group[1]"
121-
tal:content="col/_name">column</option>
122+
tal:content="col/_name"
123+
i18n:translate="">column</option>
122124
</select>
123125
</td>
124126
<th i18n:translate="">Descending:</th>

0 commit comments

Comments
 (0)