comparison plugins/timestamp.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 dadb43e0bcae
children ebfb80bbe1ed
comparison
equal deleted inserted replaced
4112:12552607e88c 4113:74d27aa5b686
63 } 63 }
64 64
65 struct gaim_plugin_description desc; 65 struct gaim_plugin_description desc;
66 struct gaim_plugin_description *gaim_plugin_desc() { 66 struct gaim_plugin_description *gaim_plugin_desc() {
67 desc.api_version = PLUGIN_API_VERSION; 67 desc.api_version = PLUGIN_API_VERSION;
68 desc.name = g_strdup("Timestamp"); 68 desc.name = g_strdup(_("Timestamp"));
69 desc.version = g_strdup(VERSION); 69 desc.version = g_strdup(VERSION);
70 desc.description = g_strdup("Adds iChat-style timestamps to conversations every 5 minutes."); 70 desc.description = g_strdup(_("Adds iChat-style timestamps to conversations every 5 minutes."));
71 desc.authors = g_strdup("Sean Egan &lt;bj91704@binghamton.edu>"); 71 desc.authors = g_strdup("Sean Egan &lt;bj91704@binghamton.edu>");
72 desc.url = g_strdup(WEBSITE); 72 desc.url = g_strdup(WEBSITE);
73 return &desc; 73 return &desc;
74 } 74 }