| 485 /* Retired Crazy Patch Writers */ |
485 /* Retired Crazy Patch Writers */ |
| 486 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", |
486 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", |
| 487 _("Retired Crazy Patch Writers")); |
487 _("Retired Crazy Patch Writers")); |
| 488 add_developers(str, retired_patch_writers); |
488 add_developers(str, retired_patch_writers); |
| 489 g_string_append(str, "<BR/>"); |
489 g_string_append(str, "<BR/>"); |
| 490 |
490 |
| 491 /* Current Translators */ |
491 /* Current Translators */ |
| 492 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", |
492 g_string_append_printf(str, "<FONT SIZE=\"4\">%s:</FONT><BR/>", |
| 493 _("Current Translators")); |
493 _("Current Translators")); |
| 494 add_translators(str, translators); |
494 add_translators(str, translators); |
| 495 g_string_append(str, "<BR/>"); |
495 g_string_append(str, "<BR/>"); |
| 1114 "called %s. Do you want to continue?"), source->name, new_name); |
1114 "called %s. Do you want to continue?"), source->name, new_name); |
| 1115 |
1115 |
| 1116 ggp = g_new(struct _PidginGroupMergeObject, 1); |
1116 ggp = g_new(struct _PidginGroupMergeObject, 1); |
| 1117 ggp->parent = source; |
1117 ggp->parent = source; |
| 1118 ggp->new_name = g_strdup(new_name); |
1118 ggp->new_name = g_strdup(new_name); |
| 1119 |
1119 |
| 1120 purple_request_action(source, NULL, _("Merge Groups"), text, 0, |
1120 purple_request_action(source, NULL, _("Merge Groups"), text, 0, |
| 1121 NULL, NULL, NULL, |
1121 NULL, NULL, NULL, |
| 1122 ggp, 2, |
1122 ggp, 2, |
| 1123 _("_Merge Groups"), G_CALLBACK(pidgin_dialogs_merge_groups_cb), |
1123 _("_Merge Groups"), G_CALLBACK(pidgin_dialogs_merge_groups_cb), |
| 1124 _("Cancel"), G_CALLBACK(free_ggmo)); |
1124 _("Cancel"), G_CALLBACK(free_ggmo)); |