diff 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
line wrap: on
line diff
--- a/src/gtkaccount.c	Fri Apr 28 04:25:58 2006 +0000
+++ b/src/gtkaccount.c	Fri Apr 28 06:46:29 2006 +0000
@@ -1291,16 +1291,25 @@
 static void
 port_popup_cb(GtkWidget *w, GtkMenu *menu, gpointer data)
 {
-	GtkWidget *item;
-
-	item = gtk_menu_item_new_with_label(
-			_("you can see the butterflies mating"));
-	gtk_widget_show(item);
-	gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item);
-
-	item = gtk_menu_item_new_with_label(_("If you look real closely"));
-	gtk_widget_show(item);
-	gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item);
+	GtkWidget *item1;
+	GtkWidget *item2;
+
+	/* This is an easter egg.
+	   It means one of two things, both intended as humourus:
+	   A) your network is really slow and you have nothing better to do than
+	      look at butterflies.
+	   B)You are looking really closely at something that shouldn't matter. */
+	item1 = gtk_menu_item_new_with_label(_("If you look real closely"));
+
+	/* This is an easter egg. See the comment on the previous line in the source. */
+	item2 = gtk_menu_item_new_with_label(_("you can see the butterflies mating"));
+
+	gtk_widget_show(item1);
+	gtk_widget_show(item2);
+
+	/* Prepend these in reverse order so they appear correctly. */
+	gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item2);
+	gtk_menu_shell_prepend(GTK_MENU_SHELL(menu), item1);
 }
 
 static void