You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2012/08/16 22:57:53 UTC

git commit: CS-16010: Add missing alt tag for 'move to bottom' reorder action

Updated Branches:
  refs/heads/master 5633ad0be -> b391a1c5b


CS-16010: Add missing alt tag for 'move to bottom' reorder action


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/b391a1c5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/b391a1c5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/b391a1c5

Branch: refs/heads/master
Commit: b391a1c5b1d8eec34f963cd685e8aef814e6074a
Parents: 5633ad0
Author: Brian Federle <br...@citrix.com>
Authored: Thu Aug 16 13:54:59 2012 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Aug 16 13:56:07 2012 -0700

----------------------------------------------------------------------
 .../WEB-INF/classes/resources/messages.properties  |    1 +
 ui/index.jsp                                       |    5 +----
 ui/scripts/ui/widgets/listView.js                  |    1 +
 3 files changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/b391a1c5/client/WEB-INF/classes/resources/messages.properties
----------------------------------------------------------------------
diff --git a/client/WEB-INF/classes/resources/messages.properties b/client/WEB-INF/classes/resources/messages.properties
index b4f09f2..cbb8974 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

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/b391a1c5/ui/index.jsp
----------------------------------------------------------------------
diff --git a/ui/index.jsp b/ui/index.jsp
index e8f37bf..68513b7 100644
--- a/ui/index.jsp
+++ b/ui/index.jsp
@@ -1514,7 +1514,6 @@ under the License.
             <div class="add-snapshot-action add"></div>
           </div>
         </div>
-
         <!-- Scheduled snapshots -->
         <div class="scheduled-snapshots">
           <p>Scheduled Snapshots</p>
@@ -1528,7 +1527,6 @@ under the License.
                 <td class="keep">Keep: <span></span></td>
                 <td class="actions"><div class="action destroy"><span class="icon">&nbsp;</span></div></td>
               </tr>
-
               <!-- Daily -->
               <tr class="daily">
                 <td class="time">Time: <span></span></td>
@@ -1537,7 +1535,6 @@ under the License.
                 <td class="keep">Keep: <span></span></td>
                 <td class="actions"><div class="action destroy"><span class="icon">&nbsp;</span></div></td>
               </tr>
-
               <!-- Weekly -->
               <tr class="weekly">
                 <td class="time">Time: <span></span></td>
@@ -1546,7 +1543,6 @@ under the License.
                 <td class="keep">Keep: <span></span></td>
                 <td class="actions"><div class="action destroy"><span class="icon">&nbsp;</span></div></td>
               </tr>
-
               <!-- Monthly -->
               <tr class="monthly">
                 <td class="time">Time: <span></span></td>
@@ -1831,6 +1827,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"/>',

http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/b391a1c5/ui/scripts/ui/widgets/listView.js
----------------------------------------------------------------------
diff --git a/ui/scripts/ui/widgets/listView.js b/ui/scripts/ui/widgets/listView.js
index b938254..fb1d884 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')