| 1289 } |
1289 } |
| 1290 |
1290 |
| 1291 static void |
1291 static void |
| 1292 port_popup_cb(GtkWidget *w, GtkMenu *menu, gpointer data) |
1292 port_popup_cb(GtkWidget *w, GtkMenu *menu, gpointer data) |
| 1293 { |
1293 { |
| 1294 GtkWidget *item; |
1294 GtkWidget *item1; |
| 1295 |
1295 GtkWidget *item2; |
| 1296 item = gtk_menu_item_new_with_label( |
1296 |
| 1297 _("you can see the butterflies mating")); |
1297 /* This is an easter egg. |
| 1298 gtk_widget_show(item); |
1298 It means one of two things, both intended as humourus: |
| 1299 gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item); |
1299 A) your network is really slow and you have nothing better to do than |
| 1300 |
1300 look at butterflies. |
| 1301 item = gtk_menu_item_new_with_label(_("If you look real closely")); |
1301 B)You are looking really closely at something that shouldn't matter. */ |
| 1302 gtk_widget_show(item); |
1302 item1 = gtk_menu_item_new_with_label(_("If you look real closely")); |
| 1303 gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item); |
1303 |
| |
1304 /* This is an easter egg. See the comment on the previous line in the source. */ |
| |
1305 item2 = gtk_menu_item_new_with_label(_("you can see the butterflies mating")); |
| |
1306 |
| |
1307 gtk_widget_show(item1); |
| |
1308 gtk_widget_show(item2); |
| |
1309 |
| |
1310 /* Prepend these in reverse order so they appear correctly. */ |
| |
1311 gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item2); |
| |
1312 gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item1); |
| 1304 } |
1313 } |
| 1305 |
1314 |
| 1306 static void |
1315 static void |
| 1307 add_proxy_options(AccountPrefsDialog *dialog, GtkWidget *parent) |
1316 add_proxy_options(AccountPrefsDialog *dialog, GtkWidget *parent) |
| 1308 { |
1317 { |