| 164 GaimStatusType *type; |
164 GaimStatusType *type; |
| 165 GList *types = NULL; |
165 GList *types = NULL; |
| 166 |
166 |
| 167 type = gaim_status_type_new(GAIM_STATUS_OFFLINE, "offline", |
167 type = gaim_status_type_new(GAIM_STATUS_OFFLINE, "offline", |
| 168 _("Offline"), FALSE); |
168 _("Offline"), FALSE); |
| 169 types = g_list_append(types, type); |
|
| 170 |
|
| 171 type = gaim_status_type_new(GAIM_STATUS_ONLINE, "online", |
|
| 172 _("Online"), FALSE); |
|
| 173 types = g_list_append(types, type); |
169 types = g_list_append(types, type); |
| 174 |
170 |
| 175 type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, "available", |
171 type = gaim_status_type_new(GAIM_STATUS_AVAILABLE, "available", |
| 176 _("Available"), TRUE); |
172 _("Available"), TRUE); |
| 177 types = g_list_append(types, type); |
173 types = g_list_append(types, type); |