by Ange Tuteur January 10th 2015, 6:11 pm
Hello
@sunshine_222,
Go to Administration panel > Modules > JavaScript codes management > Create a new script
Title : your choice
Placement : in the homepage
- Code:
$(function() {
// textual translation of fa_toolbar
var $lang = {
welcome : Welcome text',
notifications : 'Notification text',
share : 'Share text',
view_profil : 'View profile text',
watched : 'My watched topics text',
priv_msg : 'My private message text',
logout : 'Logout text'
};
$(function() {
// logged in content
if (_userdata.session_logged_in) {
// fa_right
$('#fa_welcome').text($lang.welcome + ' ' + _userdata.username);
$('#fa_notifications').html($lang.notifications + '<span id="notif_unread"></span>');
// fa_menulist
$('#fa_menulist li:eq(0) a').text($lang.view_profil);
$('#fa_menulist li:eq(5) a').text($lang.watched);
$('#fa_menulist li:eq(6) a').text($lang.priv_msg);
$('#fa_menulist li:last a').text($lang.logout);
}
// global content
$('#fa_share_text').text($lang.share);
});
});
At the top of the script you'll see this :
- Code:
var $lang = {
welcome : 'Welcome text',
notifications : 'Notification text',
share : 'Share text',
view_profil : 'View profile text',
watched : 'My watched topics text',
priv_msg : 'My private message text',
logout : 'Logout text'
};
Here you can translate the text to what you want.