Available instead of Online

This commit is contained in:
Nikos Kouremenos 2005-05-26 19:56:04 +00:00
parent e989b0a5b3
commit c9d2e9123c
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ _ = i18n._
def get_uf_show(show):
'''returns a userfriendly string for dnd/xa/chat
and capitalize()s the rest and make translatable'''
and makes the rest translatable'''
if show == 'dnd':
uf_show = _('Busy')
elif show == 'xa':
@ -30,7 +30,7 @@ def get_uf_show(show):
elif show == 'chat':
uf_show = _('Free for Chat')
elif show == 'online':
uf_show = _('Online')
uf_show = _('Available')
elif show == 'connecting':
uf_show = _('Connecting')
elif show == 'away':