Skip to content
Snippets Groups Projects
Commit 2185e46d authored by nkour's avatar nkour
Browse files

revert sth and add comment to explain

parent 6c3a51d5
No related branches found
No related tags found
No related merge requests found
......@@ -562,7 +562,8 @@ class ConversationTextview(gtk.TextView):
day_str = _('Yesterday')
else:
#the number is >= 2
day_str = _('%d days ago') % diff_day
# %i is day in year (1-365), %d (1-31) we want %i
day_str = _('%i days ago') % diff_day
format = before_str
if day_str:
format += day_str + ' '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment