comparison src/aim.c @ 4309:5978e3d53f29

[gaim-migrate @ 4563] Nicola's Lichtmaier (niqueco) provided more _() and a new es.po committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 13 Jan 2003 16:56:33 +0000
parents 7d3c552c4a89
children 5a832bf74060
comparison
equal deleted inserted replaced
4308:b3a14484fc2f 4309:5978e3d53f29
255 GSList *usr = aim_users; 255 GSList *usr = aim_users;
256 GList *tmp = NULL; 256 GList *tmp = NULL;
257 struct aim_user *u; 257 struct aim_user *u;
258 258
259 if (!usr) 259 if (!usr)
260 return g_list_append(NULL, "<New User>"); 260 return g_list_append(NULL, _("<New User>"));
261 261
262 while (usr) { 262 while (usr) {
263 u = (struct aim_user *)usr->data; 263 u = (struct aim_user *)usr->data;
264 tmp = g_list_append(tmp, u->username); 264 tmp = g_list_append(tmp, u->username);
265 usr = usr->next; 265 usr = usr->next;