diff --git a/tweet.tpl.php b/tweet.tpl.php
index e411b54..88417a2 100644
--- a/tweet.tpl.php
+++ b/tweet.tpl.php
@@ -32,12 +32,12 @@
 
   <ul class="actions">
     <li><a href=
-    "https://twitter.com/intent/tweet?in_reply_to=<?php print $status->twitter_id; ?>">Reply</a></li>
+    "https://twitter.com/intent/tweet?in_reply_to=<?php print $status->twitter_id; ?>"><?php print $reply; ?></a></li>
 
     <li><a href=
-    "https://twitter.com/intent/retweet?tweet_id=<?php print $status->twitter_id; ?>">Retweet</a></li>
+    "https://twitter.com/intent/retweet?tweet_id=<?php print $status->twitter_id; ?>"><?php print $retweet; ?></a></li>
 
     <li><a href=
-    "https://twitter.com/intent/favorite?tweet_id=<?php print $status->twitter_id; ?>">Favorite</a></li>
+    "https://twitter.com/intent/favorite?tweet_id=<?php print $status->twitter_id; ?>"><?php print $favorite; ?></a></li>
   </ul>
 </div>
diff --git a/twitter.module b/twitter.module
index 5826ac5..c328486 100644
--- a/twitter.module
+++ b/twitter.module
@@ -97,6 +97,9 @@ function twitter_theme() {
       'variables' => array(
         'status' => NULL,
         'author' => NULL,
+        'reply' => NULL,
+        'retweet' => NULL,
+        'favorite' => NULL,
       ),
       'template' => 'tweet',
       'path' => drupal_get_path('module', 'twitter'),
diff --git a/twitter_views_field_handlers.inc b/twitter_views_field_handlers.inc
index ba2f160..d50ec41 100644
--- a/twitter_views_field_handlers.inc
+++ b/twitter_views_field_handlers.inc
@@ -108,9 +108,9 @@ class twitter_views_handler_field_web_intents extends views_handler_field {
 
   function render($values) {
     drupal_add_js('//platform.twitter.com/widgets.js', 'external');
-    return '<span><a href="https://twitter.com/intent/tweet?in_reply_to=' . $values->twitter_id . '">Reply</a></span> ' .
-      '<span><a href="https://twitter.com/intent/retweet?tweet_id=' . $values->twitter_id . '">Retweet</a></span> ' .
-      '<span><a href="https://twitter.com/intent/favorite?tweet_id=' . $values->twitter_id . '">Favorite</a></span>';
+    return '<span><a href="https://twitter.com/intent/tweet?in_reply_to=' . $values->twitter_id . '">' . t('Reply') . '</a></span> ' .
+      '<span><a href="https://twitter.com/intent/retweet?tweet_id=' . $values->twitter_id . '">' . t('Retweet') . '</a></span> ' .
+      '<span><a href="https://twitter.com/intent/favorite?tweet_id=' . $values->twitter_id . '">' . t('Favorite') . '</a></span>';
   }
 }
 
@@ -124,7 +124,7 @@ class twitter_views_handler_field_follow extends views_handler_field {
 
   function render($values) {
     drupal_add_js('//platform.twitter.com/widgets.js', 'external');
-    return '<span><a href="https://twitter.com/intent/user?screen_name=' . $values->twitter_screen_name . '">Follow</a></span>';
+    return '<span><a href="https://twitter.com/intent/user?screen_name=' . $values->twitter_screen_name . '">' . t('Follow') . '</a></span>';
   }
 }
 
@@ -191,10 +191,10 @@ class twitter_views_handler_field_image extends views_handler_field {
       '#title' => t('Image size'),
       '#default_value' => $this->options['size'],
       '#options' => array(
-        'thumb'  => 'Thumb',
-        'small'  => 'Small',
-        'medium' => 'Medium',
-        'large'  => 'Large',
+        'thumb'  => t('Thumb'),
+        'small'  => t('Small'),
+        'medium' => t('Medium'),
+        'large'  => t('Large'),
       ),
       '#description' => t('Choose an image size from the ones that Twitter has created for this image.'),
       '#weight' => -10,
