diff src/protocols/yahoo/yahoo.c @ 12467:1b57012eec7b

[gaim-migrate @ 14777] It seems to me that we should use consistent status names. I don't like having Online and Available. Let me know if I'm missing something. Perhaps we should allow passing of a NULL name to the status _new() functions and it could have a default name? If that sounds good, let me know and I'll code it up. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 12 Dec 2005 17:49:43 +0000
parents d30c0a7a5619
children 12db50600de5
line wrap: on
line diff
--- a/src/protocols/yahoo/yahoo.c	Mon Dec 12 17:32:32 2005 +0000
+++ b/src/protocols/yahoo/yahoo.c	Mon Dec 12 17:49:43 2005 +0000
@@ -2641,17 +2641,17 @@
 	case YAHOO_STATUS_BUSY:
 		return _("Busy");
 	case YAHOO_STATUS_NOTATHOME:
-		return _("Not At Home");
+		return _("Not at Home");
 	case YAHOO_STATUS_NOTATDESK:
-		return _("Not At Desk");
+		return _("Not at Desk");
 	case YAHOO_STATUS_NOTINOFFICE:
-		return _("Not In Office");
+		return _("Not in Office");
 	case YAHOO_STATUS_ONPHONE:
-		return _("On The Phone");
+		return _("On the Phone");
 	case YAHOO_STATUS_ONVACATION:
 		return _("On Vacation");
 	case YAHOO_STATUS_OUTTOLUNCH:
-		return _("Out To Lunch");
+		return _("Out to Lunch");
 	case YAHOO_STATUS_STEPPEDOUT:
 		return _("Stepped Out");
 	case YAHOO_STATUS_INVISIBLE:
@@ -2661,7 +2661,7 @@
 	case YAHOO_STATUS_OFFLINE:
 		return _("Offline");
 	default:
-		return _("Online");
+		return _("Available");
 	}
 }