diff --git a/panopoly_widgets.module b/panopoly_widgets.module
index caf9729..1a25b76 100644
--- a/panopoly_widgets.module
+++ b/panopoly_widgets.module
@@ -236,6 +236,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Quick links
   $entity_info['fieldable_panels_pane']['bundles']['quick_links'] = array(
     'label' => t('Add links'),
+    'description' => t('Create a quick links list'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_link.png',
@@ -250,6 +251,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Basic file
   $entity_info['fieldable_panels_pane']['bundles']['basic_file'] = array(
     'label' => t('Add file'),
+    'description' => t('Add a file pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_file.png',
@@ -264,6 +266,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Basic Image
   $entity_info['fieldable_panels_pane']['bundles']['image'] = array(
     'label' => t('Add image'),
+    'description' => t('Add an image pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_image.png',
@@ -278,6 +281,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Basic text
   $entity_info['fieldable_panels_pane']['bundles']['text'] = array(
     'label' => t('Add text'),
+    'description' => t('Add a text pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_text.png',
@@ -292,6 +296,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Basic Map
   $entity_info['fieldable_panels_pane']['bundles']['map'] = array(
     'label' => t('Add map'),
+    'description' => t('Add a map pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_map.png',
@@ -306,6 +311,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Basic table
   $entity_info['fieldable_panels_pane']['bundles']['table'] = array(
     'label' => t('Add table'),
+    'description' => t('Add a table pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_table.png',
@@ -320,6 +326,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Basic video
   $entity_info['fieldable_panels_pane']['bundles']['video'] = array(
     'label' => t('Add video'),
+    'description' => t('Add a video pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_video.png',
@@ -334,6 +341,7 @@ function panopoly_widgets_entity_info_alter(&$entity_info) {
   // Spotlight
   $entity_info['fieldable_panels_pane']['bundles']['spotlight'] = array(
     'label' => t('Add spotlight'),
+    'description' => t('Add a spotlight slideshow pane'),
     'pane category' => t('Custom'),
     'pane top level' => TRUE,
     'pane icon' => drupal_get_path('module', 'panopoly_widgets') . '/images/icon_spotlight.png',
