The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

How to personalize my toolbar

3 posters

Go down

Solved How to personalize my toolbar

Post by sunshine_222 January 10th 2015, 7:48 pm

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.


Last edited by sunshine_222 on January 11th 2015, 12:01 pm; edited 1 time in total
avatar
sunshine_222
Forumember

Posts : 99
Reputation : 3
Language : english

http://thaimagic.forum2x2.eu

Back to top Go down

Solved Re: How to personalize my toolbar

Post by Ange Tuteur January 11th 2015, 12:11 am

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.
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: How to personalize my toolbar

Post by sunshine_222 January 11th 2015, 11:59 am

Thank you, Ange Tuteur! sunny
avatar
sunshine_222
Forumember

Posts : 99
Reputation : 3
Language : english

http://thaimagic.forum2x2.eu

Back to top Go down

Solved Re: How to personalize my toolbar

Post by Ramdaman January 11th 2015, 1:27 pm

Topic solved and archived.
Ramdaman
Ramdaman
Active Poster

Male Posts : 1615
Reputation : 99
Language : English, Albanian, Macedonian, Russian | HTML, CSS
Location : New York City

http://ndihme.forumotion.com/forum

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum