The Drupal site name could be set @ Administer –> Site configuration –> Site information.
In a previous post, you can find out how to setup a multilingual Drupal web site using the i18n module.
Drupal – Apply Language Pack
After applying the language pack, you can switch the language with the language switcher block. But you can never set the site name for each language. This is because we haven’t set the site name into our i18n variables. To solve the problem, open the sites/files/settings.php and add the following lines.
... /** * Multilingual settings * * This is a collection of variables that can be set up for each language when i18n enabled. * These are the basic ones for Drupal core, but you can add your own here. */ $conf['i18n_variables'] = array( 'site_name', //For site name translation 'site_slogan', 'site_mission', 'site_footer', 'anonymous', 'menu_primary_menu', 'menu_secondary_menu', ); ...
Restart the Apache server, set the Drupal site names in each language interface. The above configuration also allows you to translate the site slogan, primary and secondary links menu…etc
Actually the Custom Breadcrumbs also make use of this i18n variables to translate the Home text.
Drupal – Custom BreadCrumbs Home Text Translation
Done =)
Reference: Multilingual variables

Hi i think this available on multilingual variable setting just enable it in here:
http://rinjanigeopark.com/admin/config/regional/i18n/variable
LikeLike
Thanks for your comment. This post is written for Drupal 6 and i think your solution works for Drupal 7.
LikeLike