diff src/protocols/toc/toc.c @ 4115:474265997752

[gaim-migrate @ 4332] Nicola's Lichtmaier (niqueco) " Marked some translatable strings in the protocol plugins (mostly the configuration widgets)." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 23 Dec 2002 15:18:24 +0000
parents ee884f1d7ae3
children 511c2b63caa4
line wrap: on
line diff
--- a/src/protocols/toc/toc.c	Sun Dec 22 18:39:20 2002 +0000
+++ b/src/protocols/toc/toc.c	Mon Dec 23 15:18:24 2002 +0000
@@ -1442,13 +1442,13 @@
 	ret->keepalive = toc_keepalive;
 
 	puo = g_new0(struct proto_user_opt, 1);
-	puo->label = g_strdup("TOC Host:");
+	puo->label = g_strdup(_("TOC Host:"));
 	puo->def = g_strdup("toc.oscar.aol.com");
 	puo->pos = USEROPT_AUTH;
 	ret->user_opts = g_list_append(ret->user_opts, puo);
 
 	puo = g_new0(struct proto_user_opt, 1);
-	puo->label = g_strdup("TOC Port:");
+	puo->label = g_strdup(_("TOC Port:"));
 	puo->def = g_strdup("9898");
 	puo->pos = USEROPT_AUTHPORT;
 	ret->user_opts = g_list_append(ret->user_opts, puo);
@@ -1575,7 +1575,7 @@
 		if (ft->files == 1) {
 			ft->file = fopen(ft->filename, "w");
 			if (!ft->file) {
-				buf = g_strdup_printf("Could not open %s for writing!", ft->filename);
+				buf = g_strdup_printf(_("Could not open %s for writing!"), ft->filename);
 				do_error_dialog(buf, strerror(errno), GAIM_ERROR);
 				g_free(buf);
 				gaim_input_remove(ft->inpa);