Mercurial > pidgin
comparison libpurple/plugin.c @ 15382:21bc8d84974f
I think this changes every user-visible string that contains 'Gaim.' We probably want the UI to be able
to provide a user-readable client name as well as website, as some of my re-wordings come out somewhat awkward when I force not mentioning Gaim
| author | Sean Egan <seanegan@gmail.com> |
|---|---|
| date | Mon, 22 Jan 2007 09:27:02 +0000 |
| parents | 5fe8042783c1 |
| children | e9c12873fae0 |
comparison
equal
deleted
inserted
replaced
| 15381:a2689835f54a | 15382:21bc8d84974f |
|---|---|
| 533 tmp = g_strdup_printf(_("The required plugin %s was not found. " | 533 tmp = g_strdup_printf(_("The required plugin %s was not found. " |
| 534 "Please install this plugin and try again."), | 534 "Please install this plugin and try again."), |
| 535 dep_name); | 535 dep_name); |
| 536 | 536 |
| 537 gaim_notify_error(NULL, NULL, | 537 gaim_notify_error(NULL, NULL, |
| 538 _("Gaim encountered errors loading the plugin."), tmp); | 538 _("Unable to load the plugin"), tmp); |
| 539 g_free(tmp); | 539 g_free(tmp); |
| 540 | 540 |
| 541 g_list_free(dep_list); | 541 g_list_free(dep_list); |
| 542 | 542 |
| 543 return FALSE; | 543 return FALSE; |
| 559 | 559 |
| 560 tmp = g_strdup_printf(_("The required plugin %s was unable to load."), | 560 tmp = g_strdup_printf(_("The required plugin %s was unable to load."), |
| 561 plugin->info->name); | 561 plugin->info->name); |
| 562 | 562 |
| 563 gaim_notify_error(NULL, NULL, | 563 gaim_notify_error(NULL, NULL, |
| 564 _("Gaim was unable to load your plugin."), tmp); | 564 _("Unable to load your plugin."), tmp); |
| 565 g_free(tmp); | 565 g_free(tmp); |
| 566 | 566 |
| 567 g_list_free(dep_list); | 567 g_list_free(dep_list); |
| 568 | 568 |
| 569 return FALSE; | 569 return FALSE; |
| 664 tmp = g_strdup_printf(_("The dependent plugin %s failed to unload."), | 664 tmp = g_strdup_printf(_("The dependent plugin %s failed to unload."), |
| 665 translated_name); | 665 translated_name); |
| 666 g_free(translated_name); | 666 g_free(translated_name); |
| 667 | 667 |
| 668 gaim_notify_error(NULL, NULL, | 668 gaim_notify_error(NULL, NULL, |
| 669 _("Gaim encountered errors unloading the plugin."), tmp); | 669 _("There were errors unloading the plugin."), tmp); |
| 670 g_free(tmp); | 670 g_free(tmp); |
| 671 } | 671 } |
| 672 } | 672 } |
| 673 } | 673 } |
| 674 | 674 |
