diff --git a/date.theme b/date.theme
index b14bb27..72cf1d4 100644
--- a/date.theme
+++ b/date.theme
@@ -234,9 +234,10 @@ function theme_date_display_range($vars) {
   }
 
   // Wrap the result with the attributes.
-  return '<span class="date-display-start"' . drupal_attributes($attributes1) . '>' . $date1 . '</span>' .
-      '<span class="date-display-separator"> - </span>' .
-      '<span class="date-display-end"' . drupal_attributes($attributes2) . '>' . $date2 . $timezone. '</span>';
+  return t('!start-date to !end-date', array(
+    '!start-date' => '<span class="date-display-start"' . drupal_attributes($attributes1) . '>' . $date1 . '</span>',
+    '!end-date' => '<span class="date-display-end"' . drupal_attributes($attributes2) . '>' . $date2 . $timezone. '</span>',
+  ));
 }
 
 /**
diff --git a/date_api/date.css b/date_api/date.css
index 6ddef60..51aecc2 100644
--- a/date_api/date.css
+++ b/date_api/date.css
@@ -89,8 +89,6 @@ span.date-display-start {
 }
 span.date-display-end {
 }
-span.date-display-separator {
-}
 
 .date-repeat-input {
   float: left; /* LTR */
