changeset 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 31e4eb57cc86
children 6faefbebcd24
files src/protocols/gg/gg.c src/protocols/jabber/buddy.c src/protocols/napster/napster.c src/protocols/yahoo/yahoo.c src/protocols/zephyr/zephyr.c
diffstat 5 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/protocols/gg/gg.c	Mon Dec 12 17:32:32 2005 +0000
+++ b/src/protocols/gg/gg.c	Mon Dec 12 17:49:43 2005 +0000
@@ -1434,7 +1434,7 @@
 	types = g_list_append(types, type);
 
 	type = gaim_status_type_new_with_attrs(GAIM_STATUS_AVAILABLE, "available",
-			_("Online"), TRUE, TRUE, FALSE, "message", _("Message"),
+			_("Available"), TRUE, TRUE, FALSE, "message", _("Message"),
 			gaim_value_new(GAIM_TYPE_STRING), NULL);
 	types = g_list_append(types, type);
 
--- a/src/protocols/jabber/buddy.c	Mon Dec 12 17:32:32 2005 +0000
+++ b/src/protocols/jabber/buddy.c	Mon Dec 12 17:49:43 2005 +0000
@@ -1086,7 +1086,7 @@
 		case JABBER_BUDDY_STATE_UNAVAILABLE:
 			return _("Offline");
 		case JABBER_BUDDY_STATE_ONLINE:
-			return _("Online");
+			return _("Available");
 		case JABBER_BUDDY_STATE_CHAT:
 			return _("Chatty");
 		case JABBER_BUDDY_STATE_AWAY:
--- a/src/protocols/napster/napster.c	Mon Dec 12 17:32:32 2005 +0000
+++ b/src/protocols/napster/napster.c	Mon Dec 12 17:49:43 2005 +0000
@@ -581,7 +581,7 @@
 
 	type = gaim_status_type_new_full(GAIM_STATUS_AVAILABLE,
 									 "available",
-									 _("Online"), TRUE, TRUE, FALSE);
+									 _("Available"), TRUE, TRUE, FALSE);
 	types = g_list_append(types, type);
 
 	return types;
--- 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");
 	}
 }
 
--- a/src/protocols/zephyr/zephyr.c	Mon Dec 12 17:32:32 2005 +0000
+++ b/src/protocols/zephyr/zephyr.c	Mon Dec 12 17:49:43 2005 +0000
@@ -2250,7 +2250,7 @@
 	   Away won't change their exposure but will set an auto away message (for IMs only)
 	*/
 	
-	type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, "available", _("Online"), FALSE);
+	type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, "available", _("Available"), FALSE);
 	types = g_list_append(types,type);
 
 	type = gaim_status_type_new(GAIM_STATUS_HIDDEN, "hidden", _("Hidden"), FALSE);