[Rt-commit] r17971 - in rt/3.999/branches/merge_to_3.8.2: share/html/Dashboards

sunnavy at bestpractical.com sunnavy at bestpractical.com
Wed Jan 28 22:33:20 EST 2009


Author: sunnavy
Date: Wed Jan 28 22:33:19 2009
New Revision: 17971

Modified:
   rt/3.999/branches/merge_to_3.8.2/   (props changed)
   rt/3.999/branches/merge_to_3.8.2/share/html/Dashboards/index.html

Log:
 r19131 at sunnavys-mb:  sunnavy | 2009-01-29 09:58:51 +0800
 merged share/html/Dashboards/index.html


Modified: rt/3.999/branches/merge_to_3.8.2/share/html/Dashboards/index.html
==============================================================================
--- rt/3.999/branches/merge_to_3.8.2/share/html/Dashboards/index.html	(original)
+++ rt/3.999/branches/merge_to_3.8.2/share/html/Dashboards/index.html	Wed Jan 28 22:33:19 2009
@@ -53,19 +53,20 @@
 <& /Elements/ListActions, actions => \@actions &>
 
 <& /Dashboards/Elements/ShowDashboards,
-    type       => "Personal",
+    title      => _('Personal Dashboards'),
     dashboards => [sort { $a->id <=> $b->id } @{ $dashboards->{personal} || [] }],
 &>
 
 <& /Dashboards/Elements/ShowDashboards,
-    type => "System",
+    title      => _('System Dashboards'),
     dashboards => [sort { $a->id <=> $b->id } @{ $dashboards->{system} || [] }],
 &>
 
 % for my $group (sort keys %{ $dashboards->{group} || {} }) {
     <& /Dashboards/Elements/ShowDashboards,
-        type       => $group,
+        title      => _('%1 DashBoards', $group),
         dashboards => [sort { $a->id <=> $b->id } @{ $dashboards->{group}{$group} || [] }],
+        
     &>
 % }
 


More information about the Rt-commit mailing list