How to personalize my toolbar
3 posters
Page 1 of 1
How to personalize my toolbar
How to personalize my toolbar?
https://i.servimg.com/u/f59/18/21/41/30/captur47.png
Is it possible to give me a script to change the titles: share/welcome/notifications
in other language? I didn't find these titles in the scripts.
https://i.servimg.com/u/f59/18/21/41/30/captur47.png
Is it possible to give me a script to change the titles: share/welcome/notifications
in other language? I didn't find these titles in the scripts.
Last edited by sunshine_222 on January 11th 2015, 12:01 pm; edited 1 time in total
Re: How to personalize my toolbar
Hello @sunshine_222,
Go to Administration panel > Modules > JavaScript codes management > Create a new script
Title : your choice
Placement : in the homepage
At the top of the script you'll see this :
Here you can translate the text to what you want.
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.
Similar topics
» Personalize the entire toolbar with CSS
» Why cant I personalize my forum adress?
» Chat box: Codes to personalize it
» Personalize forum widgets with CSS
» Personalize forum widgets with CSS
» Why cant I personalize my forum adress?
» Chat box: Codes to personalize it
» Personalize forum widgets with CSS
» Personalize forum widgets with CSS
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum