Try this way:
1, components/com_rsgallery2/templates/meta/display.class.php (line 217)
Replace from:
if($this->gallery->id == 0)
$title = "RSGallery2";
else
$title = $this->gallery->get('name');
To:
if($this->gallery->id == 0)
$title = $mainframe->getPageTitle();
else
$title = $this->gallery->get('name');
2, Play follow the attachment file.
3, Enjoy!