mirror of https://github.com/apache/cloudstack.git
CS-16010: Add missing alt tag for 'move to bottom' reorder action
This commit is contained in:
parent
1c57d4edbe
commit
5e8ccf2685
|
|
@ -250,6 +250,7 @@ label.viewing=Viewing
|
|||
label.move.to.top=Move to top
|
||||
label.move.up.row=Move up one row
|
||||
label.move.down.row=Move down one row
|
||||
label.move.to.bottom=Move to bottom
|
||||
label.drag.new.position=Drag to new position
|
||||
label.order=Order
|
||||
label.no.data=No data to show
|
||||
|
|
|
|||
|
|
@ -1481,7 +1481,6 @@
|
|||
<div class="add-snapshot-action add"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Scheduled snapshots -->
|
||||
<div class="scheduled-snapshots">
|
||||
<p>Scheduled Snapshots</p>
|
||||
|
|
@ -1495,7 +1494,6 @@
|
|||
<td class="keep">Keep: <span></span></td>
|
||||
<td class="actions"><div class="action destroy"><span class="icon"> </span></div></td>
|
||||
</tr>
|
||||
|
||||
<!-- Daily -->
|
||||
<tr class="daily">
|
||||
<td class="time">Time: <span></span></td>
|
||||
|
|
@ -1504,7 +1502,6 @@
|
|||
<td class="keep">Keep: <span></span></td>
|
||||
<td class="actions"><div class="action destroy"><span class="icon"> </span></div></td>
|
||||
</tr>
|
||||
|
||||
<!-- Weekly -->
|
||||
<tr class="weekly">
|
||||
<td class="time">Time: <span></span></td>
|
||||
|
|
@ -1513,7 +1510,6 @@
|
|||
<td class="keep">Keep: <span></span></td>
|
||||
<td class="actions"><div class="action destroy"><span class="icon"> </span></div></td>
|
||||
</tr>
|
||||
|
||||
<!-- Monthly -->
|
||||
<tr class="monthly">
|
||||
<td class="time">Time: <span></span></td>
|
||||
|
|
@ -1805,6 +1801,7 @@ dictionary = {
|
|||
'label.move.down.row': '<fmt:message key="label.move.down.row"/>',
|
||||
'label.move.up.row': '<fmt:message key="label.move.up.row"/>',
|
||||
'label.move.to.top': '<fmt:message key="label.move.to.top"/>',
|
||||
'label.move.to.bottom': '<fmt:message key="label.move.to.bottom"/>',
|
||||
'label.order': '<fmt:message key="label.order"/>',
|
||||
'label.no.data': '<fmt:message key="label.no.data"/>',
|
||||
'label.change.value': '<fmt:message key="label.change.value"/>',
|
||||
|
|
|
|||
|
|
@ -895,6 +895,7 @@
|
|||
$.each(reorder, function(actionName, action) {
|
||||
var fnLabel = {
|
||||
moveTop: _l('label.move.to.top'),
|
||||
moveBottom: _l('label.move.to.bottom'),
|
||||
moveUp: _l('label.move.up.row'),
|
||||
moveDown: _l('label.move.down.row'),
|
||||
moveDrag: _l('label.drag.new.position')
|
||||
|
|
|
|||
Loading…
Reference in New Issue