comparison src/protocols/silc/ops.c @ 8891:4f7c365c5c5a

[gaim-migrate @ 9660] i18n fixes for SILC from Ambrose Li and ?ric Boumaour. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Thu, 06 May 2004 12:17:17 +0000
parents 50d0f76639e7
children 26c9b8761707
comparison
equal deleted inserted replaced
8890:6c98b883580a 8891:4f7c365c5c5a
258 sg->account); 258 sg->account);
259 if (!convo) 259 if (!convo)
260 break; 260 break;
261 261
262 /* Join user to channel */ 262 /* Join user to channel */
263 g_snprintf(buf, sizeof(buf), _("%s@%s"), 263 g_snprintf(buf, sizeof(buf), "%s@%s",
264 client_entry->username, client_entry->hostname); 264 client_entry->username, client_entry->hostname);
265 gaim_conv_chat_add_user(GAIM_CONV_CHAT(convo), 265 gaim_conv_chat_add_user(GAIM_CONV_CHAT(convo),
266 g_strdup(client_entry->nickname), buf); 266 g_strdup(client_entry->nickname), buf);
267 267
268 break; 268 break;
948 silc_strncat(tmp, sizeof(tmp) - 1, name, name_len); 948 silc_strncat(tmp, sizeof(tmp) - 1, name, name_len);
949 silc_strncat(tmp, sizeof(tmp) - 1, " ", 1); 949 silc_strncat(tmp, sizeof(tmp) - 1, " ", 1);
950 silc_free(m); 950 silc_free(m);
951 951
952 } 952 }
953 g_string_append_printf(s, _("%s\n"), tmp); 953 g_string_append_printf(s, "%s\n", tmp);
954 silc_free(umodes); 954 silc_free(umodes);
955 } 955 }
956 } 956 }
957 957
958 if (client_entry->public_key) { 958 if (client_entry->public_key) {