Ok nevermind
For every one who would like to add different language, follow these instructions:
Go into Phrase Manager, Add New Phrase
Phrase Type:
Global
Product:
vBulletin
Varname:
new_box_notice
Text:
You must view your notification(s) before this box will disappear.
In your xtra language window, add your translated text.
For the french, add this:
Vous devez voir votre notification (s) avant que cette case disparaissent.
In the script code from this mod,
Find:
Code:
$.jGrowl('{vb:raw notifications_menubits} <br />You must view your notification(s) before this box will disappear.' , { sticky: true, header : 'New Notification(s)' } );
And replace with:
Code:
$.jGrowl('{vb:raw notifications_menubits} <br />{vb:rawphrase new_box_notice}' , { sticky: true, header : 'New Notification(s)' } );
Enjoy!