diff --git a/src/applications/dashboard/icon/PhabricatorDashboardIconSet.php b/src/applications/dashboard/icon/PhabricatorDashboardIconSet.php index 1bd12609b7..a93c361bb5 100644 --- a/src/applications/dashboard/icon/PhabricatorDashboardIconSet.php +++ b/src/applications/dashboard/icon/PhabricatorDashboardIconSet.php @@ -1,45 +1,56 @@ pht('Home'), + 'fa-dashboard' => pht('Dashboard'), 'fa-th-large' => pht('Blocks'), 'fa-columns' => pht('Columns'), 'fa-bookmark' => pht('Page Saver'), 'fa-book' => pht('Knowledge'), 'fa-bomb' => pht('Kaboom'), 'fa-pie-chart' => pht('Apple Blueberry'), 'fa-bar-chart' => pht('Serious Business'), + 'fa-briefcase' => pht('Project'), 'fa-bell' => pht('Ding Ding'), 'fa-credit-card' => pht('Plastic Debt'), 'fa-code' => pht('PHP is Life'), 'fa-sticky-note' => pht('To Self'), - 'fa-newspaper-o' => pht('Stay Woke'), + 'fa-server' => pht('Metallica'), 'fa-hashtag' => pht('Corned Beef'), - 'fa-group' => pht('Triplets'), + 'fa-anchor' => pht('Tasks'), + 'fa-calendar' => pht('Calendar'), + 'fa-compass' => pht('Wayfinding'), + + 'fa-futbol-o' => pht('Sports'), + 'fa-flag' => pht('Flag'), + 'fa-ship' => pht('Water Vessel'), + 'fa-feed' => pht('Wireless'), + 'fa-bullhorn' => pht('Announcement'), + ); $icons = array(); foreach ($map as $key => $label) { $icons[] = id(new PhabricatorIconSetIcon()) ->setKey($key) ->setLabel($label); } return $icons; } }