Mercurial > pidgin
diff plugins/ticker/ticker.c @ 4585:2427d847e39c
[gaim-migrate @ 4869]
Matthew Smith (smigs) writes:
" - spelling+spec.diff corrects "formated" to "formatted"
in oscar.c & all the translations, and removes
"--disable-artsc" from gaim.spec.in as that configure
option no longer exists.
- plugins.diff marks up the plugin descriptions and
names with _() if it wasn't already present, and
removes the differences between the two
descriptions/names (i.e. *char name and desc.name) that
were present for some plugins. I only did this for
plugins that get compiled by default, though.. not much
point in doing the others =P "
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Mon, 17 Feb 2003 15:22:21 +0000 |
| parents | 3196d9044a45 |
| children | c7986b4d182a |
line wrap: on
line diff
--- a/plugins/ticker/ticker.c Sun Feb 16 22:00:09 2003 +0000 +++ b/plugins/ticker/ticker.c Mon Feb 17 15:22:21 2003 +0000 @@ -411,11 +411,11 @@ */ G_MODULE_EXPORT char *name() { - return "Buddy Ticker"; + return _("Buddy Ticker"); } G_MODULE_EXPORT char *description() { - return "Scrolls online buddies from your buddy list."; + return _("A horizontal scrolling version of the buddy list"); } G_MODULE_EXPORT char *gaim_plugin_init(GModule *h) { @@ -437,9 +437,9 @@ struct gaim_plugin_description desc; G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { desc.api_version = PLUGIN_API_VERSION; - desc.name = g_strdup("Ticker"); + desc.name = g_strdup(_("Buddy Ticker")); desc.version = g_strdup(VERSION); - desc.description = g_strdup("A horizontal scrolling version of the buddy list."); + desc.description = g_strdup(_("A horizontal scrolling version of the buddy list.")); desc.authors = g_strdup("Syd Logan"); desc.url = g_strdup(WEBSITE); return &desc;
