Here is a small modification to make the plugin compatible with qtranslate.
You can now enter a url like:
http://www.example.[:en]com[:fr]fr
In the file: page-links-to.php
change:
if ( $page_links_to_cache[$id] )
$link = $page_links_to_cache[$id];
return $link;
to this:
if ( $page_links_to_cache[$id] )
$link = $page_links_to_cache[$id];
return __("$link");