diff --git a/src/common/helpers.py b/src/common/helpers.py
index 98973adfbc9ad99f2126ba9493d36e1d54fa064f..8d3e73a7cc91a68661156aa08be78f65aa7c124f 100644
--- a/src/common/helpers.py
+++ b/src/common/helpers.py
@@ -22,7 +22,7 @@ _ = i18n._
 
 def get_uf_show(show):
 	'''returns a userfriendly string for dnd/xa/chat
-	and capitalize()s the rest'''
+	and capitalize()s the rest and make translatable'''
 	if show == 'dnd':
 		uf_show = _('Busy')
 	elif show == 'xa':
@@ -35,6 +35,8 @@ def get_uf_show(show):
 		uf_show = _('Connecting')
 	elif show == 'away':
 		uf_show = _('Away')
-	elif show == 'away':
-		uf_show = _('Away')
+	elif show == 'offline':
+		uf_show = _('Offline')
+	elif show == 'invisible':
+		uf_show = _('Invisible')
 	return uf_show