*** before	2013-06-27 18:36:26.345043975 +0200
--- after	2013-06-27 18:36:13.198377990 +0200
***************
*** 584,590 ****
      '#collapsed' => $group->collapsed,
      '#pre_render' => array(),
      '#attributes' => array('class' => explode(' ', $group->classes)),
!     '#description' => $group->description,
    );
    $element['#attached']['js'][] = 'misc/form.js';
    $element['#attached']['js'][] = 'misc/collapse.js';
--- 584,590 ----
      '#collapsed' => $group->collapsed,
      '#pre_render' => array(),
      '#attributes' => array('class' => explode(' ', $group->classes)),
!     '#description' => t($group->description),
    );
    $element['#attached']['js'][] = 'misc/form.js';
    $element['#attached']['js'][] = 'misc/collapse.js';
***************
*** 623,629 ****
      $element['#suffix'] = '</div>';
    }
    if (!empty($group->description)) {
!     $element['#prefix'] .= '<div class="description">' . $group->description . '</div>';
    }
  
    if ($effect == 'blind') {
--- 623,629 ----
      $element['#suffix'] = '</div>';
    }
    if (!empty($group->description)) {
!     $element['#prefix'] .= '<div class="description">' . t($group->description) . '</div>';
    }
  
    if ($effect == 'blind') {
***************
*** 670,676 ****
      //'#attributes' => array('class' => array($group->format_type)),
    );
    if (!empty($group->description)) {
!     $element['#prefix'] .= '<div class="description">' . $group->description . '</div>';
    }
    drupal_add_library('system', 'ui.accordion');
  
--- 670,676 ----
      //'#attributes' => array('class' => array($group->format_type)),
    );
    if (!empty($group->description)) {
!     $element['#prefix'] .= '<div class="description">' . t($group->description) . '</div>';
    }
    drupal_add_library('system', 'ui.accordion');
  
***************
*** 715,721 ****
      '#group' => $group->parent_name,
      // very important. Cannot be added on the form!
      '#parents' => array($group->parent_name),
!     '#description' => $group->description,
    );
  
  }
--- 715,721 ----
      '#group' => $group->parent_name,
      // very important. Cannot be added on the form!
      '#parents' => array($group->parent_name),
!     '#description' => t($group->description),
    );
  
  }
***************
*** 773,779 ****
      '#parent_group_object' => $form['#groups'][$group->parent_name],
      // very important. Cannot be added on the form!
      '#parents' => array($group->parent_name),
!     '#description' => $group->description,
    );
  
  }
--- 773,779 ----
      '#parent_group_object' => $form['#groups'][$group->parent_name],
      // very important. Cannot be added on the form!
      '#parents' => array($group->parent_name),
!     '#description' => t($group->description),
    );
  
  }
***************
*** 829,835 ****
      '#collapsible' => $group->collapsible,
      '#collapsed' => $group->collapsed,
      '#attributes' => array('class' => explode(" ", $group->classes)),
!     '#description' => $group->description,
    );
  
    // Front-end and back-end on configuration will lead
--- 829,835 ----
      '#collapsible' => $group->collapsible,
      '#collapsed' => $group->collapsed,
      '#attributes' => array('class' => explode(" ", $group->classes)),
!     '#description' => t($group->description),
    );
  
    // Front-end and back-end on configuration will lead
