Hello All,

 I want to create site like drupalchina.org. I'm using i18n module for translation. I'm already done with translation. But the only point remained is of "Default Language". 

I want Chinese as a default language for my site. I have tried changing it through
Administer -> Site Configuration -> Localization. But it is not working. Is there any other way to do it through hard coding?

I have also tried

$conf['i18n_languages'] = array(
'site_default' => 'zh-hans', // Default language
'name' => array('zh-hans' => "Chinese", 'en' => 'English'), // English names for languages
'native' => array('zh-hans' => "Chinese", 'en' => 'English'), // Native names
'enabled' => array('zh-hans' => TRUE, 'en' => TRUE),// Languages enabled
);

But this also doesnt work.

This is my last step in the site creation. If this will be done all will be set. Please help to do this. I'm really new to drupal.