diff --git a/ui/css/tmgmt_ui.admin.css b/ui/css/tmgmt_ui.admin.css
index ce32297..29e9edd 100644
--- a/ui/css/tmgmt_ui.admin.css
+++ b/ui/css/tmgmt_ui.admin.css
@@ -165,6 +165,17 @@ table.tmgmt-ui-review tbody th {
   margin-left: 5px;
 }
 
+
+.source-help-wrapper {
+  float: right;
+}
+
+.source-help-text {
+  float: left;
+  width: 300px;
+  margin-right: 10px;
+}
+
 .tmgmt-one-legend{
   float: left;
 }
diff --git a/ui/tmgmt_ui.module b/ui/tmgmt_ui.module
index 0593064..fb698f9 100644
--- a/ui/tmgmt_ui.module
+++ b/ui/tmgmt_ui.module
@@ -1125,9 +1125,9 @@ function tmgmt_ui_color_legend() {
   $legends[] = array('legend' => t('Translated'), 'color' => 'tmgmt-ui-icon-green');
   $legends[] = array('legend' => t('Translation Outdated'), 'color' => 'tmgmt-ui-icon-orange');
 
-  $output = '<div class="tmgmt-color-legend clearfix">';
+  $output = '<div class="tmgmt-color-legend">';
 
-  foreach ($legends as $legend){
+  foreach ($legends as $legend) {
     $output .= '<div class="tmgmt-one-legend">
         <div class="tmgmt-legend-icon tmgmt-ui-icon tmgmt-ui-icon-10 ' .
         $legend['color'] . '"><span></span></div>
@@ -1140,6 +1140,39 @@ function tmgmt_ui_color_legend() {
   return $output;
 }
 
+
+/**
+ * Provide help text for the TMGMT Cart.
+ * @return string
+ *   The help text
+ */
+function tmgmt_ui_cart_help() {
+  $help_text = '<p>' . t('The TMGMT cart is used to bundle text items from
+    different sources into one translation job. Use the "Add to cart" button to
+    add all selected items in any source list. <br/>From the cart page, you can
+    request a translation of all selected elements in the cart into any available
+    language. One translation job will be created for each language pair involved.')
+    . '</p>';
+
+  return $help_text;
+}
+
+/**
+ * Build help text.
+ *
+ * @return string
+ *   The help text.
+ */
+function tmgmt_ui_source_help() {
+
+  $help_text = '<div class="source-help-text">' . t('Select the items you wish
+    to translate. Choose "Request translation" to create a translation job
+    or "Add to cart" for later processing.
+    See <a href="/admin/tmgmt/cart">Cart</a> for more details') . '</div>';
+  return $help_text;
+
+}
+
 /**
  * Attempts to checkout a number of jobs and prepare the necessary redirects.
  *
@@ -1149,7 +1182,7 @@ function tmgmt_ui_color_legend() {
  *   Array of jobs to attempt checkout
  *
  * @ingroup tmgmt_job
- *
+ * 
  * @see tmgmt_ui_job_checkout_multiple()
  */
 function tmgmt_ui_job_checkout_and_redirect(array &$form_state, array $jobs) {
@@ -1180,6 +1213,14 @@ function tmgmt_ui_help($path, $arg) {
   $output = '';
   if (strpos($path, 'admin/tmgmt/sources') !== FALSE) {
     $output = tmgmt_ui_color_legend();
+
+    // Find the type of source.
+    $source = arg(3) != NULL ? arg(3) : 'content';
+    $output = '<div class="source-help-wrapper">' . tmgmt_ui_source_help($source)
+      . $output . '</div>';
+  }
+  if ($path == 'admin/tmgmt/cart') {
+    $output = tmgmt_ui_cart_help();
   }
 
   return $output;
