Here is how I've been able to move the Translate link. I'm also formatting it smaller. This goes in your theme's functions.php file.
function tcj_custom_jQuery() {
wp_enqueue_script('jquery');
?>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("div.translate_block").appendTo("p.postedby");
});
</script>
<style>
.translate_block{display:inline;font-size:x-small;margin-left:8px;line-height:1.3em;}
</style>
<?php
}
add_filter('wp_head','tcj_custom_jQuery');
http://wordpress.org/extend/plugins/google-ajax-translation/