diff --git a/fb.admin.inc b/fb.admin.inc
index 91dea96..db6bf6f 100644
--- a/fb.admin.inc
+++ b/fb.admin.inc
@@ -233,7 +233,7 @@ function fb_admin_get_app_options($include_current = FALSE, $key = 'label') {
   $apps = fb_get_all_apps();
   $options = array();
   if ($include_current)
-    $options[FB_APP_CURRENT] = t('<current>');
+    $options[FB_APP_CURRENT] = t('- current -');
   foreach ($apps as $app) {
     $title = !empty($app->title) ? $app->title : $app->label;
     if ($key == 'id') { // Still needed?
diff --git a/fb_connect.admin.inc b/fb_connect.admin.inc
index 6595c31..90e1d24 100644
--- a/fb_connect.admin.inc
+++ b/fb_connect.admin.inc
@@ -43,7 +43,7 @@ function fb_connect_get_connect_url($fb_app) {
  * @see system_settings_form()
  */
 function fb_connect_admin_settings() {
-  $options = array(0 => t('<none>')) +
+  $options = array(0 => t('- none -')) +
     fb_admin_get_app_options(FALSE);
   if (count($options) == 1) {
     $message = t('You must create an app first!');
diff --git a/fb_graph.module b/fb_graph.module
index 1f1bf8d..3c1370d 100644
--- a/fb_graph.module
+++ b/fb_graph.module
@@ -293,7 +293,7 @@ function fb_graph_form_alter(&$form, &$form_state, $form_id) {
       '#default_value' => variable_get(FB_GRAPH_VAR_OBJECT_TYPE . '_' . $type, ''),
     );
 
-    $options = array(0 => t('<not a custom type>')) + fb_admin_get_app_options();
+    $options = array(0 => t('- not a custom type -')) + fb_admin_get_app_options();
 
     $form['fb_graph'][FB_GRAPH_VAR_OBJECT_TYPE_APP] = array(
       '#type' => 'select',
diff --git a/fb_user.admin.inc b/fb_user.admin.inc
index d80abea..0b025eb 100644
--- a/fb_user.admin.inc
+++ b/fb_user.admin.inc
@@ -15,7 +15,7 @@
  * @see system_settings_form()
  */
 function fb_user_admin_settings() {
-  $options = array(0 => t('<none>')) + fb_admin_get_app_options(FALSE);
+  $options = array(0 => t('- none -')) + fb_admin_get_app_options(FALSE);
   if (count($options) == 1) {
     $message = t('You must create an app first!');
     drupal_set_message($message, 'error');
@@ -148,7 +148,7 @@ function fb_user_admin_form_alter(&$form, &$form_state, $form_id) {
       '#default_value' => $default,
     );
 
-    $options = array(0 => t('<none>')) + user_roles(1);
+    $options = array(0 => t('- none -')) + user_roles(1);
     unset($options[DRUPAL_ANONYMOUS_RID]);
     unset($options[DRUPAL_AUTHENTICATED_RID]);
     // Choose a role to be granted to anyone who authorizes the app.
