From: <sa...@us...> - 2006-10-14 18:28:32
|
Revision: 17480 http://svn.sourceforge.net/gaim/?rev=17480&view=rev Author: sadrul Date: 2006-10-14 11:28:22 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Change the string to make sure it's a little more descriptive. Thanks to John Bailey (rekkanoryo) for noticing this. Modified Paths: -------------- trunk/libgaim/plugin.c Modified: trunk/libgaim/plugin.c =================================================================== --- trunk/libgaim/plugin.c 2006-10-14 05:29:11 UTC (rev 17479) +++ trunk/libgaim/plugin.c 2006-10-14 18:28:22 UTC (rev 17480) @@ -362,7 +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 for this plugin is not met."); + plugin->error = g_strdup_printf("The UI requirement (%s) for this plugin is not met.", + 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. |
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. |
From: <nos...@us...> - 2006-10-28 13:57:15
|
Revision: 17599 http://svn.sourceforge.net/gaim/?rev=17599&view=rev Author: nosnilmot Date: 2006-10-28 06:57:03 -0700 (Sat, 28 Oct 2006) Log Message: ----------- newline Modified Paths: -------------- trunk/libgaim/plugin.c Modified: trunk/libgaim/plugin.c =================================================================== --- trunk/libgaim/plugin.c 2006-10-28 06:41:32 UTC (rev 17598) +++ trunk/libgaim/plugin.c 2006-10-28 13:57:03 UTC (rev 17599) @@ -364,7 +364,7 @@ { 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); + gaim_debug_error("plugins", "%s is not loadable: The UI requirement is not met.\n", 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. |
From: <nos...@us...> - 2006-10-28 14:24:18
|
Revision: 17600 http://svn.sourceforge.net/gaim/?rev=17600&view=rev Author: nosnilmot Date: 2006-10-28 07:24:10 -0700 (Sat, 28 Oct 2006) Log Message: ----------- I think "not loadable" is a vastly superior way to report plugins that cannot be loaded. "unloadable" could easily be misinterpreted to mean it was loaded and can be now removed (we actually use this meaning too!). Modified Paths: -------------- trunk/libgaim/plugin.c Modified: trunk/libgaim/plugin.c =================================================================== --- trunk/libgaim/plugin.c 2006-10-28 13:57:03 UTC (rev 17599) +++ trunk/libgaim/plugin.c 2006-10-28 14:24:10 UTC (rev 17600) @@ -280,13 +280,13 @@ if (error == NULL || !*error) { plugin->error = g_strdup(_("Unknown error")); - gaim_debug_error("plugins", "%s is unloadable: Unknown error\n", + gaim_debug_error("plugins", "%s is not loadable: Unknown error\n", plugin->path); } else { plugin->error = g_strdup(error); - gaim_debug_error("plugins", "%s is unloadable: %s\n", + gaim_debug_error("plugins", "%s is not loadable: %s\n", plugin->path, plugin->error); } #if GLIB_CHECK_VERSION(2,3,3) @@ -382,7 +382,7 @@ unsigned long flags; GList *dependencies; GaimPluginPriority priority; - + char *id; char *name; char *version; @@ -433,13 +433,13 @@ plugin->error = g_strdup_printf(_("Plugin magic mismatch %d (need %d)"), plugin->info->magic, GAIM_PLUGIN_MAGIC); - gaim_debug_error("plugins", "%s is unloadable: Plugin magic mismatch %d (need %d)\n", + gaim_debug_error("plugins", "%s is not loadable: Plugin magic mismatch %d (need %d)\n", plugin->path, plugin->info->magic, GAIM_PLUGIN_MAGIC); plugin->unloadable = TRUE; return plugin; } - gaim_debug_error("plugins", "%s is unloadable: Plugin magic mismatch %d (need %d)\n", + gaim_debug_error("plugins", "%s is not loadable: Plugin magic mismatch %d (need %d)\n", plugin->path, plugin->info->magic, GAIM_PLUGIN_MAGIC); gaim_plugin_destroy(plugin); return NULL; @@ -451,7 +451,7 @@ plugin->error = g_strdup_printf(_("ABI version mismatch %d.%d.x (need %d.%d.x)"), plugin->info->major_version, plugin->info->minor_version, GAIM_MAJOR_VERSION, GAIM_MINOR_VERSION); - gaim_debug_error("plugins", "%s is unloadable: ABI version mismatch %d.%d.x (need %d.%d.x)\n", + gaim_debug_error("plugins", "%s is not loadable: ABI version mismatch %d.%d.x (need %d.%d.x)\n", plugin->path, plugin->info->major_version, plugin->info->minor_version, GAIM_MAJOR_VERSION, GAIM_MINOR_VERSION); plugin->unloadable = TRUE; @@ -466,7 +466,7 @@ (GAIM_PLUGIN_PROTOCOL_INFO(plugin)->close == NULL)) { plugin->error = g_strdup(_("Plugin does not implement all required functions")); - gaim_debug_error("plugins", "%s is unloadable: Plugin does not implement all required functions\n", + gaim_debug_error("plugins", "%s is not loadable: Plugin does not implement all required functions\n", plugin->path); plugin->unloadable = TRUE; return plugin; @@ -1377,7 +1377,7 @@ if (loader_info == NULL) { - gaim_debug_error("plugins", "%s is unloadable\n", + gaim_debug_error("plugins", "%s is not loadable, loader plugin missing loader_info\n", plugin->path); return FALSE; } @@ -1390,7 +1390,7 @@ if (prpl_info == NULL) { - gaim_debug_error("plugins", "%s is unloadable\n", + gaim_debug_error("plugins", "%s is not loadable, protocol plugin missing prpl_info\n", plugin->path); return FALSE; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <the...@us...> - 2006-10-30 03:54:29
|
Revision: 17625 http://svn.sourceforge.net/gaim/?rev=17625&view=rev Author: thekingant Date: 2006-10-29 19:54:24 -0800 (Sun, 29 Oct 2006) Log Message: ----------- Mark a newish string as translatable Modified Paths: -------------- trunk/libgaim/plugin.c Modified: trunk/libgaim/plugin.c =================================================================== --- trunk/libgaim/plugin.c 2006-10-30 03:50:11 UTC (rev 17624) +++ trunk/libgaim/plugin.c 2006-10-30 03:54:24 UTC (rev 17625) @@ -362,7 +362,7 @@ else if (plugin->info->ui_requirement && strcmp(plugin->info->ui_requirement, gaim_core_get_ui())) { - plugin->error = g_strdup_printf("You are using %s, but this plugin requires %s.", + 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.\n", plugin->path); plugin->unloadable = TRUE; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |