PPS for next release can you integrate thumbnail code (like imageshack)?

Edit!
I have integrate thumbnail code!
Open gallery.template.php
Search
// Show image linking codes
if ($modSettings['gallery_set_showcode_bbc_image'] || $modSettings['gallery_set_showcode_directlink'] || $modSettings['gallery_set_showcode_htmllink'])
{
echo '<b>',$txt['gallery_txt_image_linking'],'</b><br />
<table border="0">
';
if ($modSettings['gallery_set_showcode_bbc_image'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_bbcimage'], '</td><td> <input type="text" value="[img]' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . '[/img]" size="50"></td></tr>';
}
if ($modSettings['gallery_set_showcode_directlink'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_directlink'], '</td><td> <input type="text" value="' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . '" size="50"></td></tr>';
}
if ($modSettings['gallery_set_showcode_htmllink'])
{
echo '<tr><td width="30%">', $txt['gallery_set_showcode_htmllink'], '</td><td> <input type="text" value="<img src="' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . '" />" size="50"></td></tr>';
}
echo '</table>';
}
and replace with
// Show image linking codes
if ($modSettings['gallery_set_showcode_bbc_image'] || $modSettings['gallery_set_showcode_directlink'] || $modSettings['gallery_set_showcode_htmllink'])
{
echo '<b>',$txt['gallery_txt_image_linking'],'</b><br />
<table border="0">
';
if ($modSettings['gallery_set_showcode_bbc_image'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_bbcimage'], '</td><td> <input type="text" value="[img]' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . '[/img]" size="50" /></td></tr>';
}
if ($modSettings['gallery_set_showcode_bbc_image'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_bbcimage_thumb'], '</td><td> <input type="text" value="[url=' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . "][img]" . $modSettings['gallery_url'] . 'thumb_' . $context['gallery_pic']['filename'] . '[/img][/url]" size="50" /></td></tr>';
}
if ($modSettings['gallery_set_showcode_directlink'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_directlink'], '</td><td> <input type="text" value="' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . '" size="50" /></td></tr>';
}
if ($modSettings['gallery_set_showcode_htmllink'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_htmllink'], '</td><td> <input type="text" value="<img src="' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . '" />" size="50" /></td></tr>';
}
if ($modSettings['gallery_set_showcode_htmllink'])
{
echo '<tr><td width="30%">', $txt['gallery_txt_htmllink_thumb'], '</td><td> <input type="text" value="<a href="' . $modSettings['gallery_url'] . $context['gallery_pic']['filename'] . "" target="_blank"><img src="" . $modSettings['gallery_url'] . 'thumb_' . $context['gallery_pic']['filename'] . '" border="0"/></a>" size="50" /></td></tr>';
}
echo '</table>';
}
Now open gallery.english.php,
search
$txt['gallery_txt_bbcimage'] = 'BB Code';
$txt['gallery_txt_directlink'] = 'Direct Link';
$txt['gallery_txt_htmllink'] = 'Html Link';
and replace with
$txt['gallery_txt_bbcimage'] = 'BB Code';
$txt['gallery_txt_bbcimage_thumb'] = 'Thumb BB Code';
$txt['gallery_txt_directlink'] = 'Direct Link';
$txt['gallery_txt_htmllink'] = 'Html Link';
$txt['gallery_txt_htmllink_thumb'] = 'Thumb Html Link';
See result!
http://darkwolf.altervista.org/forum/index.php?action=gallery;sa=view;id=17 