From: <the...@us...> - 2006-10-17 14:31:04
|
Revision: 17498 http://svn.sourceforge.net/gaim/?rev=17498&view=rev Author: thekingant Date: 2006-10-17 07:30:58 -0700 (Tue, 17 Oct 2006) Log Message: ----------- This error message seems more clear to me Modified Paths: -------------- trunk/libgaim/plugin.c Modified: trunk/libgaim/plugin.c =================================================================== --- trunk/libgaim/plugin.c 2006-10-17 14:25:49 UTC (rev 17497) +++ trunk/libgaim/plugin.c 2006-10-17 14:30:58 UTC (rev 17498) @@ -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; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |