First of all: THANK YOU for writing this plugin! It's helped me solving many customer's requests since the latest Twiter API update :-)
I have a suggestion for the output of the Tweet's time. In the plugin's helper.php file I noticed the function for parcing the time in twitter style outputs the date (starting at line 120):
return date_i18n('d M', strtotime($date));
I think it would be nice to use the standard date format as the user has set in the WP options, like:
return date_i18n( get_option( 'date_format' ), strtotime($date));
And will there be a translation file available in the near future?
Thanks again!