| 530 tmp = g_strdup_printf(_("The required plugin %s was not found. " |
530 tmp = g_strdup_printf(_("The required plugin %s was not found. " |
| 531 "Please install this plugin and try again."), |
531 "Please install this plugin and try again."), |
| 532 dep_name); |
532 dep_name); |
| 533 |
533 |
| 534 purple_notify_error(NULL, NULL, |
534 purple_notify_error(NULL, NULL, |
| 535 _("Unable to load the plugin"), tmp); |
535 _("Unable to load the plugin"), tmp, NULL); |
| 536 g_free(tmp); |
536 g_free(tmp); |
| 537 |
537 |
| 538 g_list_free(dep_list); |
538 g_list_free(dep_list); |
| 539 |
539 |
| 540 return FALSE; |
540 return FALSE; |
| 556 |
556 |
| 557 tmp = g_strdup_printf(_("The required plugin %s was unable to load."), |
557 tmp = g_strdup_printf(_("The required plugin %s was unable to load."), |
| 558 plugin->info->name); |
558 plugin->info->name); |
| 559 |
559 |
| 560 purple_notify_error(NULL, NULL, |
560 purple_notify_error(NULL, NULL, |
| 561 _("Unable to load your plugin."), tmp); |
561 _("Unable to load your plugin."), tmp, NULL); |
| 562 g_free(tmp); |
562 g_free(tmp); |
| 563 |
563 |
| 564 g_list_free(dep_list); |
564 g_list_free(dep_list); |
| 565 |
565 |
| 566 return FALSE; |
566 return FALSE; |