Advertisement
nlozovan

Untitled

May 1st, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. FIND:
  2.  
  3. return abs($diff_start_event) . ' ' . __('days left', 'cosmotheme');
  4.  
  5. and
  6.  
  7. return abs($diff_end_event) . ' ' . __('days left', 'cosmotheme');
  8.  
  9. CHANGE IN:
  10.  
  11. return 'Tra ' . abs($diff_start_event) . ' ' . __('giorni', 'cosmotheme');
  12.  
  13. and
  14.  
  15. return 'Tra ' . abs($diff_end_event) . ' ' . __('giorni', 'cosmotheme');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement