diff --git a/client/WEB-INF/classes/resources/messages.properties b/client/WEB-INF/classes/resources/messages.properties
index b4f09f21cac..cbb8974496b 100644
--- a/client/WEB-INF/classes/resources/messages.properties
+++ b/client/WEB-INF/classes/resources/messages.properties
@@ -267,6 +267,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
diff --git a/ui/index.jsp b/ui/index.jsp
index e8f37bf41e4..68513b7ad97 100644
--- a/ui/index.jsp
+++ b/ui/index.jsp
@@ -1514,7 +1514,6 @@ under the License.
-
Scheduled Snapshots
@@ -1528,7 +1527,6 @@ under the License.
Keep: |
|
-
| Time: |
@@ -1537,7 +1535,6 @@ under the License.
Keep: |
|
-
| Time: |
@@ -1546,7 +1543,6 @@ under the License.
Keep: |
|
-
| Time: |
@@ -1831,6 +1827,7 @@ dictionary = {
'label.move.down.row': '',
'label.move.up.row': '',
'label.move.to.top': '',
+'label.move.to.bottom': '',
'label.order': '',
'label.no.data': '',
'label.change.value': '',
diff --git a/ui/scripts/ui/widgets/listView.js b/ui/scripts/ui/widgets/listView.js
index b9382542424..fb1d8843bed 100644
--- a/ui/scripts/ui/widgets/listView.js
+++ b/ui/scripts/ui/widgets/listView.js
@@ -898,6 +898,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')