Index: theme-settings.php =================================================================== RCS file: /cvs/drupal-contrib/contributions/themes/rootcandy/theme-settings.php,v retrieving revision 1.6.2.6 diff -u -r1.6.2.6 theme-settings.php --- theme-settings.php 11 Oct 2008 13:41:44 -0000 1.6.2.6 +++ theme-settings.php 19 Oct 2008 09:06:44 -0000 @@ -48,13 +48,13 @@ ); $form['dashboard']['rootcandy_dashboard_help'] = array( '#type' => 'select', - '#options' => array('left' => 'left','right' => 'right','content' => 'content'), + '#options' => array('left' => t('Left'),'right' => t('Right'),'content' => t('Content')), '#title' => t('Help box position'), '#default_value' => $settings['rootcandy_dashboard_help'], ); $form['dashboard']['rootcandy_dashboard_messages'] = array( '#type' => 'select', - '#options' => array('left' => 'left','right' => 'right','content' => 'content'), + '#options' => array('left' => t('Left'),'right' => t('Right'),'content' => t('Content')), '#title' => t('Messages box position'), '#default_value' => $settings['rootcandy_dashboard_messages'], ); @@ -100,11 +100,11 @@ foreach ($roles as $rid => $role) { $form['navigation']['nav-by-role']['rootcandy_navigation_source_'. $rid] = array( '#type' => 'select', - '#title' => t($role) . ' navigation', + '#title' => t('@role navigation', array('@role' => $role)), '#default_value' => $settings['rootcandy_navigation_source_'. $rid], '#options' => $primary_options, '#tree' => FALSE, - '#description' => t('Select what should be displayed as the navigation menu for role ') . t($role) .'.', + '#description' => t('Select what should be displayed as the navigation menu for role @role.', array('@role' => $role)), ); }