comparison src/gtkaccount.c @ 13700:85267a333422

[gaim-migrate @ 16103] Added some translation comments, as discussed on gaim-i18. I wasn't really sure how to write these, but it's hopefully a step in the right direction... committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 28 Apr 2006 06:46:29 +0000
parents 43c7e892d8bf
children 3ac2d64a74a0
comparison
equal deleted inserted replaced
13699:c8043f9a4ce2 13700:85267a333422
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 {