Index: service_links.module
--- service_links.module Base (BASE)
+++ service_links.module Locally Modified (Based On LOCAL)
@@ -585,7 +585,7 @@
     $service['url'][0] = str_replace($settings['tag'], $settings['subst'], $service['url'][0]);
   }
 
-  $service['attributes']['title'] = $service['description'];
+  $service['attributes']['title'] = t($service['description']);
   $class = str_replace(array('][', '_', ' '), '-', 'service_links-'. $service_id);
   $service['attributes']['class'] = isset($service['attributes']['class']) ? array_merge($service['attributes']['class'], array($class)) : array($class);
   $service['attributes'] += $settings['attributes'];
@@ -616,7 +616,7 @@
 
   // Create the HTML.
   $link = theme('service_links_build_link', array(
-    'text' => $service['name'],
+    'text' => t($service['name']),
     'url' => $service['url'],
     'image' => $service['icon'],
     'nodelink' => $nodelink,
