*** tweet.module	2009-06-22 00:20:29.000000000 +1000
--- tweet.module	2009-06-22 00:19:31.000000000 +1000
***************
*** 106,112 ****
    $tweet = _tweet_process($format, array('[url]' => $url, '[title]' => $title));
  
    $path = 'http://twitter.com/home';
!   $text = t('Post to Twitter');
    $image_location = drupal_get_path('module', 'tweet') .'/icon.png';
    global $base_url;
    $image = '<img src="'. $base_url . base_path() . check_plain(variable_get('tweet_image', $image_location)) .'" alt="'. $text .'" title="'. $text .'" />';
--- 106,112 ----
    $tweet = _tweet_process($format, array('[url]' => $url, '[title]' => $title));
  
    $path = 'http://twitter.com/home';
!   $text = t('Tweet this');
    $image_location = drupal_get_path('module', 'tweet') .'/icon.png';
    global $base_url;
    $image = '<img src="'. $base_url . base_path() . check_plain(variable_get('tweet_image', $image_location)) .'" alt="'. $text .'" title="'. $text .'" />';
***************
*** 183,189 ****
      $title = drupal_get_title();
    }
    if (drupal_strlen($title) > 120) {
!     $title = drupal_substr($title, 0, 119) .'…';
    }
    return $title;
  }
--- 183,189 ----
      $title = drupal_get_title();
    }
    if (drupal_strlen($title) > 120) {
!     $title = drupal_substr($title, 0, 119) ."\xE2\x80\xA6";
    }
    return $title;
  }
