# HG changeset patch # User Mark Doliner # Date 1161095458 0 # Node ID fbb2e1657acb0ede04127ddab631e53a64e111b1 # Parent a169177ffa4e11438db2277427665fb3dc32f2bc [gaim-migrate @ 17498] This error message seems more clear to me committer: Tailor Script diff -r a169177ffa4e -r fbb2e1657acb libgaim/plugin.c --- a/libgaim/plugin.c Tue Oct 17 14:16:46 2006 +0000 +++ b/libgaim/plugin.c Tue Oct 17 14:30:58 2006 +0000 @@ -362,8 +362,8 @@ else if (plugin->info->ui_requirement && strcmp(plugin->info->ui_requirement, gaim_core_get_ui())) { - plugin->error = g_strdup_printf("The UI requirement (%s) for this plugin is not met.", - plugin->info->ui_requirement); + plugin->error = g_strdup_printf("You are using %s, but this plugin requires %s.", + gaim_core_get_ui(), plugin->info->ui_requirement); gaim_debug_error("plugins", "%s is not loadable: The UI requirement is not met.", plugin->path); plugin->unloadable = TRUE; return plugin;