Social Networks
Using Jamroom
If you are referring to the Social links in the skins footer section, they are controlled by the skin settings and can be found in the skins config.php file.
skins/jrElastic/config.php
// Social Media
$num = 20;
foreach (array('twitter', 'facebook', 'google', 'linkedin', 'youtube', 'pinterest') as $network) {
// App Store URL
$_tmp = array(
'name' => "{$network}_name",
'type' => 'text',
'default' => '',
'validate' => 'printable',
'label' => ucfirst($network) . " profile",
'help' => "If you have an account for your site on " . ucfirst(str_replace('_', ' ', $network)) . ", enter the profile name and the network icon will show in your footer. Leave blank to disable.",
'order' => $num++,
'section' => 'social networks'
);
jrCore_register_setting('jrElastic', $_tmp);
}
You'll want to modify that bit of code to add in your other links in, then look in the footer.tpl for your skins and you'll see how the links are being added...
skins/jrElastic/footer.tpl
{* Social Network Linkup *}
{if strlen($_conf.jrElastic_twitter_name) > 0}
<a href="https://twitter.com/{$_conf.jrElastic_twitter_name}">{jrCore_image image="sn-twitter.png" width="40" height="40" class="social-img" alt="twitter" title="Follow @{$_conf.jrElastic_twitter_name}"}</a>
{/if}
{if strlen($_conf.jrElastic_facebook_name) > 0}
<a href="https://facebook.com/{$_conf.jrElastic_facebook_name}">{jrCore_image image="sn-facebook.png" width="40" height="40" class="social-img" alt="facebook" title="Like {$_conf.jrElastic_facebook_name} on Facebook"}</a>
{/if}
{if strlen($_conf.jrElastic_linkedin_name) > 0}
<a href="https://linkedin.com/{$_conf.jrElastic_linkedin_name}">{jrCore_image image="sn-linkedin.png" width="40" height="40" class="social-img" alt="linkedin" title="Link up with {$_conf.jrElastic_linkedin_name} on LinkedIn"}</a>
{/if}
{if strlen($_conf.jrElastic_google_name) > 0}
<a href="https://plus.google.com/{$_conf.jrElastic_google_name}">{jrCore_image image="sn-google-plus.png" width="40" height="40" class="social-img" alt="google+" title="Follow {$_conf.jrElastic_google_name} on Google+"}</a>
{/if}
{if strlen($_conf.jrElastic_youtube_name) > 0}
<a href="https://www.youtube.com/channel/{$_conf.jrElastic_youtube_name}" target="_blank">{jrCore_image image="sn-youtube.png" width="40" height="40" class="social-img" alt="youtube" title="Subscribe to {$_conf.jrElastic_youtube_name} on YouTube"}</a>
{/if}
{if strlen($_conf.jrElastic_pinterest_name) > 0}
<a href="https://www.pinterest.com/{$_conf.jrElastic_pinterest_name}" target="_blank">{jrCore_image image="sn-pinterest.png" width="40" height="40" class="social-img" alt="pinterest" title="Follow {$_conf.jrElastic_pinterest_name} on Pinterest"}</a>
{/if}
You could then use Michael's code above to show the correct language social link according to the sites language setting.
Hope this helps!