comparison plugins/history.c @ 4113:74d27aa5b686

[gaim-migrate @ 4329] "I've added some plugin files to POTFILES.in, I then marked-up some strings with _()." -- Nicola's Lichtmaier (niqueco) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 22 Dec 2002 18:35:18 +0000
parents 0283b00f5424
children 59751fe608c5
comparison
equal deleted inserted replaced
4112:12552607e88c 4113:74d27aa5b686
62 } 62 }
63 63
64 struct gaim_plugin_description desc; 64 struct gaim_plugin_description desc;
65 struct gaim_plugin_description *gaim_plugin_desc() { 65 struct gaim_plugin_description *gaim_plugin_desc() {
66 desc.api_version = PLUGIN_API_VERSION; 66 desc.api_version = PLUGIN_API_VERSION;
67 desc.name = g_strdup("History"); 67 desc.name = g_strdup(_("History"));
68 desc.version = g_strdup(VERSION); 68 desc.version = g_strdup(VERSION);
69 desc.description = g_strdup("Shows recently logged conversations in new conversations "); 69 desc.description = g_strdup(_("Shows recently logged conversations in new conversations "));
70 desc.authors = g_strdup("Sean Egan &lt;bj91704@binghamton.edu>"); 70 desc.authors = g_strdup("Sean Egan &lt;bj91704@binghamton.edu>");
71 desc.url = g_strdup(WEBSITE); 71 desc.url = g_strdup(WEBSITE);
72 return &desc; 72 return &desc;
73 } 73 }