Index: includes/theme.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/theme.inc,v
retrieving revision 1.519
diff -u -p -r1.519 theme.inc
--- includes/theme.inc	31 Aug 2009 19:50:17 -0000	1.519
+++ includes/theme.inc	3 Sep 2009 15:09:07 -0000
@@ -1729,10 +1729,10 @@ function theme_table_select_header_cell(
  */
 function theme_tablesort_indicator($style) {
   if ($style == "asc") {
-    return theme('image', 'misc/arrow-asc.png', t('sort icon'), t('sort ascending'));
+    return theme('image', 'misc/arrow-asc.png', t('sort ascending'), t('sort ascending'));
   }
   else {
-    return theme('image', 'misc/arrow-desc.png', t('sort icon'), t('sort descending'));
+    return theme('image', 'misc/arrow-desc.png', t('sort descending'), t('sort descending'));
   }
 }
 
@@ -1835,10 +1835,11 @@ function theme_more_help_link($url) {
  *   The url of the feed.
  * @param $title
  *   A descriptive title of the feed.
-  */
+ */
 function theme_feed_icon($url, $title) {
-  if ($image = theme('image', 'misc/feed.png', t('Subscribe to %feed-title', array('%feed-title' => $title)))) {
-    return '<a href="' . check_url($url) . '" class="feed-icon">' . $image . '</a>';
+  $text = t('Subscribe to @feed-title', array('@feed-title' => $title));
+  if ($image = theme('image', 'misc/feed.png', $text)) {
+    return '<a href="' . check_url($url) . '" title="' . $text . '" class="feed-icon">' . $image . '</a>';
   }
 }
 
Index: themes/seven/template.php
===================================================================
RCS file: /cvs/drupal/drupal/themes/seven/template.php,v
retrieving revision 1.5
diff -u -p -r1.5 template.php
--- themes/seven/template.php	22 Aug 2009 14:34:23 -0000	1.5
+++ themes/seven/template.php	3 Sep 2009 15:09:07 -0000
@@ -58,10 +58,10 @@ function seven_admin_block_content($cont
 function seven_tablesort_indicator($style) {
   $theme_path = drupal_get_path('theme', 'seven');
   if ($style == "asc") {
-    return theme('image', $theme_path . '/images/arrow-asc.png', t('sort icon'), t('sort ascending'));
+    return theme('image', $theme_path . '/images/arrow-asc.png', t('sort ascending'), t('sort ascending'));
   }
   else {
-    return theme('image', $theme_path . '/images/arrow-desc.png', t('sort icon'), t('sort descending'));
+    return theme('image', $theme_path . '/images/arrow-desc.png', t('sort descending'), t('sort descending'));
   }
 }
 
