home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 January / maximum-cd-2012-01.iso / DiscContents / digsby_setup.exe / lib / plugins / myspace / res / indicators.tenjin < prev    next >
Encoding:
Text File  |  2011-02-03  |  2.6 KB  |  87 lines

  1.    <?py i = indicators ?>
  2.   <span class="title">${{_('Alerts')}}</span>
  3.   <ul>
  4.    <?py if i.get('mailurl'): ?>
  5.        <li class="indicator">
  6.         <a href="${i.get('mailurl')}" class="link">${{_('New Mail')}}</a>
  7.        </li>
  8.    <?py #end ?>
  9.    
  10.    <?py if i.get('birthdayurl'): ?>
  11.        <li class="indicator">
  12.         <a href="${i.get('birthdayurl')}" class="link">${{_('New Birthdays')}}</a>
  13.        </li>
  14.    <?py #end ?>
  15.        
  16.        
  17.    <?py if i.get('blogcommenturl'): ?>
  18.        <li class="indicator">
  19.         <a href="${i.get('blogcommenturl')}" class="link">${{_('New Blog Comments')}}</a>
  20.        </li>
  21.    <?py #end ?>
  22.        
  23.        
  24.    <?py if i.get('blogsubscriptionposturl'): ?>
  25.        <li class="indicator">
  26.         <a href="${i.get('blogsubscriptionposturl')}" class="link">${{_('New Blog Subscriptions')}}</a>
  27.        </li>
  28.    <?py #end ?>
  29.        
  30.        
  31.    <?py if i.get('commenturl'): ?>
  32.        <li class="indicator">
  33.         <a href="${i.get('commenturl')}" class="link">${{_('New Comments')}}</a>
  34.        </li>
  35.    <?py #end ?>
  36.        
  37.        
  38.    <?py if i.get('eventinvitationurl'): ?>
  39.        <li class="indicator">
  40.         <a href="${i.get('eventinvitationurl')}" class="link">${{_('New Event Invitations')}}</a>
  41.        </li>
  42.    <?py #end ?>
  43.        
  44.        
  45.    <?py if i.get('friendsrequesturl'): ?>
  46.        <li class="indicator">
  47.         <a href="${i.get('friendsrequesturl')}" class="link">${{_('New Friend Requests')}}</a>
  48.        </li>
  49.    <?py #end ?>
  50.        
  51.        
  52.    <?py if i.get('groupnotificationurl'): ?>
  53.        <li class="indicator">
  54.         <a href="${i.get('groupnotificationurl')}" class="link">${{_('New Group Notifications')}}</a>
  55.        </li>
  56.    <?py #end ?>
  57.        
  58.        
  59.    <?py if i.get('phototagapproval'): ?>
  60.        <li class="indicator">
  61.         <a href="${i.get('phototagapprovalurl')}" class="link">${{_('New Photo Tag Approvals')}}</a>
  62.        </li>
  63.    <?py #end ?>
  64.        
  65.        
  66.    <?py if i.get('picturecommenturl'): ?>
  67.        <li class="indicator">
  68.         <a href="${i.get('picturecommenturl')}" class="link">${{_('New Picture Comments')}}</a>
  69.        </li>
  70.    <?py #end ?>
  71.        
  72.        
  73.    <?py if i.get('recentlyaddedfriendurl'): ?>
  74.        <li class="indicator">
  75.         <a href="${i.get('recentlyaddedfriendurl')}" class="link">${{_('New Recently Added Friends')}}</a>
  76.        </li>
  77.    <?py #end ?>
  78.        
  79.        
  80.    <?py if i.get('videocommenturl'): ?>
  81.        <li class="indicator">
  82.         <a href="${i.get('videocommenturl')}" class="link">${{_('New Video Comments')}}</a>
  83.        </li>
  84.    <?py #end ?>
  85.        
  86.   </ul> 
  87.